我快疯了!我想自定义 \subsection 的标题。编号应该是 1.1 ... 1.2 ... 1.3 ... 等等。我还想将编号和描述之间的距离设置为大约 35 毫米。可以吗?非常感谢!
\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\titleformat{\subsection}{\Large}
\begin{document}
\subsection{First Section}
\subsection{Second Section}
\end{document}
答案1
我不确定你真正想要什么。该类的部门顺序article
是(忘记\part
)\section
、、\subsection
等\subsubsection
。你只想要\subsection
没有吗\section
?
如果您想要两者\section
,则在 any 之前\subsection
放置 a 。\section{some section title}
\subsection
如果您只想要\subsection
编号 1.1、1.2、1.3 等,则更改子节计数器的打印。将以下内容放入您的序言中:
\renewcommand{\thesubsection}{1.\arabic{subsection}}
编辑
以下是更灵活的方法。除其他外,该\section
命令会增加节号。此外,默认情况下,节号位于子节号之前。
定义一个命令来增加节号,称为 say \upsecnum
,并在子节块之前使用它。
例如:
% subsecprob.tex SE 580322
\documentclass{article}
\newcommand{\upsecnum}{\refstepcounter{section}}
\begin{document}
\upsecnum % start a subsection block
\subsection{One}
\subsection{Two}
\subsection{Three} \label{subsec}
Now start a new block of subsections. \verb|\upsecnum|
\upsecnum
\subsection{Uno}
\subsection{Duo}
\subsection{Tres}
The third subsection overall is \ref{subsec}.
\setcounter{section}{0} % reinitialise section numbering
\section{A section}
\subsection{Eins}
\subsection{Zwei}
\subsection{Drei}
\end{document}