乳胶缩进

时间:2015-05-19 14:55:19

标签: latex indentation

我有一个列表,我想从章节标题中缩进。我尝试了\indent\hspace{1cm}但没有成功。

这是我的代码

\vspace{0.2in}
\section{Affiliations} 
\vspace{0.1in}
\indent The American Geophysical Union.\\
\hspace{1cm} The Seismological Society of America.

1 个答案:

答案 0 :(得分:2)

要对某些类似列表的结构进行一致缩进",请使用changepage中的adjustwidth

enter image description here

\documentclass{article}
\usepackage{changepage}
\begin{document}
\section{Affiliations}
\begin{adjustwidth}{1cm}{0pt}
  \setlength{\parindent}{0pt}%
  The American Geophysical Union.

  The Seismological Society of America.
\end{adjustwidth}
\end{document}

但是,我建议像itemize这样的常规列表式结构:

enter image description here

\documentclass{article}
\usepackage{enumitem}
\begin{document}
\section{Affiliations}
\begin{itemize}[leftmargin=1cm]
  \item The American Geophysical Union.
  \item The Seismological Society of America.
\end{itemize}
\end{document}