目录中的章节名称

目录中的章节名称

我需要在目录中将作者写在章节名称之前。此外,作者姓名用粗体显示,章节名称用斜体显示,如图所示。简单的

梅威瑟:

\begin{document}
\documentclass[twocolumn]{memoir}
\renewcommand{\cftchapterdotsep}{\cftdotsep}
\renewcommand{\cftchapterpagefont}{\normalfont}        % нежирные номера страниц у глав в оглавлении
\renewcommand{\cftchapterleader}{\cftdotfill{\cftchapterdotsep}}% нежирные точки до номеров страниц у глав в оглавлении
\renewcommand{\cftchapterfont}{\textsf}                       % нежирные названия глав в оглавлении
\cftpagenumbersoff{part} % убираем номер страницы для части
\renewcommand{\cftpartfont}{\bfseries\large}
\renewcommand*{\parttitlefont}{\textsf\large\bfseries}
\renewcommand*{\partnamefont}{\textsf\large\bfseries}
\tableofcontents

\renewcommand{\PartTitle}{{Part Title}}
\addcontentsline{toc}{part}{\PartTitle}

\renewcommand{\firstchapter}{\{First Chapter title}} 
\addcontentsline{toc}{chapter}{\firstchapter}
\renewcommand{\secondchapter}{\{Second Chapter title}} 
\addcontentsline{toc}{chapter}{\secondchapter}
\renewcommand{\thirdchapter}{\{Third Chapter title}} 
\addcontentsline{toc}{chapter}{\thirdchapter}

\end{document}

相关内容