我遇到了(和所有其他选项)undefined
错误。我没有在其他地方找到此问题的记录,这让我怀疑我遗漏了一些简单的东西。\cftchapfont
tocloft
\documentclass[12pt]{article}
\usepackage{tocloft}
\renewcommand{\cftchapfont}{\LARGE\scshape}
\begin{document}
\tableofcontents
\section{first chapter}
\section{second chapter}
\end{document}
答案1
由于文章类没有章节,解决方案是(a)使用不同的文档类,或(b)使用 \cftsecfont。
\documentclass[12pt]{article}
\usepackage{tocloft}
\renewcommand{\cftsecfont}{\LARGE\scshape}
\begin{document}
\tableofcontents
\section{first section}
\section{second section}
\end{document}