Latex:左边的部分标题

Latex: section title on the left

我在使用带有章节标题的 Latex 时遇到一些问题。我想做一些这样的事情:

section title1 |text...
               |text...
               |text..
               |text..
               |text
section title2 |text...

我怎么做这个效果?感谢您的回答!

您可以使用 changepage 包缩进标题后的整个部分文本。

\documentclass[a4paper,10pt]{article}
\usepackage{changepage}
\begin{document}
\section{section heading}
\begin{adjustwidth}{30mm}{0mm}
section text line one

section text line two
\end{adjustwidth}

\section{section two heading}
...
\end{document}

这给你类似的东西

section heading
          section text line one
          section text line two

section two heading
...