Page Layout ⇒ Fancy headers - get rid of box in ToC / list of figures
Fancy headers - get rid of box in ToC / list of figures
anyone that has an idea how to get rid of the box in Table of Contents / List of Figures? I need it only for the chapters but not before. I use PDFLatex for compilation. Thanks
- Attachments
-
- latex_getRidOfThis.png (8.43 KiB) Viewed 3767 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Fancy headers - get rid of box in ToC / list of figures
Re: Fancy headers - get rid of box in ToC / list of figures
I tried also the mods as proposed in http://www.kronto.org/thesis/thesis/
but without success.
any more ideas?
Fancy headers - get rid of box in ToC / list of figures
Re: Fancy headers - get rid of box in ToC / list of figures
thanks for any help
- Attachments
-
- fncychapleo.sty
- style
- (11.1 KiB) Downloaded 239 times
-
- latex_test.tex
- minimal working example
- (2.29 KiB) Downloaded 225 times
Fancy headers - get rid of box in ToC / list of figures
Code: Select all
\makeatletter
\renewcommand{\DOTIS}[1]{%
% JD - We add a box to \chapter* a well
\ChRuleWidth{0.5pt}
\settoheight{\pyy}{\CNoV\thechapter}
\addtolength{\pyy}{-2pt}
\parbox[b]{\textwidth}{%
\rule[\py]{\RW}{\pyy}% % Vertical line at left
\hskip -\RW% % and back
\rule[\pyy]{\textwidth}{\RW}% % Horizontal line at top
\hskip -\textwidth% % and back
\mghrulefill{\RW}% % Horizontal line at bottom
\rule{\RW}{\pyy}\par\nobreak}% % Vertical line at right
\vskip 20\p@
% JD - Original code:
\raggedright
\CTV\FmTi{#1}\par\nobreak
\vskip -10\p@}
\makeatother
Re: Fancy headers - get rid of box in ToC / list of figures
Thanks for your help.