我想写类似下面的东西,但涉及数学符号:
我尝试使用,\substack{}
但它会使字体变小。我想要一种新颖的替代方法来实现这一点。
并且,感谢 TeX.SX 用户的帮助!
编辑:我在这里得到了很棒的答案,我的许多其他问题也是如此。我选择了我现在正在使用的代码的答案。我真诚地希望我能多次点赞答案并接受多个答案。:-(
答案1
对于稍微简单的解决方案,您可以使用类似
\begin{align*}
\begin{Bmatrix}
& \text{hi} \\
& \text{hello}
\end{Bmatrix}
\longleftrightarrow
\begin{Bmatrix}
& \text{The droids} \\
& \text{lorrem lipsum}
\end{Bmatrix}
\end{align*}
要获得精确的箭头样式,您必须使用 tikz 和箭头库。
答案2
只需用于tabular
文本,或替换tabular
为array
数学。您还可以考虑Bmatrix
来自amsmath 包对于后一种情况。
\documentclass{article}
\begin{document}
\[
\left\{
\begin{tabular}{c}
TeX.SX users that \\
ask questions on \\
this site
\end{tabular}
\right\}
\longleftrightarrow
\left\{
\begin{tabular}{c}
TeX users in the \\
world using \\
TeX.SX
\end{tabular}
\right\}
\]
\end{document}
答案3
这里有两种可能性,使用amsmath
。括号内的间距不同,这可能会影响您的偏好。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\left\{
\begin{array}{c}
a + b\\
c + d\\
e + f
\end{array}
\right\}
\quad\longleftrightarrow\quad
\left\{
\begin{array}{c}
g + h\\
i + j\\
k + l
\end{array}
\right\}
\]
\[
\begin{Bmatrix}
a + b\\
c + d\\
e + f
\end{Bmatrix}
\quad\longleftrightarrow\quad
\begin{Bmatrix}
g + h\\
i + j\\
k + l
\end{Bmatrix}
\]
\end{document}
输出: