itemize
我喜欢使用该选项babel
设置的默认项目符号spanish
,我想更改默认的 latex 符号以匹配 via \labelitemi
et al。西班牙语 babel 使用的符号是什么itemize
?
答案1
您可以在以下位置找到它spanish.ldf
:
\def\spanishsymbitems{%
\es@itemize
{\leavevmode\hbox to 1.2ex
{\hss\vrule height .9ex width .7ex depth -.2ex\hss}}%
{\textbullet}%
{$\m@th\circ$}%
{$\m@th\diamond$}}
这是设置的一个间接方法
\makeatletter
\renewcommand{\labelitemi}{%
\leavevmode\hbox to 1.2ex{\hss\vrule height .9ex width .7ex depth -.2ex\hss}%
}
\renewcommand{\labelitemii}{\textbullet}
\renewcommand{\labelitemiii}{$\m@th\circ$}
\renewcommand{\labelitemiv}{$\m@th\diamond$}
\makeatother