Guest User

Untitled

a guest
Oct 6th, 2017
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.29 KB | None | 0 0
  1. \documentclass{memoir}
  2.  
  3. \usepackage{xpatch}
  4.  
  5. \renewcommand{\mempreaddchaptertotochook}{%
  6.   \addtocontents{toc}{%
  7.     \protect\settowidth{\protect\cftchapternumwidth}{\cftchapterfont \thechapter.\space}%
  8.     \protect\setlength{\protect\cftsectionindent}{\protect\cftchapternumwidth}%
  9.   }%
  10. }
  11.  
  12. \makeatletter
  13.  
  14. \xpatchcmd{\@m@mschapter}% <cmd>
  15.   {\@schapter}% <search>
  16.   {\addtocontents{toc}{\protect\settowidth{\protect\cftsectionindent}{\protect\cftchapterfont \thechapter.\space}}%
  17.      \@schapter}% <replace>
  18.   {}{}% <success><failure>
  19.  
  20. \patchcmd{\M@sect}% <cmd>
  21.   {\addcontentsline}% <search>
  22.   {\addtocontents{toc}{%
  23.      \protect\settowidth{\csname cft#1numwidth\endcsname}{\csname cft#1font\endcsname\csname the#1\endcsname.\space}%
  24.      \protect\setlength{\csname cftsub#1indent\endcsname}{\protect\dimexpr\csname cft#1numwidth\endcsname+\csname cft#1indent\endcsname}%
  25.    }%
  26.    \addcontentsline}% <replace>
  27.   {}{}% <success><failure>
  28. \makeatother
  29.  
  30. %% delete boxes
  31. \renewcommand\numberlinebox[2]{#2} % for sections
  32. \renewcommand\chapternumberlinebox[2]{#2} % for chapters
  33. %% set dot and space
  34. \renewcommand\cftchapteraftersnum{.\space}
  35. \renewcommand\cftsectionaftersnum{.\space}
  36. \renewcommand\cftsubsectionaftersnum{.\space}
  37. \renewcommand\cftsubsubsectionaftersnum{.\space}  
  38.  
  39. %%enumeration levels in the ToC and text
  40. \settocdepth{subsection}
  41. \setsecnumdepth{subsubsection}
  42. \setrmarg{2.55em plus1fil} %hyphenation is forbidden
  43.  
  44. \renewcommand{\cftchapterfont}{}
  45.  
  46. \begin{document}
  47.  
  48. \tableofcontents
  49.  
  50. \chapter*{Introduction}
  51. \addcontentsline{toc}{chapter}{Introduction}
  52. \section{First section}
  53.  
  54. \chapter{First chapter}
  55. \section{First section  long long long long long long long long long long long long title}
  56. \subsection{First subsection  long long long long long long long long long long long long title}
  57. \setcounter{chapter}{11}
  58.  
  59. \chapter{Another chapter long long long long long long long long long long long long title}
  60. \section{First section  long long long long long long long long long long long long title}
  61. \subsection{First subsection  long long long long long long long long long long long long title}
  62. \subsection*{Short conclusion with long long long long long long long long long long long long title}
  63. \addcontentsline{toc}{subsection}{Short conclusion}
  64.  
  65. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment