설명에 있는 작은 대문자의 소문자

설명에 있는 작은 대문자의 소문자

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}

여기에 이미지 설명을 입력하세요

관련 정보