如何在页边空白处填写问题编号?

如何在页边空白处填写问题编号?

我试图在文档的边缘对作业的解决方案进行编号,如下所示:

在此处输入图片描述

理想情况下,我希望手动输入数字“1”、“2”等,即不自动编号。我该怎么做?我正在使用经过修改的文章类别。

答案1

在我看来,您只是使用正常的enumerate环境来做到这一点。

因此,为了实现你的目标

  1. 加载包enumitem并将可选参数添加[leftmargin=\labelsep]到您的enumerate环境中,如下所示

    \begin{enumerate}[leftmargin=\labelsep]
    

    将标签放在边缘处。

  2. 只需使用可选参数手动\item指定您的号码,如下所示

    \item[3.] Let $(x_n)$ be a sequence such that $x_n>0$
    

MWE(不要showframe在文档中加载该包,我只是用它来显示边距)

\documentclass{article}
\usepackage{enumitem}
\usepackage{showframe} % just to show the margins

\begin{document}

\begin{enumerate}[leftmargin=\labelsep]
  \item[3.] Let $(x_n)$ be a sequence such that $x_n>0$
  \[y_n=\frac{1}{\frac{1}{x_1}+}\]
  \begin{enumerate}
    \item Suppose that $x_n$ is a convergent
  \end{enumerate}
\end{enumerate}

\end{document} 

输出

在此处输入图片描述


如果你改用,[leftmargin=0pt]你将获得

在此处输入图片描述

结果[leftmargin=*]

在此处输入图片描述

相关内容