项目符号和花括号

项目符号和花括号

我正在尝试创建一些文本,其中有四个项目符号,后三个在右边有一个花括号 } ,以及与花括号相邻的一行文本。

到目前为止,我已经设法让花括号位于三行文本旁边,但无法获取项目符号,并且第一行文本与相应的三行没有对齐。

如果这有意义的话,有人可以告诉我如何解决它吗?

我的代码是:

\documentclass[11pt,a4paper]{article}
\usepackage{amsfonts,amssymb,amsmath,amsthm,graphicx,tabularx}

\newtheorem{thm}{Theorem}[section]
\newtheorem{cor}[thm]{Corollary}
\newtheorem{lem}[thm]{Lemma}
\theoremstyle{definition}
\newtheorem{defn}[thm]{Definition}
\theoremstyle{remark}
\newtheorem{rem}[thm]{Remark}
\numberwithin{equation}{section}

\newcommand{\R}{\mathbb R}
\newcommand{\C}{\mathbb C}
\newcommand{\eps}{\varepsilon}

\makeatletter
\setlength{\@fptop}{0pt}
\makeatother

\begin{document}

Riemann Sum\\
\[\left\ \begin{array}{l l l}
\text{Trapezoidal Rule}\\
\text{Simpson's 1/3 Rule}\\
\text{Simpson's 3/8 Rule}\\
\end{array} \right\} \right.\ - \text{Newton Cotes formulae of different degrees}

\end{document}

答案1

您不应使用当前的布局,而应使用itemize其预期的方式:

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\begin{document}

\begin{itemize}
  \item Riemann Sum

  \item
  Trapezoidal Rule

  \item
  Simpson's 1/3 Rule
    $\smash{\left.\rule{0pt}{.5\dimexpr3\baselineskip+2\itemsep+2\parskip}\right\}
      \text{Newton Cotes formulae of different degrees}}$

  \item
  Simpson's 3/8 Rule
\end{itemize}

\end{document}

由于内容物的定位,\right\}在中间物品旁边插入了一个支架,\smash以避免任何垂直干扰。

考虑阅读对于 LaTeX 初学者来说有哪些好的学习资源?

相关内容