2015-10-16 88 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