答案1
我不会自动调整括号的大小;相反,我会将\bigl
和\bigr
应用于两个smallmatrix
环境。如果您坚持要自动调整大小,我会使用psmallmatrix
环境(由mathtools
包提供)并节省一些击键次数。
\documentclass{article}
\usepackage{mathtools}
\begin{document}
setting
$\bigl(\begin{smallmatrix}
\beta_x \\ \beta_y
\end{smallmatrix}\bigr) =
\bigl(\begin{smallmatrix}
0.01 \\ 0
\end{smallmatrix}\bigr)$
results in a \dots
\medskip
setting
$\begin{psmallmatrix}
\beta_x \\ \beta_y
\end{psmallmatrix} =
\begin{psmallmatrix}
0.01 \\ 0
\end{psmallmatrix}$
results in a \dots
\end{document}
答案2
答案3
用一个\vphantom
。
\left...\right
正如 MadyYuvi 正确建议的那样,可以通过用以下名称替换命名法来限制括号的垂直高度,从而获得额外的控制\bigl...\bigr
\documentclass{article}
\usepackage{mathtools}
\begin{document}
setting $\bigl(\begin{smallmatrix}
\beta_x \\
\beta_y
\end{smallmatrix}\bigr) = \bigl(\begin{smallmatrix}
0.01\vphantom{\beta_x} \\
0\vphantom{\beta_y}
\end{smallmatrix}\bigr)$ results in a ...
\end{document}
答案4
一个可能的替代方案...使用 \tbinom{}{}
。
\documentclass[12pt]{article}
\usepackage{mathtools}
\usepackage{amssymb}
\begin{document}
There are possible little matrix, inlinemath $\tbinom{\beta_x}{\beta_y}=\tbinom{0.01}{0}$
and in displaymath you have the same result
\[\tbinom{\beta_x}{\beta_y}=\tbinom{0.01}{0}\]
\end{document}