나는 classicthesis
패키지를 사용하고 있으며 \chapter
목차에 대문자로 된 장 제목을 만듭니다. 어떻게 소문자로 바꿀 수 있나요?
답변1
와표준 클래스KOMA-Script 패키지를 로드 tocbasic
하고 \spacedlowsmallcaps
ToC 제목 다음에 재정의할 수 있습니다.
\usepackage{tocbasic}
\addtotoclist[book.cls]{toc}
\renewcommand*{\tableofcontents}{\listoftoc[{\contentsname}]{toc}}
\AfterTOCHead[toc]{\renewcommand\spacedlowsmallcaps[1]{#1}}
암호:
\documentclass{book}
\usepackage{tocbasic}
\addtotoclist[book.cls]{toc}
\renewcommand*{\tableofcontents}{\listoftoc[{\contentsname}]{toc}}
\AfterTOCHead[toc]{\renewcommand\spacedlowsmallcaps[1]{#1}}
\usepackage{classicthesis}
\begin{document}
\tableofcontents
\chapter{A Chapter}
\section{A Section}
\end{document}
당신이 사용하는 경우KOMA-스크립트 클래스\spacedlowsmallcaps
, ToC 제목 다음에 재정의하면 됩니다 .
암호:
\documentclass{scrbook}
\usepackage{classicthesis}
\AfterTOCHead[toc]{\renewcommand\spacedlowsmallcaps[1]{#1}}
\usepackage{blindtext}
\begin{document}
\tableofcontents
\chapter{A Chapter}
\section{A Section}
\end{document}
답변2
classicthese가 수행한 작업을 취소하세요.
\renewcommand{\cftchappresnum}{\normalfont}
.
이는 classicesis.sty를 로드하는 명령 뒤에 옵니다.