但是当尝试以下代码时:
{\bf 8.}
\begin{description}
\item[(a)] Show that $\mathbb{R}$ has the greatest lower bound property.
\item[(b)] Show that $\inf\{1/n\mid n\in\mathbb{Z}_+\}=0.$
\item[(c)] Show that given $a$ with $0<a<1,$ $\inf\{a^n\mid n\in\mathbb{Z}_+\}=0.$ [{\it Hint:}
Let $h=(1-a)/a,$ and show that $(1+h)^n\geq 1+nh.$]
\end{description}
我应该如何向上移动列表以便 (a) 部分与 8 位于同一行?
答案1
您不应该像这样硬编码列表,如果您想更改项目标签的样式,请使用包(或以困难的方式执行)来更改项目标签的样式。
除此之外,enumerate
环境的默认行为会给您提供您想要的列表结构。
在这里我使用enumitem
包并传递可选参数
[label=\textbf{\arabic*.},start=8]
枚举环境:
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}[label=\textbf{\arabic*.},start=8]
\item
\begin{enumerate}
\item
Show that $\mathbb{R}$ has the greatest lower bound property.
\item
Show that $\inf\{1/n \mid n \in \mathbb{Z}_{+}\} = 0$.
\item
Show that given $a$ with $0 < a < 1$,
$\inf\{a^{n} \mid n \in \mathbb{Z}_{+}\} = 0$. [\textit{Hint:} Let
$h = (1 - a)/a$, and show that $(1 + h)^{n} \geq 1 + nh$.]
\end{enumerate}
\end{enumerate}
\end{document}
另外,请注意,{\it foo}
、{\bf foo}
等语法已弃用 20 多年。请不要使用它。使用\textit{foo}
、\textbf{foo}
等,或者,如果您愿意,使用{\itshape foo}
、{\bfseries foo}
、 等。