的默认值是什么详细列举环境(\itemsep
,\labelsep
,\labelwidth
, ETC。)?
下面是我目前所拥有的一个例子:
\documentclass{article}
\begin{document}
\begin{itemize}
\item Item 1
\item Item 2
\item Item 3
\end{itemize}
\end{document}
答案1
这取决于为文档类别或文本选择的字体大小以及您是否在\twocolumn
(至少对于默认文档类别而言)。要了解确切的长度,您需要查看size10.clo
,size11.clo
,size12.clo
与您使用的文档类结合使用。以下最小示例列出了各个级别的总计:
\documentclass{article}
\begin{document}
\begin{itemize}
\item \verb|\itemsep:| \the\itemsep
\item \verb|\labelsep:| \the\labelsep
\item \verb|\labelwidth:| \the\labelwidth
\item \verb|\parsep:| \the\parsep
\item \verb|\topsep:| \the\topsep
\item \verb|\partopsep:| \the\partopsep
\item \verb|\leftmargin:| \the\leftmargin
\begin{itemize}
\item \verb|\itemsep:| \the\itemsep
\item \verb|\labelsep:| \the\labelsep
\item \verb|\labelwidth:| \the\labelwidth
\item \verb|\parsep:| \the\parsep
\item \verb|\topsep:| \the\topsep
\item \verb|\partopsep:| \the\partopsep
\item \verb|\leftmargin:| \the\leftmargin
\begin{itemize}
\item \verb|\itemsep:| \the\itemsep
\item \verb|\labelsep:| \the\labelsep
\item \verb|\labelwidth:| \the\labelwidth
\item \verb|\parsep:| \the\parsep
\item \verb|\topsep:| \the\topsep
\item \verb|\partopsep:| \the\partopsep
\item \verb|\leftmargin:| \the\leftmargin
\begin{itemize}
\item \verb|\itemsep:| \the\itemsep
\item \verb|\labelsep:| \the\labelsep
\item \verb|\labelwidth:| \the\labelwidth
\item \verb|\parsep:| \the\parsep
\item \verb|\topsep:| \the\topsep
\item \verb|\partopsep:| \the\partopsep
\item \verb|\leftmargin:| \the\leftmargin
\end{itemize}
\end{itemize}
\end{itemize}
\end{itemize}
\end{document}
一些字体相关的设置包括\labelsep
、\labelwidth
和\leftmargin
。这些设置在根级别(非\twocolumn
模式下)设置为
\labelsep
:.5em
;\leftmargin
:2.5em
;\labelwidth
:\leftmargin
-\labelsep
=2.5em
-.5em
=2em
。