Temporarily added this code to generate a ToC without page numbers.
I doubt this will be kept permanently. I learned this from: http://tex.stackexchange.com/questions/55465/remove-dots-page-numbers-from-toc
This commit is contained in:
parent
2230849e93
commit
52962a2af7
1 changed files with 10 additions and 0 deletions
|
@ -9,6 +9,16 @@
|
||||||
left=1in, right=1in, top=1.25in, bottom=.75in,
|
left=1in, right=1in, top=1.25in, bottom=.75in,
|
||||||
]{geometry}
|
]{geometry}
|
||||||
|
|
||||||
|
% BEGIN CODE TO FORCE NO PAGE NUMBER ON ToC
|
||||||
|
\usepackage{tocloft}
|
||||||
|
\addtocontents{toc}{\cftpagenumbersoff{part}} %% Similarly for subsection, figure... as you wish
|
||||||
|
\addtocontents{toc}{\cftpagenumbersoff{section}} %% Similarly for subsection, figure... as you wish
|
||||||
|
\addtocontents{toc}{\cftpagenumbersoff{chapter}}
|
||||||
|
\addtocontents{toc}{\cftpagenumbersoff{section}} %% Similarly for subsection, figure... as you wish
|
||||||
|
\addtocontents{toc}{\cftpagenumbersoff{subsection}} %% Similarly for subsection, figure... as you wish
|
||||||
|
\renewcommand{\cftdot}{} %empty {} for no dots. you can have any symbol inside. For example put {\ensuremath{\ast}} and see what happens.
|
||||||
|
% END CODE TO FORCE NO PAGE NUMBER ON ToC
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\pagestyle{plain}
|
\pagestyle{plain}
|
||||||
\pagenumbering{roman}
|
\pagenumbering{roman}
|
||||||
|
|
Loading…
Reference in a new issue