I've got a small problem with my latex document. I don't know how to describe the problem so here is a picture:
Does anyone know a fix to this problem?
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\makeatletter
\renewcommand*\l@subsection{\@dottedtocline{2}{1.5em}{2.8em}}
\renewcommand*\l@subsubsection{\@dottedtocline{3}{4.3em}{3.2em}}
\makeatother
Code: Select all
\makeatletter
\renewcommand*\l@section{\@dottedtocline{1}{0em}{1.5em}}
\renewcommand*\l@subsection{\@dottedtocline{2}{1.5em}{2.8em}}
\renewcommand*\l@subsubsection{\@dottedtocline{3}{4.3em}{3.2em}}
\makeatother
Take a look at the tocloft package. A search for that package here in the forum will yield some useful results.tufflax wrote:[...] But that removed the bold face from the sections. Can I do that and still have bold face somehow? I realize that this way (with BF) it looks just like before, but I thought about having a bigger indent, because the subsubsection indent is so large in comparison. [...]
Code: Select all
\usepackage{tocloft}
\renewcommand{\cftsecindent}{0 em}
\renewcommand{\cftsecnumwidth}{1.9 em}
\renewcommand{\cftsubsecindent}{1.9 em}
\renewcommand{\cftsubsecnumwidth}{2.8 em}
\renewcommand{\cftsubsubsecindent}{4.7 em}
\renewcommand{\cftsubsubsecnumwidth}{3.2 em}
NEW: TikZ book now 40% off at Amazon.com for a short time.