资源
课程
P1_latex01-LaTeX 环境的安装与配置
安装
仅安装 \TeX\ Live 即可,不要与Mik\TeX等混合安装!
C\TeX本身封装了Mik\TeX。
编译代码
创建test.tex
文件,并输入如下内容:
1 2 3 4 5 6 7 \documentclass {article}\begin {document} Hello \LaTeX \end {document}
在TERMINAL(终端)
中输入latex test.tex
以编译test.tex
1 2 3 4 5 6 7 8 9 10 11 12 PS D:\Study\0th-year-master\LateX\20230109> latex test.tex This is pdfTeX, Version 3.14159265-2.6-1.40.16 (MiKTeX 2.9) (test.tex LaTeX2e <2016/03/31> Babel <3.9q> and hyphenation patterns for 1 language(s) loaded. Document Class: article 2014/09/29 v1.4h Standard LaTeX document class ("C:\Users\gzjzx\AppData\Local\Programs\MiKTeX 2.9\tex/latex\base\size10.clo")) No file test.aux. [1] (test.aux) ) Output written on test.dvi (1 page, 300 bytes). Transcript written on test.log.
此时会生成test.dvi
文件,继续输入dvipdfmx test.dvi
继续编译生成test.pdf
文件:
1 2 3 4 PS D:\Study\0th-year-master\LateX\20230109> dvipdfmx test.dvi test.dvi -> test.pdf [1] 2875 bytes written
或者直接输入xlelatex test.tex
直接将test.tex
编译生成test.pdf
文件:
1 2 3 4 5 6 7 8 9 10 11 PS D:\Study\0th-year-master\LateX\20230109> xelatex test.tex This is XeTeX, Version 3.14159265-2.6-0.99992 (MiKTeX 2.9) entering extended mode (test.tex LaTeX2e <2018-04-01> patch level 5 ("C:\Users\gzjzx\AppData\Local\Programs\MiKTeX 2.9\tex/latex\base\article.cls" Document Class: article 2014/09/29 v1.4h Standard LaTeX document class ("C:\Users\gzjzx\AppData\Local\Programs\MiKTeX 2.9\tex/latex\base\size10.clo")) (test.aux) [1] (test.aux) ) Output written on test.pdf (1 page). Transcript written on test.log.
也可直接写一个批处理文件bulid.bat
完成操作:
1 2 3 latex test.tex dvipdfmx test.dvi del *.aux *.dvi *.log
或
1 2 xelatex test.tex del *.aux *.dvi *.log
随后直接在TERMINAL(终端)
中输入build
命令完成编译
在VS Code
中可以直接使用Ctrl+Alt+B
编译
生成中文
首先需要保证tex
文件使用的是utf-8
编码。
使用\usepackage{ctex}
引入宏包以支持中文。
1 2 3 4 5 6 7 8 9 \documentclass {article}\usepackage {ctex}\begin {document} 你好, \LaTeX \end {document}
使用 TeXstudio
P2_latex02-LaTeX 源文件的基本结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 \documentclass {article} \title {My First Document}\author {Nan Geng}\date {\today }\begin {document}\maketitle Hello World! Let $ f(x)$ be defined by the formula$ $ f(x)=3x^ 2+x-1$ $ which is a polynomial of degree 2.\end {document}
分为导言区
和正文区
。
P3_latex03-LaTeX 中的中文处理办法
处理中文
确定编译器是否为XeLaTeX
且编码是否为UTF-8
。
在导言区
使用
1 2 3 \documentclass{article} \usepackage{ctex}
或
以支持中文。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 \documentclass {ctexart}\newcommand \degree {^ \circ }\title {\heiti 杂谈勾股定理}\author {张三}\date {\today }\begin {document}\maketitle 勾股定理可以用现代语言表述如下: 直角三角形斜边的平方等于两腰的平方和。 可以用符号语言表述为:设直角三角形 $ ABC$ ,其中 $ \angle C=90\degree $ ,则有:\begin {equation} AB^ 2 = BC^ 2 + AC^ 2.\end {equation}\end {document}
在导言区使用\newcommand\degree{^\circ}
定义\degree
,否则会出现编译错误。
使用\begin{equation}
和\end{equation}
产生带编号的行间公式。
查看帮助文档
在TERMINAL(终端)
中输入texdoc ctex
命令:
输入texdoc lshort-zh
命令:
P4_latex04-LaTeX 的字体字号设置
字体属性
在 \LaTeX 中,一个字体有 5 种属性:
字体编码
正文字体编码:OT1、T1、EU1 等
数学字体编码:OML、OMS、OMX 等
字体族
罗马字体 Roman Family \textrm
:笔画起始处有装饰
无衬线字体 Sans Serif Family \textsf
:笔画起始处无装饰
打字机字体 Typewriter Family \texttt
:每个字符宽度相同,又称等宽字体
字体系列
字体形状
直立 Upright Shape
斜体 Italic Shape
伪斜体 Slanted Shape
小型大写 Small Caps Shape
字体大小
字体族设置
注意修饰符及其作用域范围:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 \textrm {Roman Family}\textsf {Sans Serif Family}\texttt {Typewriter Family}\rmfamily Roman Family {\sffamily Sans Serif Family} {\ttfamily Typewriter Family} {\sffamily who you are? you find self on everyone around. take you as the same as others!} {\ttfamily Are you wiser than others? definitely no. insome ways, may it is true. what can you achieve? aluxurious house? a brillilant car? an admirable career?who knows? }
字体系列设置(粗细、宽度)
1 2 3 4 \textmd {Medium Series} \textbf {Boldface Series} {\mdseries Medium Series} {\bfseries Boldface Series}
字体形状(直立、斜体、伪斜体、小型大写)
1 2 3 4 5 6 7 8 9 \textup {Upright Shape}\textit {Italic Shape}\textsl {Slanted Shape}\textsc {Small Caps Shape} {\textup Upright Shape} {\textit Italic Shape} {\textsl Slanted Shape} {\textsc Small Caps Shape}
中文字体
1 2 3 4 5 6 7 {\songti 宋体} {\heiti 黑体} {\fangsong 仿宋} {\kaishu 楷书} 中文字体的\textbf {粗体}是{\heiti 黑体},\textit {斜体}是{\kaishu 楷体}。
字体大小
1 2 3 4 5 6 7 8 9 10 11 {\tiny Hello}\\ {\scriptsize Hello}\\ {\footnotesize Hello}\\ {\small Hello}\\ {\normalsize Hello}\\ {\large Hello}\\ {\Large Hello}\\ {\LARGE Hello}\\ {\huge Hello}\\ {\Huge Hello}\\
中文字号设置命令
自定义字体
过多的修饰符不符合\LaTeX的思想,使用\newcommand
自定义字体。
导言区
中:
1 \newcommand {\myfont }{\textbf {\textsf {Fancy Text}}}
会将正文区
所有\myfont
替换为\textbf{\textsf{Fancy Text}}
P5_latex05-LaTeX 文档的基本结构
分节
在正文区
中,使用\section{}
列提纲,分节,可以使用\subsection{}
和\subsubsection{}
继续分节。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 \documentclass {article}\usepackage {ctex}\begin {document}\section {引言}\section {实验方法}\section {实验结果}\subsection {数据}\subsection {图表}\subsubsection {实验条件}\subsubsection {实验过程}\section {结论}\section {致谢}\end {document}
设置格式
使用\documentclass{ctexart}
会更改格式,但是这个格式可以自行设置。
在导言区
设置格式。将内容与格式分离,是\LaTeX的基本思想。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 \documentclass {ctexart}\ctexset { section={ name={,、}, number={\chinese {section}}, format=\heiti \raggedright \zihao {-4}, aftername=\hspace {0pt}, beforeskip=1ex, afterskip=1ex }, subsection={ name={,、}, number={\arabic {subsection}}, format=\heiti \zihao {5}, aftername=\hspace {0pt}, beforeskip=1ex, afterskip=1ex } }\begin {document}\section {引言} 近年来,随着逆向工程和三维重建技术的发展和应用, 获取现实世界中物体的三维数据的方法越来越多的关注和研究, 很多研究机构和商业公司都陆续推出了自己的三维重建系统。 近年来,随着逆向工程和三维重建技术的发展和应用,\\ 获取现实世界中物体的三维数据的方法越来越多的关注和研究。\par 很多研究机构和商业公司都陆续推出了自己的三维重建系统。\section {实验方法}\section {实验结果}\subsection {数据}\subsection {图表}\subsubsection {实验条件}\subsubsection {实验过程}\section {结论}\section {致谢}\end {document}
使用空行或\par
可以另起一段
使用\\
会换行,但是不会另起一段
设置目录
使用\documentclass{ctexbook}
和\tableofcontents
生成目录。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 \documentclass [UTF8,a4paper,15pt,titlepage,oneside]{ctexbook}\begin {document}\tableofcontents \chapter {绪论}\section {引言} 近年来,随着逆向工程和三维重建技术的发展和应用, 获取现实世界中物体的三维数据的方法越来越多的关注和研究, 很多研究机构和商业公司都陆续推出了自己的三维重建系统。 近年来,随着逆向工程和三维重建技术的发展和应用,\\ 获取现实世界中物体的三维数据的方法越来越多的关注和研究。\par 很多研究机构和商业公司都陆续推出了自己的三维重建系统。\section {实验方法}\section {实验结果}\subsection {数据}\subsection {图表}\section {结论}\section {致谢}\end {document}
P6_latex06-LaTeX 中的特殊字符
特殊字符
空白符号
空行分段,多个空行等同 1 个
自动缩进,绝对不能使用空格代替
英文中多个空格处理为 1 个空格,中文中空格将被忽略
汉字与其它字符的间距会自动由 XeLaTex 处理
禁止使用中文全角空格
\LaTeX控制符
排版符号
\TeX标志符号
引号
连字符
非英文字符
重音符号(以 o 为例)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 \documentclass {article}\usepackage {ctex}\usepackage {xltxtra}\usepackage {texnames}\usepackage {mflogo}\begin {document}\section {空白符号} a\quad b a\qquad b a\, b a\thinspace b a\enspace b a\ b a~b a\kern 1pc b a\kern -1em b a\hskip 1em b a\hspace {35pt}b a\hphantom {xyz}b a\hfill b\section {\LaTeX 控制符}\# \$ \% \{ \} \~ {} \_ {} \^ {} \textbackslash \& \section {排版符号}\S \P \dag \ddag \copyright \pounds \section {\TeX 标志符号}\TeX {} \LaTeX {} \LaTeXe {}\XeLaTeX \AmSTeX {} \AmS -\LaTeX {}\BibTeX {} \LuaTeX {}\METAFONT {} \MF {} \MP {}\section {引号} `'``''``你好''\section {连字符} - -- ---\section {非英文字符}\oe \OE \ae \AE \aa \AA \o \O \l \L \ss \SS !`?`\section {重音符号(以 o 为例)}\` o \' o \^ o \' 'o \~ o \= o \. o \u {o} \v {o} \H {o} \r {o} \t {o} \b {o} \c {o} \d {o}\end {document}
P7_latex07-LaTeX 中的插图
1 2 3 4 5 6 7 8 9 \documentclass {ctexart}\usepackage {graphicx}\graphicspath {{figures/}, {pics/}} \begin {document}\LaTeX {}中的插图:\includegraphics [scale=0.3]{lion}\end {document}
P8_latex08-LaTeX 中的表格
1 2 3 \begin {tabular}[<垂直对齐方式>]{<列格式说明>} <表项> & <表项> & ... & <表项> \\ \end {tabular}
用\\
表示换行
用&
表示不同的列
列格式说明:
l
本列左对齐
c
本列居中对齐
r
本列右对齐
p{<宽>}
本列宽度固定,能够自动换行
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 \documentclass {ctexart}\begin {document}\begin {tabular}{|l|c|c|c|p{1.5cm}|} \hline \hline 姓名 & 语文 & 数学 & 外语 & 备注 \\ \hline 张三 & 87 & 100 & 93 & 优秀 \\ \hline 李四 & 75 & 64 & 52 & 补考另行通知 \\ \hline 王二 & 80 & 82 & 78 & \\ \hline \end {tabular}\end {document}
P9_latex09-LaTeX中的浮动体
要灵活地使用图像和表格的管理,还需要使用浮动体环境。包含figure
浮动体环境和table
浮动体环境。
浮动体:
实现灵活分页(避免无法分割的内容产生的页面留白)
给图表添加标题
交叉引用
figure
环境(table
环境与之类似)
1 2 3 \begin {figure}[<允许位置>] <任意内容>\end {figure}
<允许位置>
参数(默认tbp
)
h
,此处(here)-代码所在的上下文位置
t
,页顶(top)-代码所在页面或之后页面的顶部
b
,页底(bottom)-代码所在页面或之后页面的底部
p
,独立一页(page)-浮动页面
标题控制(caption、bicaption等宏包)
并排与子图表(subcaption、subfig、floatrow等宏包
绕排(picinpar、wrapfig等宏包)
使用\ref{}
和\label{}
进行交叉引用,通常要编译两次才生效。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 \documentclass {ctexart}\usepackage {graphicx}\graphicspath {{figures/}}\begin {document}\LaTeX {}中\TeX 系统的吉祥物---小狮子见图\ref {fig-lion}。\begin {figure}[htbp] \centering \includegraphics [scale=0.3]{lion} \caption {\TeX 系统的吉祥物---小狮子}\label {fig-lion}\end {figure} 遥看太白,看积雪皑皑,别有一番风景(图\ref {fig-mountain})\begin {figure}[htbp] \centering \includegraphics [scale=0.3]{mountain} \caption {太白山}\label {fig-mountain}\end {figure} 当然,在\LaTeX {}中也可以使用表\ref {tab-score}所示的表格。\begin {table}[h] \centering \caption {考试成绩单}\label {tab-score} \begin {tabular}{|l|c|c|c|p{1.5cm}|} \hline \hline 姓名 & 语文 & 数学 & 外语 & 备注 \\ \hline 张三 & 87 & 100 & 93 & 优秀 \\ \hline 李四 & 75 & 64 & 52 & 补考另行通知 \\ \hline 王二 & 80 & 82 & 78 & \\ \hline \end {tabular}\end {table}\end {document}
P10_latex10-LaTeX数学公式初步
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 \documentclass {article}\usepackage {ctex}\usepackage {amsmath}\begin {document}\section {简介}\LaTeX {}将排版内容分为文本模式和数学模式。 文本模式用于普通文本排版,数学模式用于数学公式排版。\section {行内公式}\subsection {美元符号} 交换律是 $ a+b=b+a$ ,如 $ 1+2=2+1=3$ 。\subsection {小括号} 交换律是 \( a+b=b+a\) ,如\( 1+2=2+1=3\) 。\subsection {math环境} 交换律是 \begin {math}a+b=b+a\end {math},如\begin {math}1+2=2+1=3\end {math}。\section {上下标}\subsection {上标}$ 3x^ {20} - x + 2 = 0$ $ 3x^ {3x^ {20} - x + 2} - x + 2 = 0$ \subsection {下标}$ a_ 0, a_ 1, a_ 2$ $ a_ 0, a_ 1, a_ 2, ..., a_ {3x^ {20} - x + 2}$ \section {希腊字母}$ \alpha $ $ \beta $ $ \gamma $ $ \epsilon $ $ \pi $ $ \omega $ $ \Gamma $ $ \Delta $ $ \Theta $ $ \Pi $ $ \Omega $ $ \alpha ^ 3 + \beta ^ 2 + \gamma = 0$ \section {数学函数}$ \log $ $ \sin $ $ \cos $ $ \arcsin $ $ \arccos $ $ \arctan $ $ \ln $ $ \sin ^ 2x+\cos ^ 2x=1$ $ y=\arcsin x$ $ y=\sin ^ {-1}x$ $ y=\log _ 2x$ $ y=\ln x$ $ \sqrt {2}$ $ \sqrt {x^ 2+y^ 2}$ $ \sqrt {2+\sqrt {2}}$ $ \sqrt [4]{x}$ \section {分式} 大约是原体积的$ 3/4$ 。 大约是原体积的$ \frac {3}{4}$ 。$ \frac {x}{x^ 2 + x + 1}$ $ \frac {\sqrt {x-1}}{\sqrt {x+1}}$ $ \frac {1}{1 + \frac {1}{x}}$ $ \sqrt {\frac {x}{x^ 2 + x + 1}}$ \section {行间公式}\subsection {美元符号} 交换律是$ $ a+b=b+a$ $ 如$ $ 1+2=2+1=3$ $ \subsection {中括号} 交换律是\[ a+b=b+a\] 如\[ 1+2=2+1=3\] \subsection {displaymath环境} 交换律是\begin {displaymath} a+b=b+a,\end {displaymath} 如\begin {displaymath} 1+2=2+1=3.\end {displaymath}\subsection {自动编号公式equation环境} 交换律见式\ref {eq:commutative}\begin {equation} a+b=b+a \label {eq:commutative}\end {equation}\subsection {不编号公式equation*环境} 交换律见式\ref {eq:commutative2}\begin {equation*} a+b=b+a \label {eq:commutative2}\end {equation*} 公式的编号与交叉引用也是自动实现的, 大家在排版中,要习惯与采用自动化的方式处理图、表、公式的编号与交叉引用。\end {document}
latex11-LaTeX数学公式的矩阵
矩阵环境:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 \documentclass {ctexart}\usepackage {amsmath}\newcommand {\adots }{\mathinner {\mkern 2mu\raisebox {0.1em}{.}\mkern 2mu\raisebox {0.4em}{.}\mkern 2mu\raisebox {0.7em}{.}\mkern 1mu}}\begin {document}\section {matrix环境}\[ \begin {matrix} 0 & 1 \\ 1 & 0 \end {matrix}\] \section {pmatrix环境}\[ \begin {pmatrix} 0 & -1 \\ 1 & 0 \end {pmatrix}\] \section {bmatrix环境}\[ \begin {bmatrix} 0 & -1 \\ 1 & 0 \end {bmatrix}\] \section {Bmatrix环境}\[ \begin {Bmatrix} 0 & -1 \\ 1 & 0 \end {Bmatrix}\] \section {vmatrix环境}\[ \begin {vmatrix} 0 & -1 \\ 1 & 0 \end {vmatrix}\] \section {Vmatrix环境}\[ \begin {Vmatrix} 0 & -1 \\ 1 & 0 \end {Vmatrix}\] \section {可以使用上下标}\[ A = \begin {pmatrix} a_ {11}^ 2 & a_ {12}^ 2 & a_ {13}^ 2 \\ 0 & a_ {22} & a_ {23} \\ 0 & 0 & a_ {33} \end {pmatrix}\] \section {常用省略号:$ \backslash $ dots,$ \backslash $ vdots,$ \backslash $ ddots} 没有$ \backslash $ adots,需要手动定义。\[ A = \begin {bmatrix} a_ {11} & \dots & a_ {1n} \\ \adots & \ddots & \vdots \\ 0 & & a_ {nn} \end {bmatrix}_ {n \times n}\] \section {分块矩阵(矩阵嵌套)}\[ \begin {pmatrix} \begin {matrix}1& 0\\ 0& 1\end {matrix} & \text {\Large 0} \\ \text {\Large 0} & \begin {matrix} 1& 0\\ 0& -1\end {matrix} \end {pmatrix}\] \section {三角矩阵}\[ \begin {pmatrix} a_ {11} & a_ {12} & \cdots & a_ {1n} \\ & a_ {22} & \cdots & a_ {2n} \\ & & \ddots & \vdots \\ \multicolumn {2}{c}{\raisebox {1.3ex}[0pt]{\Huge 0}} & & a_ {nn} \end {pmatrix}\] \section {跨列的省略号} \[ \begin {pmatrix} 1 & \frac 12 & \dots & \frac 1n \\ \hdotsfor {4} \\ m & frac m2 & \dots & \frac mn \end {pmatrix}\] \section {行内小矩阵(smallmatrix)环境} 复数 $ z = (x, y)$ 可也用矩阵\begin {math} \left ( \begin {smallmatrix} x & -y \\ y & -x \end {smallmatrix} \right )\end {math} 来表示。\section {array环境(类似于表格环境tabular)}\[ \begin {array}{r|r} \frac {1}{2} & 0 \\ \hline 0 & -\frac a{bc} \\ \end {array}\] \section {用array环境构造复杂矩阵}\[ \begin {array}{c@{\hspace {-5pt}}l} \left ( \begin {array}{ccc|ccc} a & \cdots & a & b & \cdots & b \\ & \ddots & \vdots & \vdots & \adots \\ & a & b \\ \hline & & & c & \cdots & c \\ & & & \vdots & & \vdots \\ \multicolumn {3}{c|}{\raisebox {2ex}[0pt]{\Huge 0}} & c & \cdots & c \end {array} \right ) \begin {array}{l} \left . \rule {0mm}{7mm}\right \} p \\ \\ \left .\rule {0mm}{7mm}\right \} q \end {array} \\ [-5pt] \begin {array}{cc} \underbrace {\rule {17mm}{0mm}}_ m & \underbrace {\rule {17mm}{0mm}}_ m \end {array} & \end {array}\] \end {document}
latex12-LaTeX数学公式的多行公式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 \documentclass {ctexart}\usepackage {amsmath}\usepackage {amssymb}\begin {document}\section {gather 标准多行公式}\subsection {gather 带编号}\begin {gather} a + b = b + a \\ ab ba\end {gather}\subsection {gather* 不带编号}\begin {gather*} 3+5=5+3=8 \\ 3 \times 5 = 5 \times 3\end {gather*}\subsection {在换行符前使用 notag 阻止编号}\begin {gather} 3^ 2 + 4^ 2 = 5^ 2 \notag \\ 5^ 2 + 12^ 2 = 13^ 2 \notag \\ a^ 2 + b^ 2 = c^ 2\end {gather}\section {align 对齐多行公式}\subsection {align 带编号}\begin {align} x & = t + \cos t + 1 \\ y & = 2\sin t\end {align}\subsection {align* 不带编号}\begin {align*} x & = t & x & = \cos t & x & =t \\ y & = 2t & y & = \sin (t+1) & y & = \sin t\end {align*}\section {split 环境(对齐采用 align 环境的方式,编号在中间)}\begin {equation} \begin {split} \cos 2x & = \cos ^ 2x - \sin ^ 2x \\ & = 2\cos ^ 2x - 1 \end {split}\end {equation}\section {cases 环境} 分段函数,每行公式中使用 \& 分割为两部分,通常表示值和后面的条件。\begin {equation} D(x) = \begin {cases} 1, & \text {如果 } x \in \mathbb {Q}; \\ 0, & \text {如果 } x \in \mathbb {R}\setminus \mathbb {Q}. \end {cases}\end {equation}\end {document}
P13_latex13-LaTeX中的参考文献BibTex
直接在tex文件中管理
1 2 3 4 5 \begin {thebibliography}{99} \bibitem [记号]{引用标志}文献条目1 \bibitem [记号]{引用标志}文献条目2 ...\end {thebibliography}
其中文献条目包括:作者,题目,出版社,年代,版本,页码等。
引用时可以采用:\cite{引用标志1, 引用标志2, ...}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 \documentclass {ctexart}\begin {document} 引用一篇文章\cite {article1} 引用一本书\cite {book1}等\begin {thebibliography}{99} \bibitem {article1}陈立辉,苏伟,蔡川,陈晓云. \emph {基于 LaTex 的 web 数学公式提取方法研究}[J]。计算机科学。2014(06) \bibitem {book1}william H.Press,Saul A. Teukolsky,William T. Vetterling,Brian P.Elannery, \emph {Numerical Recipes js Edition: The Art of Scientific Computing} Cambridge University Press, New York,2007. \bibitem {latexGuide} Kopka Helmut, w.Daly Patrick, \emph {Guide to \LaTeX }, $ 4^ {th}$ Edition. Available at \texttt {http://www.amazon.com}. \bibitem {latexMath} Graetzer George, \emph {Math Into \LaTeX }, BirkhAauser Boston; 3 edition (June 22, 2000).\end {thebibliography}\end {document}
使用 BibTeX
在test.bib
文件中输入如下内容:
1 2 3 4 5 6 7 8 9 @book{mittelbach2004, title = {The {{\LaTex }} Companion}, publisher = {Addison-wesley}, year = {2004}, author = {Frank Mittelbach and Michel Goossens}, series = {Tools and Techniques for Computer Typesetting}, address = {Boston}, edition = {Second} }
需要多次编译:
1 2 3 4 5 6 7 8 \documentclass {ctexart}\bibliographystyle {plain} \begin {document} 这是一个参考文献的引用:\cite {mittelbach2004}\bibliography {test}\end {document}
使用\bibliography{test}
以引用test.bib
使用\cite{mittelbach2004}
引用mittelbach2004
使用google学术
或百度学术
等获得bib格式文件:
P14_latex14-LaTeX中的参考文献BibLaTeX
试不出来orz…可能是bib
文件本身有问题?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 \documentclass {ctexart}\usepackage [style=caspervector, backend=biber,utf8,sorting=ecnty]{biblatex}\addbibresource {test.bib}\begin {document} 无格式化引用 \cite {2016An} 带方括号的引用 \parencite {2016Analyzing} 上标引用 \supercite {mittelbach2004}\printbibliography [title = {参考文献}] \end {document}
P15_latex15-LaTeX中的自定义命令和环境
\newcommand
定义命令
命令只能由字母组成,不能以\end
开头
\newcommand<命令>[<参数个数>][<首参数默认值>]{<具体定义>}
定义命令和环境是进行\LaTeX格式定制、达成内容与格式分离目标的利器。使用自定义的命令和环境把字体、字号、缩进、对齐、间距等各种琐细的内容包装起来,赋以一个有意义的名字,可以使文挡结构清晰、代码整洁、易于维护。
在使用宏定义的功能时,要综合利用各种已有的命令、环境、变量等功能,事实上,前面所介绍的长度变量与盒子、字体字号等内容,大多并不直接出现在文档正文中,而主要都是用在实现各种结构化的宏定义里。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 \documentclass {ctexart}\newcommand \PRC {People's Republic of \emph {China}}\newcommand \loves [2]{#1 喜欢 #2 }\newcommand \hatedby [2]{#2 不受 #1 喜欢}\newcommand \love [3][喜欢]{#2 #1 #3 }\renewcommand \abstractname {内容简介}\newenvironment {myabstract}[1][摘要] {\small \begin {center}\bfseries #1 \end {center} \begin {quotation}} {\end {quotation}}\newenvironment {Quotation}[1] {\newcommand \quotesource {#1 } \begin {quotation}} {\par \hfill ---《\textit {\quotesource }》 \end {quotation}}\begin {document}\PRC \loves {猫儿}{鱼}\hatedby {猫儿}{萝卜}\love {猫儿}{鱼}\love [最爱]{猫儿}{鱼}\begin {abstract} 这是一段摘要...\end {abstract}\begin {myabstract} 这是一段自定义摘要...\end {myabstract}\begin {Quotation}{易$ \cdot $ 乾} 初九,潜龙勿用。\end {Quotation}\end {document}