\begin{Bmatrix}\text{Of what nacion.}\\text{Of what countrée.}\\text{Of what auncetours.}\\text{Of what parentes.}\end{Bmatrix}
显然,我应该插入 $ 但我不知道在哪里。
答案1
使用
\[
\begin{Bmatrix}
\text{Of what nacion.} \\
\text{Of what countrée.} \\
\text{Of what auncetours.} \\
\text{Of what parentes.}
\end{Bmatrix}
\]
或者$ ... $
答案2
我认为最好对数学材料使用面向数学的环境,对纯文本材料使用面向文本的环境。例如,在下面的例子中,我使用环境center
而不是 display-math 将材料水平居中,使用tabular
环境来排版诗歌,并使用显式\left\{
和\right\}
指令来创建左花括号和右花括号。这最大限度地减少了对数学模式的依赖。
第一个例子显示了使用默认值的结果\tabcolsep
;第二个例子则使用了该参数的较小值。
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\begin{document}
\begin{center}
$\left\{
\begin{tabular}{c}
Of what nacion.\\
Of what countrée.\\
Of what auncetours.\\
Of what parentes.
\end{tabular}
\right\} $
\end{center}
%% Second version, with less whitespace on either side of the poem.
%% (The default value of \tabcolsep is 6pt.)
\begin{center}
\setlength\tabcolsep{1pt}
$\left\{
\begin{tabular}{c}
Of what nacion.\\
Of what countrée.\\
Of what auncetours.\\
Of what parentes.
\end{tabular}
\right\} $
\end{center}
\end{document}
答案3
这是我做的:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{bmatrix}
\text{Of what nacion.}\\
\text{Of what countrée.}\\
\text{Of what auncetours.}\\
\text{Of what parentes.}
\end{bmatrix}
\end{equation}
\end{document}
我只添加了环境equation
,并附上了bmatix
一个。
答案4
默认情况下,包stackengine
会堆叠文本(需要调用\stackMath
来堆叠数学,否则会在堆栈中使用数学分隔符)。因此,您可以通过这种方式实现它,而无需\text{...}
。堆栈的对齐方式(此处为左侧)在的可选参数中指定\Centerstack
。
\documentclass{article}
\usepackage[usestackEOL]{stackengine}
\begin{document}
\[
\left\{
\Centerstack[l]{Of what nacion.\\Of what countrée.\\Of what auncetours.\\Of what parentes.}
\right\}
\]
\end{document}