`\itemize` 和 svmono 文档类的问题

`\itemize` 和 svmono 文档类的问题

\itemize如果我使用 Springer 的文档类,环境中的缩进会出现奇怪的行为svmono。请看以下示例:

\begin{itemize}
\item[(E1)]She can access to an arbitrarily large number of ciphertexts, in other words she intercepts all the communications between Alice and Bob.
\item[(E2)]She always knows the encrypting and decrypting functions.
\end{itemize}

结果是: 在此处输入图片描述

我为什么会遇到这个问题?

编辑:我使用以下软件包

\usepackage{subfiles}
\usepackage[utf8]{inputenc} 
\usepackage[bottom]{footmisc}
\usepackage{microtype}
\usepackage{amsmath}
\usepackage{relsize}
\usepackage{courier}
\usepackage{mathrsfs} 
\usepackage{amssymb} 
\usepackage[all,cmtip]{xy}
\usepackage{faktor}
\usepackage[linesnumbered,commentsnumbered]{algorithm2e}
\usepackage[colorlinks={true},linkcolor={blue},citecolor={blue}]{hyperref}
\usepackage{geometry}

答案1

我没有遇到这个问题。您是否使用了其他会影响列表的命令?

也许你可以尝试这个:

 \documentclass{svmono}

 \usepackage{enumitem}

 \begin{document}

 \begin{enumerate}[label=(E\arabic*),start=1]
 \item She can access to an arbitrarily large number of ciphertexts, in other words she intercepts all the communications between Alice and Bob.
 \item She always knows the encrypting and decrypting functions.
 \end{enumerate}

 \end{document}

相关内容