私は TOC の以下のデザインを実現しようとしています (ただし、memoir クラスを使用しています)。
基本的には、章番号、名前、ページ、サブセクション番号、名前、ページのみが表示されます。memoir の標準の目次構造では、名前とページの間にドットが追加されますが、これを削除します。
私は部分的な解決策にたどり着くことができました。サブセクション内のドットを削除することはできましたが、章やサブセクション内のドットは削除できませんでした (MWE)。
\documentclass{memoir}
\usepackage{lipsum}
\renewcommand*{\cftsectionleader}{}
\tableofcontents*
\begin{document}
\chapter{Introduction}
\section{lipsum}
\lipsum[1-10]
\end{document}
ただし、この方法では、目次に不正な行が生成されます。
- どうすれば、memoir ユーティリティのみを使用してこれを達成できるでしょうか?
答え1
これを再現したいようです:https://logic.rwth-aachen.de/~ummels/diss.pdf
1 つのオプションは、l@chapter
次のように再定義することです。
\documentclass{memoir}
\usepackage{fontspec}
\setmainfont{Minion Pro}
\renewcommand\chapternumberline[1]{\numberline{#1}} %not necessary when using the book class
\makeatletter
\renewcommand*\l@chapter[2]{%
\ifnum \c@tocdepth >\m@ne
\addpenalty{-\@highpenalty}%
\vskip 1ex \@plus\p@
\setlength\@tempdima{1.5em}%
\begingroup
\parindent \z@
\rightskip \@pnumwidth
\parfillskip -\@pnumwidth
\leavevmode \large % added for large font for chapters
%\advance\leftskip\@tempdima
\hskip -\leftskip %\@chapapp~ \par % added \@chapapp~ \par
#1\nobreak \raggedright % originally \hfil
%added for leaders (dots) in chapter in toc
%\xleaders\hbox{$\m@th
% \mkern \@dotsep mu\hbox{.}\mkern \@dotsep
% mu$}\hfill%
%%
\nobreak\hb@xt@\@pnumwidth{\hss ~\textbullet~#2}\par\vspace{.5ex} % ADDED VSPACE
\penalty\@highpenalty
\endgroup
\fi}
\renewcommand*\l@section[2]{%
\ifnum \c@tocdepth >\m@ne
\addpenalty{-\@highpenalty}%
%\vskip .5ex \@plus\p@
\setlength\@tempdima{1.5em}%
\begingroup
\parindent 3em
\rightskip \@pnumwidth
\parfillskip -\@pnumwidth
\leavevmode \normalsize %
\advance\leftskip\@tempdima
\hskip -\leftskip %
#1\nobreak \raggedright % originally \hfil
%added for leaders (dots) in chapter in toc
%\xleaders\hbox{$\m@th
% \mkern \@dotsep mu\hbox{.}\mkern \@dotsep
% mu$}\hfill%
%%%
\nobreak\hb@xt@\@pnumwidth{\hss \textbullet~#2}\par%\vspace{.5ex} % ADDED VSPACE
\penalty\@highpenalty
\endgroup
\fi}
\renewcommand*\l@subsection[2]{%
\ifnum \c@tocdepth >\m@ne
\addpenalty{-\@highpenalty}%
%\vskip .5ex \@plus\p@
\setlength\@tempdima{2.3em}%
\begingroup
\parindent 5.3em
\rightskip \@pnumwidth
\parfillskip -\@pnumwidth
\leavevmode \normalsize %
\advance\leftskip\@tempdima
\hskip -\leftskip %
#1\nobreak \raggedright % originally \hfil
%added for leaders (dots) in chapter in toc
%\xleaders\hbox{$\m@th
% \mkern \@dotsep mu\hbox{.}\mkern \@dotsep
% mu$}\hfill%
%%%
\nobreak\hb@xt@\@pnumwidth{\hss \textbullet~#2}\par\vspace{1ex} % ADDED VSPACE
\penalty\@highpenalty
\endgroup
\fi}
\makeatother
\begin{document}
\tableofcontents
\chapter{title}
\section{section name}
\subsection{section name}
\chapter{title}
\section{section name}
\subsection{section name}
\chapter{title}
\section{section name}
\subsection{section name}
\chapter{title}
\section{section name}
\subsection{section name}
\end{document}
長さはお好みに合わせて調整してください。
目次にサブセクションを表示したい場合は、以下memoir
を追加する必要があります。
\setcounter{tocdepth}{2}
\setcounter{secnumdepth}{2}
答え2
ここでは同じものを(主にマニュアルの155ページから)memoir
のみ使用していますmemoir
\documentclass{memoir}
\usepackage{lipsum}
\renewcommand*{\cftchapterleader}{}
\renewcommand*{\cftsectionleader}{}
\renewcommand*{\cftsubsectionleader}{}
\renewcommand{\cftchapterpagefont}{}
\renewcommand*{\cftchapterformatpnum}[1]{~\textbullet~#1}
\renewcommand*{\cftsectionformatpnum}[1]{~\textbullet~#1}
\renewcommand*{\cftsubsectionformatpnum}[1]{~\textbullet~#1}
\renewcommand{\cftchapterafterpnum}{\cftparfillskip}
\renewcommand{\cftsectionafterpnum}{\cftparfillskip}
\renewcommand{\cftsubsectionafterpnum}{\cftparfillskip}
\setrmarg{3.55em plus 1fil}
\setsecnumdepth{subsection}
\maxsecnumdepth{subsection}
\settocdepth{subsection}
\begin{document}
\tableofcontents*
\chapter{Introduction}
\section{lipsum}
\subsection{lipsum 2}
\end{document}
さらに、インデントを操作するための追加コードがあります
\setlength\cftsectionindent{0pt}
\setlength\cftsubsectionindent{0pt}
\setlength\cftchapternumwidth{3em}
\setlength\cftsectionnumwidth{3em}
\setlength\cftsubsectionnumwidth{3em}
数字ボックスも同じ大きさにした