Theses, Books, Title pages ⇒ book orange template TOC subsection text issue
book orange template TOC subsection text issue
the subsection text overwrites the numbering, for more details see the attached picture with snapshotof the issue.
need more space between the numbering and subsction title, such that the Capital V doesn't overwrite the 4 from 21.1.104
Would like to have a correct positioned layout
in structure i have tried to increase
1./the addvspace,
2./the section intendation
3./the contentslable
updated each option seperatly and it doesn't provide me with a good solution.
Any suggestion to solve this.
- Attachments
-
- picture that shows the PDF with issue in the TOC
- 2015_04_18_09_59_49_main.pdf_Adobe_Acrobat_Reader_DC.png (2.93 KiB) Viewed 3552 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
book orange template TOC subsection text issue
Generally, I would use the tocstyle package which calculates the widths automatically. So numbers and text would not overlap in any case. It uses several LaTeX runs to finally adjust.
However, the template uses the
titletoc
package. No problem, but you have to decide the widths. You correctly looked in structure.tex
. There's this command:Code: Select all
% Subsection text styling
\titlecontents{subsection}[1.25cm] % Indentation
{\addvspace{1pt}\sffamily\small} % Spacing and font options for subsections
{\contentslabel[\thecontentslabel]{1.25cm}} % Subsection number
{}
{\ \titlerule*[.5pc]{.}\;\thecontentspage} % Page number
[]
1.25cm
to 1.5cm
at both places, compile, and take a look. You may want to do it for chapter and section as well.Stefan