常用 LaTeX 命令记录

$\LaTeX$

符号列表

PDF

换页

1
\clearpage

尽量不要使用 \newpage原因

上标引用

1
2
\usepackage{cite}
\newcommand{\upcite}[1]{\textsuperscript{\cite{#1}}}

定义了新命令 \upcite,原 \cite 样式不变

修改行距

1
2
\renewcommand\arraystretch{1.5}  % 1.5倍行距,对下文均有效
\renewcommand\arraystretch{1}    % 下文恢复单倍行距

图片剪裁

1
2
3
4
5
6
7
\begin{figure}[!htbp]
    \centering
    \includegraphics[width=0.75\linewidth,trim=0 50 0 50,clip]{figures/pic.jpg}
    % 宽度设定为0.75倍行长;trim 后的四个数字分别表示「左下右上」逆时针四边剪裁掉的长度
    \caption{description}
    \label{fig:1}
\end{figure}

图片并排显示

1
2
3
4
5
6
7
8
9
10
11
12
13
14
\begin{figure}[!htbp]
    \begin{minipage}[t]{0.5\linewidth}
        \centering
        \includegraphics[width=7cm]{figure1.png}
        \caption{\textit{This is Figure 1}}
        \label{f1}
    \end{minipage}
    \begin{minipage}[t]{0.5\linewidth}
        \centering
        \includegraphics[width=7cm]{figure2.png}
        \caption{\textit{This is Figure 2}}
        \label{f2}
    \end{minipage}
\end{figure}

列表缩进

1
2
3
4
5
6
7
8
\usepackage{enumitem}
\begin{enumerate}[itemindent=2em]
    \item Text1

    \item Text2

    \item Text3
\end{enumerate}

跨页表格

1
2
3
4
5
6
7
8
9
10
11
\usepackage{longtable}
\begin{longtable}{r|p{6cm}|r}
    \hline
    \textbf{A} & \textbf{B} & \textbf{C}\\
    \hline
    1 & a & b\\
    %
    %
    \hline
\end{longtable}
\label{data}

参考链接

-------------本文结束    感谢您的阅读-------------
0%