我正在尝试在 PDF 中写一些希腊文,但等式的第一个单词对我来说是难以理解的。
答案1
使用以下代码:
\documentclass{article}
\usepackage{mathtools}% <-- for aligned environment
\begin{document}
\[
\begin{aligned}
\mathcal{T}&=\{(x,\xi) \mid 0\leq\xi\leq x\leq 1\} \\
\mathcal{T}_1&=\mathcal{T}\times\{t\geq 0\} \\
\mathcal{S}&=\{(x,\xi) \mid 0\leq x\leq\xi\leq 1\} \\
\mathcal{S}_1&=\mathcal{S}\times\{t\geq 0\}
\end{aligned}
\]
\end{document}
这使
编辑
或者,align*
环境也可以。(感谢西格尔)
\documentclass{article}
\usepackage{mathtools}% <-- for align environment
\begin{document}
\begin{align*}
\mathcal{T}&=\{(x,\xi) \mid 0\leq\xi\leq x\leq 1\} \\
\mathcal{T}_1&=\mathcal{T}\times\{t\geq 0\} \\
\mathcal{S}&=\{(x,\xi) \mid 0\leq x\leq\xi\leq 1\} \\
\mathcal{S}_1&=\mathcal{S}\times\{t\geq 0\}
\end{align*}
\end{document}