\contentsname 和 \addcontentsline 中的小写字母

\contentsname 和 \addcontentsline 中的小写字母

我怎样才能用小写字母写出和TABLE中的s ?\contentsname\addcontentsline

\documentclass{book}
\renewcommand{\contentsname}{TABLE of contents}
\begin{document}
\tableofcontents\addcontentsline{toc}{chapter}{TABLE of contents}
\chapter{text}
\section{text}
text
\end{document}

答案1

当然,\textsc{Table}应该给出期望的结果...但不幸的是,它没有。

从这个警告中可以辨别出 警告 默认字体(CMR)似乎缺少sc形状。

您可以使用该times包(或,,,fourier... )palatinobookman

\documentclass{book}
\usepackage{times}   %% or use {fourier} {palatino} {bookman} ...

\renewcommand{\contentsname}{\textsc{Table} of contents}
\begin{document}
\tableofcontents\addcontentsline{toc}{chapter}{\textsc{Table} of contents}
\chapter{text}
\section{text}
text
\end{document}

获得这种结果,我希望它接近你想要的结果:

相关内容