
답변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}