itemize 中的数字右对齐

itemize 中的数字右对齐

我正在尝试为学生编写考试题目。就像任何标准试卷一样,每个问题都需要将其相关点(即分数)对齐在页面的右侧。我使用以下代码来

\documentclass[12pt]{article}
\usepackage[top= .8in, bottom= .8in, left=.8in, right=.8in]{geometry}
\usepackage{amsmath}

\begin{document}

\begin{center}

\large{\textbf{ECO361: Environmental Economics}} \\
\vspace{.5cm}
\textbf{Midterm 2} \\
Total points: 
\vspace{1cm}
\end{center}

\begin{enumerate}
\item Suppose there are two sources of the same pollutant, Source 1 \& Source 2. State two possible reasons why blah blah? \hspace*{11.5cm} \textbf{4}
\item Define marginal abatement cost (MAC). Draw an MAC curve of a firm which has to make a substantial outlay blah blah. \hspace*{10.5cm} \textbf{3}                                                            
\end{enumerate}

\end{document}

通过反复试验来为每个不同的项目找到正确的 \hspace* 输入非常麻烦。有没有办法在不指定 11.5cm 或 10.5 等测量值的情况下做到这一点?似乎 \hspace*{\hfill} 在“itemize”环境中不起作用。有什么简单的建议吗?

答案1

\hspace*{\hfill}

无法在任何地方工作,\hfill这是添加空格的命令,而不是您想要的长度

\hspace*{\fill}

在测试文件中使用该表单会产生以下结果:

在此处输入图片描述

相关内容