\item[] 中的文本格式化失败

\item[] 中的文本格式化失败

考虑这个脚本:

\documentclass{article}
\begin{document}
\begin{description}
\item[\textsc{Point} A] description of \textsc{Point} A.
\end{description}
\end{document}

输出为

在此处输入图片描述

可以看出,\textsc在 中的使用无效\item[]。有解决方案吗?

答案1

Computer Modern 字体默认没有 Small Caps 字体形状。编译您的示例,甚至这个 MWE:

\documentclass{article}
\begin{document}
\textbf{\scshape{Point A}}
\end{document}

LaTeX 抱怨:

LaTeX Font Warning: Font shape `OT1/cmr/bx/sc' undefined
(Font)              using `OT1/cmr/bx/n' instead on input line 4.

但是,将字体编码更改为T1,您就可以访问这种字体形状:

\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}
\scshape{\textbf{Point A}}
\end{document}

相关内容