|
|
教學(xué)公告
推薦各位同學(xué)使用Latex來制作PDF文檔,這樣生成的公式比較專業(yè),。
windows下的安裝方式:
安裝texlive2013,、sublime,并在sublime中安裝LatexTools插件,,然后按Ctrl+B編譯即可,。
下面是生成作業(yè)1的tex文檔內(nèi)容,大家可以參考一下tex文檔的使用方法:
\documentclass{article}
\usepackage{CJKutf8}
\usepackage{hyperref}
\usepackage{latexsym}
\usepackage{graphics}
\usepackage{graphicx}
\usepackage{mathptmx} % use Times fonts if available on your TeX system
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{mathrsfs}
\renewcommand{\baselinestretch}{1.5}
% 設(shè)置字體類型
\newcommand{\song}{\CJKfamily{song}} % 宋體
\newcommand{\fs}{\CJKfamily{fs}} % 仿宋體
\newcommand{\kai}{\CJKfamily{kai}} % 楷體
\newcommand{\hei}{\CJKfamily{hei}} % 黑體
\newcommand{\li}{\CJKfamily{li}} % 隸書
% 設(shè)置字體大小
\newcommand{\chuhao}{\fontsize{42pt}{\baselineskip}\selectfont}
\newcommand{\xiaochuhao}{\fontsize{36pt}{\baselineskip}\selectfont}
\newcommand{\yihao}{\fontsize{28pt}{\baselineskip}\selectfont}
\newcommand{\erhao}{\fontsize{21pt}{\baselineskip}\selectfont}
\newcommand{\xiaoerhao}{\fontsize{18pt}{\baselineskip}\selectfont}
\newcommand{\sanhao}{\fontsize{15.75pt}{\baselineskip}\selectfont}
\newcommand{\sihao}{\fontsize{14pt}{\baselineskip}\selectfont}
\newcommand{\xiaosihao}{\fontsize{12pt}{\baselineskip}\selectfont}
\newcommand{\wuhao}{\fontsize{10.5pt}{\baselineskip}\selectfont}
% 設(shè)置默認字體大小
\renewcommand{\normalsize}{\sihao}
\renewcommand{\figurename}{圖}
\renewcommand{\tablename}{表}
\begin{document}
\begin{CJK*}{UTF8}{gkai}
\begin{center}
\LARGE{第一章\ 作業(yè)}
\end{center}
~~\\
~~\\
1. 求下列各行列式的值:\\
~~\\
$(1).
\left|
\begin{array}{ccc}
a & b & c \\
b & c & a \\
c & a & b \\
\end{array}
\right|;
$
\h {.5cm}
$(2).
\left|
\begin{array}{cccc}
4 & 1 & 2 & 4 \\
1 & 2 & 0 & 2 \\
10 & 5 & 2 & 0 \\
0 & 1 & 1 & 7 \\
\end{array}
\right|
;$
\h {.5cm}
$(3).
\left|
\begin{array}{cccc}
a & 1 & 0 & 0 \\
-1 & b & 1 & 0 \\
0 & -1 & c & 1 \\
0 & 0 & -1 & d \\
\end{array}
\right|
;$
~~\\
~~\\
2. 證明:
~~\\
$$
\left|
\begin{array}{ccc}
a^2 & ab & b^2 \\
2a & a+b & 2b \\
1 & 1 & 1 \\
\end{array}
\right| = (a-b)^3
$$
%-------------------
\end{CJK*}
\end{document}