Etaremune 与恢复课程

Etaremune 与恢复课程

我正在使用带有 resume 类的 etaremune 包。它们似乎不配合,因为 etarumene 中的条目编号与 enumerate 中的条目编号相同。

此处 etemune 工作正常:

\documentclass{article}
\usepackage{etaremune}

\begin{document}

\begin{etaremune}
\item T.~Brander, A.~Hannukainen. \textbf{Numerical study of the enclosure method for $p$-Laplacian}.
\item T.~Brander, B.~von Harrach, M.~Kar, M.~Salo. {\bfseries Monotonicity and enclosure methods for the $p$-Laplace equation}.
\item T.~Brander, J.~Ilmavirta, M.~Kar. {\bfseries Superconductive and insulating inclusions for linear and non-linear conductivity equations}.
\end{etaremune}

\end{document}

但这里的顺序与枚举包相同:

\documentclass{resume}
\usepackage{etaremune}

\begin{document}

\begin{etaremune}
\item T.~Brander, A.~Hannukainen. \textbf{Numerical study of the enclosure method for $p$-Laplacian}.
\item T.~Brander, B.~von Harrach, M.~Kar, M.~Salo. {\bfseries Monotonicity and enclosure methods for the $p$-Laplace equation}.
\item T.~Brander, J.~Ilmavirta, M.~Kar. {\bfseries Superconductive and insulating inclusions for linear and non-linear conductivity equations}.
\end{etaremune}

\end{document}

有没有简单的方法可以解决这个问题?

(我希望简历类足够标准,以便人们了解它。以下是该类的版权信息:

RESUME DOCUMENT STYLE -- Released 23 Nov 1989
for LaTeX version 2.09
Copyright (C) 1988,1989 by Michael DeCorte

答案1

res课程(也以名称 流传resume)于 1989 年作为 LaTeX2.09 样式文件发布。随后,它被修饰为 LaTeX2e 课程。

与其他包合作,例如提供从类代码中删除etaremune完全错误的命令。\nofiles

事实上你可以在日志文件中看到

\gdef\etaremune@i{3}

LaTeX Warning: Etaremune labels have changed.
               Rerun to get them right.

第一行意味着必要的信息没有写入.aux文件中(因为根本没有写入),因此在后续运行中无法知道项目的数量。

如果删除该\nofiles指令,则经过两次运行后,您将获得预期的结果。

不要使用res。它已经有近三十年的历史了。现在有更好的工具了。

相关内容