答案1
这看起来像一个列表,其节号以枚举为前缀。对列表参数的此类调整由enumitem
。这是与您的输出相匹配的模型:
\documentclass{article}
\usepackage{enumitem}
\usepackage{lipsum}
\makeatletter
% To add a period after sectional unit numbering
\renewcommand{\@seccntformat}[1]{\thesection.\quad}
\makeatother
\begin{document}
\section{A section}
\lipsum[1][1-2]
\section{Another section}
\begin{enumerate}[align=left,label*=\thesection.\arabic*,labelindent=2em]
\item \lipsum[1][3]
\item \lipsum[1][4-5]
\item \lipsum[1][6]
\begin{enumerate}[align=left,label*=.\arabic*,labelwidth=3em,leftmargin=3.5em]
\item \lipsum[2][1-2]
\item \lipsum[2][3-5]
\end{enumerate}
\end{enumerate}
\end{document}
答案2
您是否尝试过不给他们标题?如果没有,为什么不呢?
% subsecprob.tex SE 653881
\documentclass{article}
\begin{document}
\section{First section}
Some text.
\subsection{First subsection}
Some text.
\subsubsection{First subsubsection}
Some text.
\section{Second section}
Some text.
\subsection{}
Some text.
\subsubsection{}
Some text.
\end{document}
--GOM