LaTeX-参考博文

参考1

设置文章类型以及文章的基本参数

利用 \documentclass:

1
\documentclass[12pt, a4paper, oneside]{ctexart}

在 document 环境外的部分不会出现在结果中:

1
2
3
4
5
6
7
\documentclass[12pt, a4paper, oneside]{ctexart}

\begin{document}

hello world

\end{document}

[] 中的内容为参数, {} 中的内容为类型.

什么是导言区及其作用

在 document 环境中的 \begin{document} 之前的部分就是导言区.

导言区用来加载宏包 (可以理解为模块或插件).

\usepackage 来加载:

1
\usepackage[bookmarks=ture, colorlinks, citecolor=blue, linkcolor=black]{hyperref}

[] 里的同样是基本参数, {} 内的是宏包名.

可以多次使用 \usepackage 来加载:

1
2
3
\documentclass[12pt, a4paper, oneside]{ctexart}
\usepackage{amsmath, amsthm, amssymb, graphicx}
\usepackage[bookmarks=true, colorlinks, citecolor=blue, linkcolor=black]{hyperref}

设置标题, 作者等

1
2
3
4
5
6
7
8
9
10
11
12
\title{我的第一个\LaTeX 文档}
\author{Dylaaan}
\date{\today}

\begin{document}

\maketitle

这里是正文.

\end{document}

正文部分

要在文档中显示标题, 需要在 document 环境中使用 \maketitle.

在 LaTeX 中, 另起一段的方式是使用一行间隔.

可以用 \newpage 另起一页.

几个手册

参考1
参考2
参考3

技巧积累

写负数次幂, 需要使用大括号 {}, $10^{-10}$.

乘法符号

乘法\times 这是 x 乘.

点乘为 \cdot

输出无穷符号

正无穷为 +\infty

负无穷为 -\infty

在输出一长串公式时换行

使用 \newline

输出正负号

\pm 也就是 plug minus.

显示百分号

需要用 \ 转义: \%.

显示摄氏度

$^\circ$C

正比符号

\propto

参考 B 站

粗体, 斜体, 下划线

\textbf{}, bf 是 bold font.

\textit{}, it 是 italic.

\underline{}.

\overline{}

段落章节

结构为: \part{} => \chapter{} => \section{} => \subsection{} => \subsubsection{}

添加图片

graphicx 这个包.

使用 \includegraphics{} 添加图片, 可以不加扩展名.

可调整图片宽度如:

1
\includegraphics[width=0.5\textwidth]{somegraph}

试验后没效果.

给图片添加标题, 可以将其嵌套在 figure 环境中:

1
2
3
4
\begin{figure}
\includegraphics[width=0.5\textwidth]{somegraph}
\caption{title}
\end{figure}

然后利用 \caption{} 命令指定标题.

可以用 \centering 命令将图片居中显示.

列表的创建

先进入列表环境, 环境类似于普通编程语言的作用域.

位于同一个环境中的内容将会共享相同的文字格式.

\begin{itemize} 创建无序列表. 列表中的每个元素都以 \item 开头.

如:

1
2
3
4
5
\begin{itemize}
\item the first one
\item the second one
\item the third one
\end{itemize}

enumerate 环境创建有序列表环境. 如:

1
2
3
4
5
\begin{enumerate}
\item the first one
\item the second one
\item the third one
\end{enumerate}

元素同样用 \item 开头.

数学公式

行内用 $$.

单独一行用 equation 环境:

1
2
3
\begin{equation}

\end{equation}

equation 环境会在公式右方打印编号.

使用 displaymath 环境, 可以简写为 \[:

1
2
3
\[

\]

表格

使用 tabular 环境, 传入参数表示尺寸:

1
2
3
\begin{tabular}{c c c}

\end{tabular}

{c c c} 的含义为, 有三列, 每一列的内容都居中对齐, c 是 centering 的意思. 可以替换 cl , r.

每一列用 & 分割, 每一行用 \\ 分割:

1
2
3
4
5
\begin{tabular}{c c c}
one & two & three \\
four & five & six \\
seven & eight & nine
\end{tabular}

生成带竖直线的边框:

1
2
3
4
5
\begin{tabular}{|c|c|c|}
one & two & three \\
four & five & six \\
seven & eight & nine
\end{tabular}

水平方向的边框通过 \hline 添加.

1
2
3
4
5
6
7
8
\begin{tabular}{|c|c|c|}
\hline
one & two & three \\
\hline
four & five & six \\
\hline
seven & eight & nine
\end{tabular}

加两次 \hline 显示双横线.

单独指定宽度, 使用 p{} (paragraph)

1
2
3
4
5
6
7
8
\begin{tabular}{|p{2cm}|c|c|}
\hline
one & two & three \\
\hline
four & five & six \\
\hline
seven & eight & nine
\end{tabular}

添加标题, 先将表格放在 table 环境中, 再利用 \caption\centering 调整:

1
2
3
4
5
6
7
8
9
10
11
12
\begin{table}
\centering
\begin{tabular}{|p{2cm}|c|c|}
\hline
one & two & three \\
\hline
four & five & six \\
\hline
seven & eight & nine
\end{tabular}
\caption{This is a title}
\end{table}

LaTeX-参考博文
http://example.com/2022/10/07/LaTeX-参考博文/
作者
Jie
发布于
2022年10月7日
许可协议