我正在尝试制作一个长表来列出出版物,但我想使用阿拉伯数字和拉丁大写字母来表示不同的类别。这是我只为几个项目准备的,但我想不断更新它,以便较新的条目排在前面,当数字变大时,继续手动添加它们会很乏味。
\documentclass{article}
\usepackage{longtable}
\usepackage{xcolor}
%http://www.procato.com/rgbfind/
\definecolor{navy_blue}{rgb}{0, 0, 0.502}
\begin{document}
\noindent \begin{longtable}{@{} p{.3in} l}
\multicolumn{2}{l}{\textcolor{navy_blue}{\Large{\textbf{Publications}}}} \\
\multicolumn{2}{l}{\Large{\underline{Journal Articles}}} \\
(J1) & \parbox{6.2in}{\large{\textbf{Author 1}, Author 2 (year). Title. \textit{Journal} \\
(J2) & \parbox{6.2in}{\large{\textbf{Author 1}, Author 2, Author 3 (year). Title. \textit{Journal} \\
\multicolumn{2}{l}{\Large{\underline{Conference Abstracts with Presentations}}} \\
(A1) & \parbox{6.2in}{\large{\textbf{Author 1}, Author 2 (year). Title. \textit{Conference} \\
\end{longtable}
\end{document}
我认为我可以用枚举来代替 (J1)、(J2) 等,但我不清楚如何制作这些特定的编号样式。我尝试按照 Overleaf 上的文档至少让一些基本的编号起作用,但我收到了错误。下面的 MWE 仅仅是我为了让一些数字运转起来所做的努力,而不是为了让编号样式发挥作用所做的努力。
\noindent \begin{longtable}{@{} p{.3in} l}
\multicolumn{2}{l}{\textcolor{navy_blue}{\Large{\textbf{Publications}}}} \\
\multicolumn{2}{l}{\Large{\underline{Journal Articles}}} \\
\begin{enumerate}
\item & \parbox{6.2in}{\large{\textbf{Author 1}, Author 2 (year). Title. \textit{Journal} \\
\end{enumerate}
\end{longtable}
错误表明缺少了什么,但事实并非如此,而且我的代码中\item
可能有一些多余的内容。}