我对Latex有部分标题有一些问题。我想做点什么:
section title1 |text...
|text...
|text..
|text..
|text
section title2 |text...
我怎么能这样做?谢谢你的回答!
答案 0 :(得分:1)
您可以使用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
...