别人的博客
各种width各种空格
符号
名字 | 符号 | 代码 | 备注 |
自然连接 | \bowtie | ||
并且 | \wedge | ||
或者 | \vee | ||
并 | \cup | Latex——交集、并集 | |
交 | \cap | Latex——交集、并集 | |
包含于 | \subseteq |
技巧
- 在enumerate中的item后换行用\par,这样与正文之间会有一条缝隙。
- 如果使用
\\
换行则标题与正文之间没有缝隙,很难看
公式中插入中文
\text{中文}
左引号
左单引号(键盘上1左边那个)
`
左双引号(按两下键盘上1左边的按键)
``
把下标放到正下方
使用underset
这种方法可用于任何符号
\underset{theta}{\bowtie}
效果
感谢RMan大佬告知。
使用limits
参考:https://zhidao.baidu.com/question/873705252499505652.html 仅限于放到数学运算符下方
\sum\limits_{i=1}
效果:
若是普通符号,那么要用\mathop先转成数学运算符再用\limits
\mathop{\bowtie}\limits_{theta}
效果:
插入图片
单张图片
参考:
https://zhidao.baidu.com/question/556236943.htmlhttps://www.jianshu.com/p/5f342de813d9
\usepackage{graphicx}
\begin{figure}
\center\includegraphics[width=\textwidth]{img/condition.png}
\caption{标题}
\end{figure}
其中\center
表示图片位置居中,width=\textwidth
表示宽度与页面等宽,img/condition.png
是图片文件的相对位置。
如果不想让图片乱动,可以加[H]
选项
\begin{figure}[H]
但是前面要
\usepackage{float}
嵌套图片
\begin{figure}[H]
\begin{center}
\subfigure{
\includegraphics[width=0.98\textwidth]{img/国债1.png}
}
\subfigure{
\includegraphics[width=0.98\textwidth]{img/国债2.png}
}
\end{center}
\end{figure}
两张图片就被放在一起了。如果用单张图片的方式则会使得两张图片之间的间隔很大。
绕排
https://www.zhihu.com/question/26837705wrapfigure指定行数
枚举
编号
使用enumerate。可以自定义enumerate的编号样式。
自定义编号样式时要用到的包:
\usepackage{enumerate}
它的使用非常直观。例如要实现这样的编号样式
1)
2)
就这样
\begin{enumerate}[1)]
如果要
(a)
(b)
就
\begin{enumerate}[(a)]
或者这样
1、
2、
3、
\begin{enumerate}[1、]
小圆点
\begin{itemize}
\item aaaa \par
bbb
\item ccc \par
\item ddddd
\end{itemize}
插入表格
基本表格
\begin{tabular}{|c|c|c|c|c|}
\hline
& A & B & C & D \\
\hline
$P_0$ & 0 & 1 & 0 & 0 \\
\hline
$P_1$ & 0 & 4 & 2 & 1 \\
\hline
$P_2$ & 1 & 0 & 0 & 1 \\
\hline
$P_3$ & 0 & 0 & 2 & 0 \\
\hline
$P_4$ & 0 & 6 & 4 & 2 \\
\hline
\end{tabular}
-
|c|
: 居中并且单元格两侧添加竖线。(Centering) - hline: 水平线(Horizontal LINE)
效果
合并单元格
\usepackage{multirow}
\begin{tabular}{|c|c|c|c|c|}
\hline
\multirow{2}*{进程} %纵向合并2行单元格
&
\multicolumn{4}{|c|}{Work} \\
\cline{2-5} %为2到5列添加横线
& A & B & C & D \\
\hline
& 1 & 5 & 2 & 0 \\
\hline
$P_0$ & 1 & 6 & 3 & 0 \\
\hline
$P_3$ & 1 & 12 & 6 & 2 \\
\hline
$P_1$ & 2 & 14 & 9 & 3 \\
\hline
$P_2$ & 3 & 17 & 15 & 8 \\
\hline
$P_4$ & 3 & 17 & 16 & 12 \\
\hline
\end{tabular}
- cline:Column LINE
居中
- 使用center环境
\begin{center}
\begin{tabular}{|c|c|c|c|c|}
........
\end{tabular}
\end{center}
- 使用table环境,设置\center属性
\begin{table}
\centering
\begin{tabular}{|c|c|c|c|c|}
...........
\end{tabular}
\end{table}
如果不想让它乱跑可以用\begin{table}[H]
,但是要加上\usepackage{float}
设置标题
用\caption{标题}
放在表上方
\begin{table}
\centering
\caption{23333}
\begin{tabular}{|c|c|c|}
\hline
A & B & C \\
\hline
D & 1 & 2 \\
\hline
E & 3 & 4 \\
\hline
\end{tabular}
\end{table}
放到表下面
把\caption{标题}
放到\end{table}
前面
\begin{table}
\centering
\begin{tabular}{|c|c|c|}
\hline
A & B & C \\
\hline
D & 1 & 2 \\
\hline
E & 3 & 4 \\
\hline
\end{tabular}
\caption{23333}
\end{table}
不自动给标题编号
参考:https://zhidao.baidu.com/question/616239100442857532.html 直接把标题作为表的一行就好了。
\begin{tabular}{|c|c|c|}
\multicolumn{3}{c}{23333}\\
\hline
A & B & C \\
\hline
D & 1 & 2 \\
\hline
E & 3 & 4 \\
\hline
\end{tabular}
去掉左边的缩进
默认情况下,tabular左边可能会有缩进,如图
如果不想要这个缩进,将tabular包裹在一个table
环境中即可。
\begin{enumerate}
\item 有缩进!\par
\begin{tabular}{|c|c|c|}
\multicolumn{3}{c}{23333}\\
\hline
A & B & C \\
\hline
D & 1 & 2 \\
\hline
E & 3 & 4 \\
\hline
\end{tabular}
\item 没缩进了!\par
\begin{table}[H]
\begin{tabular}{|c|c|c|}
\multicolumn{3}{c}{23333}\\
\hline
A & B & C \\
\hline
D & 1 & 2 \\
\hline
E & 3 & 4 \\
\hline
\end{tabular}
\end{table}
\end{enumerate}
设置页边距
\usepackage{geometry}
\geometry{top=1.5cm,bottom=1.5cm, left=1.5cm, right=1.5cm}
插入公式
\usepackage{amsmath}
等式
equation*
中的*
表示不要编号。
\begin{equation*}
10 + \frac{20}{(1+y)^{\frac{5}{12}}} - \frac{20}{(1+y)^\frac{9}{12}} = 0
\end{equation*}
公式集
\usepackage{amsmath}
\begin{gather*}
Co2Low1(lightIntensity, temperature) \\
Co2Low2(lightIntensity, temperature)
\end{gather*}
标签
用\label
创建标签,用\ref
引用标签
\begin{equation}\label{t1}
10 - \frac{20}{(1+y)^{\frac{5}{12}}} = 0
\end{equation}
代入(\ref{t1})中,得
插入代码
\usepackage{listings}
\usepackage{xcolor}
\usepackage{fontspec}
\usepackage{inconsolata}
\fontspec{inconsolata}
\setmonofont[StylisticSet=1]{inconsolata} %1 or 3??? 让0中间有一个斜线,让l不像1。
在\maketitle
后面设定默认的代码样式。下面是适合黑白打印的设定:
\lstset{ %
backgroundcolor=\color{white}, % choose the background color; you must add \usepackage{color} or \usepackage{xcolor}
basicstyle=\ttfamily, %ttfamily is consolas
breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace
breaklines=true, % sets automatic line breaking
deletekeywords={...}, % if you want to delete keywords from the given language
escapeinside={\%*}{*)}, % if you want to add LaTeX within your code
extendedchars=true, % lets you use non-ASCII characters; for 8-bits encodings only, does not work with UTF-8
keepspaces=true, % keeps spaces in text, useful for keeping indentation of code (possibly needs columns=flexible)
morekeywords={*,...}, % if you want to add more keywords to the set
numbers=left, % where to put the line-numbers; possible values are (none, left, right)
numbersep=5pt, % how far the line-numbers are from the code
numberstyle=\ttfamily,
rulecolor=\color{black}, % if not set, the frame-color may be changed on line-breaks within not-black text (e.g. comments (green here))
showspaces=false, % show spaces everywhere adding particular underscores; it overrides 'showstringspaces'
showstringspaces=false, % underline spaces within strings only
showtabs=false, % show tabs within strings adding particular underscores
stepnumber=1, % the step between two line-numbers. If it's 1, each line will be numbered
tabsize=4, % sets default tabsize to 2 spaces
columns=fullflexible,
}
直接插入代码
\begin{lstlisting}[numbers=none]
mpirun -n 20 ./xhpl
\end{lstlisting}
注意代码块里的空格和tab都会如实显示出来。
从文本中读取代码
\lstinputlisting{hello.c}