乳胶压痕

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.

为了 "somewhat list-like structure" 的一致缩进,使用 changepage:

中的 adjustwidth

\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:

\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}