classicthesis 패키지의 toc에 있는 장 제목의 소문자

classicthesis 패키지의 toc에 있는 장 제목의 소문자

나는 classicthesis패키지를 사용하고 있으며 \chapter목차에 대문자로 된 장 제목을 만듭니다. 어떻게 소문자로 바꿀 수 있나요?

답변1

표준 클래스KOMA-Script 패키지를 로드 tocbasic하고 \spacedlowsmallcapsToC 제목 다음에 재정의할 수 있습니다.

\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를 로드하는 명령 뒤에 옵니다.

관련 정보