我在数学模式下有多行,并希望将它们全部包含在相同的垂直线中 - 有点像围绕多行的框,但没有顶部和底部边框。我希望它既可以在内联数学模式($...$
)中工作,也可以在其他数学模式($$...$$
,我不知道它叫什么)中工作。
例如,如何在这样的物体周围画垂直线:
$|a|\Rightarrow|b|$\\
$\text{....}\boxminus|a|\Rightarrow|b|$\\
$\text{....}\Leftrightarrow\neg|a|\vee|b|$\\
我已经寻找解决方案,并尝试使用线性代数中的行列式条,但格式与它们非常不一致。
答案1
I propose two easy way:
\documentclass[10pt,a4paper]{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx,framed}
\begin{document}
\begin{leftbar}
$|a|\Rightarrow|b|$\\
$\text{....}\boxminus|a|\Rightarrow|b|$\\
$\text{....}\Leftrightarrow\neg|a|\vee|b|$\\
\end{leftbar}
\vspace{1cm}
\begin{tabular}{|l}
$|a|\Rightarrow|b|$\\
$\text{....}\boxminus|a|\Rightarrow|b|$\\
$\text{....}\Leftrightarrow\neg|a|\vee|b|$\\
\end{tabular}
\end{document}
输出: