描述中的小写字母

描述中的小写字母

我将在项目中使用普通小型大写字母,description以区分小写和大写(例如 LaTeX)。

尤其:

\begin{description}
\item[I cAn't DiStiNguISH upPeR fROm LoWeR cASe] description1
\item[AlSo HeRe] description2
\end{description}

我想要一些像普通小写字母的东西\textsc{YeS I LiKe It!}

我见过这个问题但它对我没有帮助。

编辑:我使用这个包classicthesis

答案1

像这样吗?

\documentclass{article}

\usepackage{enumitem}

\begin{document}

\begin{description}[font=\normalfont\scshape]
\item[I cAn't DiStiNguISH upPeR fROm LoWeR cASe] description1
\item[AlSo HeRe] description2
\end{description}

\end{document}

在此处输入图片描述

编辑:这是一个解决方案classicthesis

\documentclass{scrbook}

\usepackage{classicthesis}

% \renewcommand{\descriptionlabel}[1]{\hspace*{\labelsep}\spacedlowsmallcaps{#1}}% OLD
\renewcommand{\descriptionlabel}[1]{\hspace*{\labelsep}\textsc{#1}}% NEW

\begin{document}

\begin{description}
\item[I cAn't DiStiNguISH upPeR fROm LoWeR cASe] description1
\item[AlSo HeRe] description2
\end{description}

\end{document}

在此处输入图片描述

相关内容