我想为论文中使用的符号和缩写创建一个部分。我使用该函数\listoftables
生成表格列表。我想再创建一个部分,其部分标题与表格列表的格式相同。
我该如何做呢?
我的符号和缩写代码:
\section{Symbols and Abbreviations}
$\\$
\begin{tabular}{p{4cm} p{5cm}}
\bf{Abbreviation} & \bf{Definition} \\
AC, DC & Alternating Current, Direct Current
\end{tabular}
$\\ \\$
\begin{tabular}{p{4cm} p{5cm}}
\bf{Symbol} & \bf{Definition} \\
$T$ & Temperature\\
$T_e$ & Electron temperature\\
$T_i$ & Ion temperature\\
$V$ & Probe voltage\\
$V_p$ & Plasma potential\\
\end{tabular}
\clearpage
答案1
我必须在我的一份文档(书籍)中做类似的事情。这个摘录可能就是您所需要的。但您必须在自己的文档中测试它,因为我只是做了一个小例子。
\documentclass[11pt]{article}
\usepackage{xpatch}
\usepackage[titles]{tocloft}
\newlistof[section]{symabb}{losb}{List of symbols and abbreviations}
\newcommand{\symabb}[1]{%
\refstepcounter{symabb}
\addcontentsline{losb}{symabb}{\protect\numberline{\thesymabb} \addvspace{1pt}\sffamily\small \textcolor{color1}{#1}}\par}
\begin{document}
\listofsymabb
\addcontentsline{toc}{section}{List of symbols and abbreviations}
\section{Symbols and Abbreviations}
\phantomsection \addcontentsline{losb}{symabb}{Abbreviations}
$\\$
\begin{tabular}{p{4cm} p{5cm}}
\bf{Abbreviation} & \bf{Definition} \\
AC, DC & Alternating Current, Direct Current
\end{tabular}
$\\ \\$
\phantomsection \addcontentsline{losb}{symabb}{Symbols}
\begin{tabular}{p{4cm} p{5cm}}
\bf{Symbol} & \bf{Definition} \\
$T$ & Temperature\\
$T_e$ & Electron temperature\\
$T_i$ & Ion temperature\\
$V$ & Probe voltage\\
$V_p$ & Plasma potential\\
\end{tabular}
\end{document}
首先,使用包创建一个新列表tocloft
。然后创建一个新的列表文件,如lot
和,lof
其中放置符号和缩写中的条目。最后,告诉编译器要将列表打印到哪里以及内容应该是什么。