问题列表 | 环境 | 原因 | 解决方法 |
---|---|---|---|
编译时出现“I cannot find \citation in ***.aux”。 | Ubuntu + VScode + texlive | 这是因为在正文中包含了bib文件,但是正文中又没有对bib中文献的引用条目。这个问题在windows下不会出现(不明白原因),在ubuntu下会出现。 | 在正文中随便增加一条\cite即可。 |
"latex-workshop.latex.recipes": [
{
"name": "latexmk ?",
"tools": [
"latexmk"
]
},
{
"name": "pdflatex ➞ bibtex ➞ pdflatex × 2",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
}
,{
"name": "xelatex",
"tools": [
"xelatex"
]
}
,{
"name": "bibtex",
"tools": [
"bibtex"
]
}
,{
"name": "xelatex ➞ bibtex ➞ xelatex x 2",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
}
]
,"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
],
"env": {}
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
],
"env": {}
}
,{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
}
],
\section{Chapter1}
\label{sec:chapter1} % define label
\section{Chaprter2}
Chapter1 can be find in Section \ref{sec:chapter1}.
\usepackage{subfig}
\begin{figure}[!t]
\centering
\subfloat[sublabel_1]{
\includegraphics[width=3.5in]{fig_1.pdf}%
\label{fig:fig_1}
}
\hfil
\subfloat[sublabel_2]{
\includegraphics[width=3.5in]{fig_2.pdf}%
\label{fig:fig_2}
}
\caption{Description of the figures.}
\label{fig:fig_1_2}
\end{figure}
本节内容参考ubuntu 下安装 texlive 并设置 ctex 中文套装。
\documentclass{ctexart}
\begin{document}
您好,\LaTeX!
\end{document}
% 使用p{percent\textwidth}来控制每列的宽度,percent列宽度占文本宽度的比例。使用<{\centering}将每列内容居中。
\begin{table}
\centering
\caption{编码实测}
\label{tab:hikvision_security_codec_test}
\begin{tabular}{|p{0.3\textwidth}<{\centering}|p{0.5\textwidth}<{\centering}|}
\hline
类别 & 参数 \\
\hline
\end{tabular}
\end{table}
\mathbb{R}
==
R
\mathbb{R}
R\mathbb{z}
==
z
\mathbb{z}
z\emptyset
==
∅
\emptyset
∅使用集合关系符号,需要引用宏包usepackage{amsmath, amssymb}。
\mid
==
∣
\mid
∣\in
==
∈
\in
∈\not\in
==
∉
\not\in
∈A \subset B
==
A
⊂
B
A \subset B
A⊂BA \supset B
==
A
⊃
B
A \supset B
A⊃BA \subsetneqq B
==
A
⫋
B
A \subsetneqq B
A⫋BA \supsetneqq B
==
A
⫌
B
A \supsetneqq B
A⫌BA \not\subset B
==
A
⊄
B
A \not\subset B
A⊂BA \cap B
==
A
∩
B
A \cap B
A∩BA \cup B
==
A
∪
B
A \cup B
A∪B\overline{A}
==
A
‾
\overline{A}
AA \setminus B
==
A
∖
B
A \setminus B
A∖B\sum
==
∑
\sum
∑
\sum_{i=1}^{N}
==
∑
i
=
1
N
\sum_{i=1}^{N}
∑i=1N行间公式
还是独立公式
。在独立公式
中,上下限默认为上下位置,在行间公式
中,上下限默认为左右位置。此时,可以使用\limits
(上下位置)和\nolimits
(左右位置)改变缺省值。
\sum\limits_{i=1}^{N}
==
∑
i
=
1
N
\sum\limits_{i=1}^{N}
i=1∑N\propto
==
∝
\propto
∝% 删除标识
\usepackage{ulem} %宏包
\sout{文字} %删除线
\xout{文字} %斜删除线
\uwave{文字} %波浪线
\uuline{文字} %双下划线