下面的 MWE 得出:
Missing number, treated as zero. <to be read again> enit@cv@currfiledepth \item testing.
列表itemize
。enumerate
列表很好。
如果我删除\usepackage[realmainfile]{currfile}
或\setlist{leftmargin=*}
,一切正常,但我将它们保留在那里的原因如链接的问题中所述。
参考:
- 原因
\setlist{leftmargin=*}
如下enumitem itemize 环境将文本移至边缘,或与其他文本重叠 - 看TeXLive2012 安装已损坏?(currfile 选项冲突)为了
the currfile package
问题——尽管我没有使用包裹standalone
,我喜欢有一个一致的序言。
代码:
\documentclass{article}
%% https://tex.stackexchange.com/questions/68684/corrupted-texlive2012-installation-option-clash-for-currfile
\usepackage[realmainfile]{currfile}
\usepackage{enumitem}
%% https://tex.stackexchange.com/questions/21669/enumitem-itemize-environment-shifts-text-into-margin-or-overlaps-other-text
\setlist{leftmargin=*}
\begin{document}
\begin{itemize}% This does not work!!
\item testing.
\end{itemize}
\begin{enumerate}% This works fine.
\item testing.
\end{enumerate}
\end{document}