babel 的西班牙选项使用的 itemize 符号是什么?

babel 的西班牙选项使用的 itemize 符号是什么?

itemize我喜欢使用该选项babel设置的默认项目符号spanish,我想更改默认的 latex 符号以匹配 via \labelitemiet 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

相关内容