根据我所在大学的论文指导方针,目录中的章节名称必须使用粗体。但目录中前言部分的所有章节都必须使用普通字体(非粗体)。
我怎样才能取消前言中的目录条目的粗体?
\documentclass{book}
\begin{document}
\frontmatter
\chapter{Abstract}
The ``Abstract'' entry (and entries for other frontmatter chapters) in the table of contents should be unbolded.
\tableofcontents
\mainmatter
\chapter{Chapter name}
But the mainmatter chapters should still be bold in TOC.
\end{document}
答案1
我不确定这是否明智......
买者自负....
\documentclass{book}
\begin{document}
\frontmatter
\let\bforigdefault\bfdefault
\addtocontents{toc}{\let\string\bfdefault\string\mddefault}
\chapter{Abstract}
The ``Abstract'' entry (and entries for other frontmatter chapters) in the table of contents should be unbolded.
\tableofcontents
\mainmatter
\addtocontents{toc}{\let\string\bfdefault\string\bforigdefault}
\chapter{Chapter name}
But the mainmatter chapters should still be bold in TOC.
\end{document}