I'm using the Cleanthesis template along with the scrreprt package in LaTeX to create a legal outline, and I've encountered an indentation issue. All sectioning levels are indented too far to the right. As a result, items such as (a) do not have enough space, leading to unwanted line breaks in the Table of Contents. I want to shift all levels slightly to the left so that the layout is uniform and no line breaks occur in the TOC. Since LaTeX natively supports only up to the \subparagraph level, I had to define custom commands for deeper levels, which complicates the adjustments.
Current LaTeX Code (excerpt):
Code: Select all
Code, edit and compile here:
% **************************************************% Settings for Legal Outline in LaTeX (Cleanthesis, scrreprt)% **************************************************% ---------------------------% > Chapter (\chapter)% ---------------------------\renewcommand*{\chapterformat}{\thechapter\quad}\renewcommand{\thechapter}{\arabic{chapter}}% ---------------------------% > Section (\section)% ---------------------------\renewcommand*{\sectionformat}{%\usekomafont{section}{\thesection\hspace*{10pt}}%}\renewcommand{\thesection}{\Alph{section}.}% ---------------------------% > Paragraph (\paragraph)% ---------------------------\renewcommand*{\paragraphformat}{%\usekomafont{paragraph}{\theparagraph\hspace*{10pt}}%}\renewcommand{\theparagraph}{\alph{paragraph})}% ---------------------------% > Custom deeper level (e.g., (a))% ---------------------------\newcounter{customAlpha}[customOne]\renewcommand{\thecustomAlpha}{(\alph{customAlpha})}\newcommand{\customsubsubsubsubsection}[1]{%\refstepcounter{customAlpha}\noindent\hspace{5em}% Adjust indentation\textbf{\thecustomAlpha\ #1} \\\addcontentsline{toc}{subparagraph}{\makebox[10em][l]{\hspace{5em}\thecustomAlpha} #1}%}
Does anyone have suggestions on how to uniformly shift all levels to the left?
Thanks for your help!