글꼴 크기를 변경하는 패키지

글꼴 크기를 변경하는 패키지

tocloft그래서 방정식 목록을 생성하기 위해 보고서에 LaTeX를 사용하기 시작했습니다 . 목록은 잘 작동하고 필요한 작업을 수행하지만 지금까지 유일한 문제는 'List of Equations'라는 제목이 'Contents', 'List of Figures' 등의 다른 제목보다 훨씬 더 큰 글꼴로 되어 있다는 것입니다. . 어떻게 변경할 수 있나요?

목록에 대한 코드는 다음과 같습니다.

\usepackage{tocloft}
\newcommand{\listexamplename}{List of Equations}
\newlistof{example}{exp}{\listexamplename}
\newcommand{\example}[1]{%
\refstepcounter{example}
\par\noindent\text{Equation \theexample. #1}
\addcontentsline{exp}{example}
{\protect\numberline{\thechapter.\theexample}#1}\par}

답변1

이미 다양한 맥락에서 언급했듯이

  1. https://tex.stackexchange.com/a/51900/4427

  2. https://tex.stackexchange.com/a/53806/4427

패키지는 tocloft목차, 그림 목록 및 표 목록의 제목을 조판하기 위해 자체 방법을 사용합니다. 따라서 장 제목 스타일이 다른 경우 해당 세 장의 스타일은 다른 장과 일치하지 않습니다.

다음 옵션 을 사용하세요 titles.

\usepackage[titles]{tocloft}

관련 정보