在枚举环境中缩进时遇到问题

在枚举环境中缩进时遇到问题

这是我第一次使用 tex 来格式化作业,并且在完成这项工作时遇到了很大的困难。

\documentclass[12pt,a4paper,sans]{article}
\usepackage[utf8]{inputenc}
\usepackage[scale=0.75]{geometry}
\usepackage{setspace}
\usepackage{amsthm}
\begin{document}
\onehalfspace

\begin{enumerate}
  \item The first item\\
    \hspace{2cm} indented under first item\\
      \hspace{4cm} indented even more under first item
  \item The second item\\
    \hspace{2cm} indented under second item\\
      \hspace{4cm} indented even more under second item
  \item The third item\\
    \hspace{2cm} indented under third item\\
      \hspace{4cm} indented even more under third item
\end{enumerate}

\end{document}

这是我目前所拥有的,但它似乎不起作用。无论我做什么, \hspace 都不会缩进。我需要在项目下缩进,因为我正在回答证明问题,我需要这种类型的格式。

答案1

在你的情况下,该\hspace指令不起作用,因为在水平模式材料的开头还没有任何内容。你应该使用\hspace*而不是\hspace

相关内容