标签和部分标题之间的间距
Spacing between label and sectiontitle
我想更改标签和部分标题之间的间距。现在我正在使用 titlesec
和 scrartcl
,但有警告。我想这是因为 titlesec
与 KOMA-script.
有一些问题
所以我想使用 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}
Warnings
Output document
快速破解:
\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}
我想更改标签和部分标题之间的间距。现在我正在使用 titlesec
和 scrartcl
,但有警告。我想这是因为 titlesec
与 KOMA-script.
所以我想使用 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}
Warnings
Output document
快速破解:
\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}