
答え1
主張を表現するために、ディスプレイ数式ではなくインライン数式を使用していると想像してください。その場合、 はand
間違いなく正しい接続詞になります。インライン数式で正しいものは、ディスプレイ数式でも正しいはずです。ただし、ディスプレイ数式では、\quad
単語の両側に通常の単語間スペースではなくを挿入する必要がありますand
。
\documentclass{article}
\begin{document}
Inline math:
The variables $x$ and $y$ obey the following constraints: $x+y<1$ and $x-y=2$.
Display math:
The variables $x$ and $y$ obey the following constraints:
\[
x+y<1 \quad\mbox{and}\quad x-y=2.
\]
\end{document}