作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须缩短方程式,并占用大量垂直空间,我想将它们聚集在一行中,但数量不同。
我想要如下所示的等式
a = b (1) c = d (2)
d = e (3) e = f (4)
最佳答案
如果您不需要跨方程对齐(例如对齐所有等号),那么表格可以是一个快速的解决方案:
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\lipsum[2]
\begin{center}
\begin{tabular}{p{3cm}p{3cm}}
\begin{equation}
a = b
\end{equation}
&
\begin{equation}
c = d
\end{equation} \\
\begin{equation}
d = e
\end{equation}
&
\begin{equation}
e = f
\end{equation}
\end{tabular}
\end{center}
\lipsum[2]
\end{document}
关于latex - 如何将两个不同数字的方程式放在一行中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57268400/
我是一名优秀的程序员,十分优秀!