2015-10-16 68 views
0

我有乳胶部分标题有问题。我想这样做:乳胶:左侧部分标题

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

我怎么能做到这一效果?谢谢您的回答!

+0

最佳拟合将是一个两个栏布局。但是,如果您的部分需要环绕页面(即两列的宽度相同,这可能不是您喜欢的),那么您无法控制列的宽度。 如果您的部分适合在单个页面上,请考虑minipage或vwcol。 – yacc

+0

提示:对于LaTeX问题,您还可以查看姊妹网站(http://tex.stackexchange.com)。 – ph0t0nix

回答

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 
... 
+0

不错,请参阅我上面的评论。 – yacc