2

我想更改标签和部分标题之间的间距。现在我正在使用titlesecwith scrartcl,但有警告。我想这是因为titlesecKOMA 脚本有一些问题。

所以我想通过使用 KOMA-Script 命令来创建相同的内容。你有想法吗?

\documentclass[pdftex,a4paper]{scrartcl}
\usepackage{titlesec}

\titleformat{\section}[hang]
{\normalfont\bfseries}{\thesection}{1cm}{}


\titleformat{\subsection}[hang]
{\normalfont\bfseries}{\thesubsection}{3cm}{}

\titleformat{\subsubsection}[hang]
{\normalfont\bfseries}{\thesubsubsection}{5cm}{}

\begin{document}

\section{Ein erster Abschnitt}
\subsection{Unterabschnitt}
\subsubsection{Unter-Unterabschnitt}

\end{document}

警告

输出文件

4

1 回答 1

0

快速破解:

\documentclass[
%pdftex,
a4paper]{scrartcl}

\renewcommand*{\sectionformat}{\thesection\autodot\enskip\hspace{2cm}}
\renewcommand*{\subsectionformat}{\thesubsection\autodot\enskip\hspace{2cm}} 
\renewcommand*{\subsubsectionformat}{\thesubsubsection\autodot\enskip\hspace{2cm}}

\begin{document}

\section{Ein erster Abschnitt}
\subsection{Unterabschnitt}
\subsubsection{Unter-Unterabschnitt}

\end{document}
于 2021-02-09T13:44:50.640 回答