我试图在文档的边缘对作业的解决方案进行编号,如下所示:
理想情况下,我希望手动输入数字“1”、“2”等,即不自动编号。我该怎么做?我正在使用经过修改的文章类别。
答案1
在我看来,您只是使用正常的enumerate
环境来做到这一点。
因此,为了实现你的目标
加载包
enumitem
并将可选参数添加[leftmargin=\labelsep]
到您的enumerate
环境中,如下所示\begin{enumerate}[leftmargin=\labelsep]
将标签放在边缘处。
只需使用可选参数手动
\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=*]
是