标题位于章节的第一行,而不是上一行

标题位于章节的第一行,而不是上一行

我尝试将节/小节标题放在节的第一行而不是节上方的行中。

代替:

1 个标题

章节主体。

我想

1 个标题章节主体。

像这样

答案1

改编自这里

\documentclass{article}
\usepackage{titlesec}
\titleformat{\section}[runin]
  {\normalfont\Large\bfseries}{\thesection}{1em}{}
\titleformat{\subsection}[runin]
  {\normalfont\large\bfseries}{\thesubsection}{1em}{}
\begin{document}
\section{my section}
Section context.
\section{my other section}
More section content
\end{document}

相关内容