我是 LaTeX 的初学者,我用来自学的项目之一是用 LaTeX 重新创建我的简历。我想列出我的出版物,以便每个类别都以编号列表中的字母开头。例如,期刊文章将是 j1.;j3.;j3. 等等。而会议论文将是 c1.;c2. 你明白了。我希望项目按降序排列,所以我最新的期刊文章将是 j30.,而前一篇将是 j29.,一直到第一篇出版物(最早的)。
如果这个问题之前有人问过,我很抱歉。我四处寻找答案,但我认为我无法用一种能达到我想要的效果的方式来表达我的搜索词。在此先感谢任何人能给我提供的任何指点。
答案1
标签本身可以通过包装轻松实现enumitem
,但列表的逆转则无法实现。
然而,etaremune
包可以执行逆转(需要二但是编译可以运行)。标签必须手动更改。
由于第一级enumerate
使用enumi
计数器,因此\theenumi
必须在本地重新定义,以用于单独的日记帐等类型。
\documentclass{article}
\usepackage{etaremune}
\begin{document}
\renewcommand{\theenumi}{j\arabic{enumi}}
\begin{etaremune}
\item The journal of Brontosaurs
\item The journal of Tyrannosaurus Rex
\item The journal of Stegosaurs
\item Applied Antrophology for Dinosaurs
\end{etaremune}
% Now the conference papers
\renewcommand{\theenumi}{c\arabic{enumi}}
\begin{etaremune}
\item The secret life of TeX.SX users?
\item Are questions about MathJax off-topic on TeX.SX ?
\end{etaremune}
\end{document}