我怎样才能像这样格式化我的列表?
看看列表是如何从 0 开始的。我想知道如何从那里开始列表。如果需要,缩进为 0.5。
我已经有一个代码,但列表尚未排列,必须排列。提前致谢。
\documentclass[11pt]{article}
\usepackage{enumitem}
\usepackage[top=0.5in, bottom=0.5in, left=0.5in, right=0.5in]{geometry}
\begin{document}
\noindent
Let \textit{f} be a function given by \textit{f}(\textit{x})= $\displaystyle cos\bigg(2x+ \displaystyle \frac{\pi}{6}\bigg)$ and let \textit{P}(\textit{x}) be the fourth-degree Taylor polynomial about \textit{f} at \textit{x}=0.
\vspace{.01in}
\begin{enumerate}[label=\alph*.]
\item Find \textit{P}(\textit{x}). \textbf{(4)}
\end{enumerate}
\end{document}
答案1
正如史蒂文和第一个对这个问题的评论指出,请查看第 9 页enumitem
文档。对于懒人来说,只需在 之前添加以下行\begin{enumerate}
,根据需要调整大小:
\setlist[enumerate]{leftmargin=0.5in}