如何对齐环境描述以便与文本混合

如何对齐环境描述以便与文本混合

我想写以下一段话: 在此处输入图片描述

但是当尝试以下代码时:

{\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}、 等。

相关内容