我怎样才能将文本置于不等式中间?目前看来,它们是右对齐的。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{aligned}
15 &\leq &C &\leq 25 \\
(\frac{9}{5}) 15 &\leq &(\frac{9}{5}) C &\leq (\frac{9}{5}) 25 \\
27 &\leq &(\frac{9}{5}) C &\leq 45 \\
27 + 32 &\leq &(\frac{9}{5}) C + 32 &\leq 45 + 32 \\
59 &\leq &F &\leq 77
\end{aligned}
\]
\end{document}
答案1
使用array
环境可能是可行的方法。
\documentclass{article}
\usepackage{array}
\newcolumntype{L}{>{\displaystyle}l}
\newcolumntype{R}{>{\displaystyle}r}
\newcommand\ninefive{\Bigl(\frac{9}{5}\Bigr)} % shortcut macro
\begin{document}
\[
\setlength\arraycolsep{0pt}
\renewcommand\arraystretch{2}
\begin{array}{R @{{}\le{}} LL @{{}\le{}} L}
15 & & C & 25 \\
\ninefive 15 & \ninefive & C & \ninefive 25 \\
27 & \ninefive & C & 45 \\
27 + 32 & \ninefive & C + 32 & 45 + 32 \\
59 & & F & 77
\end{array}
\]
\end{document}