I am trying to write some Greek text in PDF, but the first word of the equation is incomprehensible to me.

I am trying to write some Greek text in PDF, but the first word of the equation is incomprehensible to me.

Use the following code:
\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}
which gives
Alternatively, align* environment will also do. (Thanks to sigur)
\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}
aligned just came out of my instinct.
– Teddy van Jerry
Mar 24 '22 at 12:39
align and align* open math mode and it is easy to alternate between them with you want to hide or show equation numbers.
– Sigur
Mar 24 '22 at 12:58
\mathcal{T}and\mathcal{S}. – Teddy van Jerry Mar 24 '22 at 12:30