
Я бы использовал обычные малые заглавные буквы в названии элемента, 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}
EDIT: Вот решение для 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}