
答案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}