两个不等式并排显示,但在 LaTeX 中间隔良好

发布于 2024-08-19 15:48:11 字数 164 浏览 1 评论 0原文

在 LaTeX 中,我有两个不等式,例如 a \leq b 和 c \leq d。我想要一条编号线,上面有这两个不等式:

a \leq b      c \leq d     (1)

像这样。让间距发挥作用的最简单方法是什么?我应该使用哪个环境?

In LaTeX, I have two ineqaulites e.g. a \leq b and c \leq d. I want to have a numbered line which has both of these inequalities on it:

a \leq b      c \leq d     (1)

Like this. What's the easiest way to get the spacing to behave itself? Which environment should I use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

望她远 2024-08-26 15:48:11

答案当然是使用 amsmath 包。 align 环境的一个可能不太为人所知的功能是并排放置方程,就像您尝试做的那样:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
a &\leq b   &   c &\leq d     
\end{align}
\end{document}

如果您添加多行,它们看起来会很好:

\begin{align}
a &\leq b   &   c &\leq d  \\   
a+1 &\leq b+1   &   c+1 &\leq d+1     
\end{align}

哪个是实际上,不使用 \quad 和其他手动间距命令的全部原因。

The answer is, of course, to use the amsmath package. A perhaps less-known feature of the align environment is to place equations side-by-side, exactly as you are trying to do:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
a &\leq b   &   c &\leq d     
\end{align}
\end{document}

And if you add multiple lines they'll look good:

\begin{align}
a &\leq b   &   c &\leq d  \\   
a+1 &\leq b+1   &   c+1 &\leq d+1     
\end{align}

Which is the whole reason, really, for not using \quad and other manual spacing commands.

笑忘罢 2024-08-26 15:48:11

对于一些空间,只需使用\quad\qquad或您选择的任何其他间距命令(可能是\hfill?)。

我不知道有什么环境可以做到这一点,AMS 包附带的环境旨在对齐列(因此它们仅在有多行时才有用)。

For some space, just use \quad, \qquad or any other spacing command of your choice (maybe \hfill?).

I don't know about any environments to do this, the environments that come with the AMS packages are meant to align columns (so they're only useful if you have multiple lines).

So尛奶瓶 2024-08-26 15:48:11

您应该使用 amsmath 包(用于间距选项)。执行以下操作:

\begin{equation}
a \leq b \qquad c \leq d
\end{equation}

You should use the amsmath package (for spacing options). The do the following:

\begin{equation}
a \leq b \qquad c \leq d
\end{equation}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文