番号なしの方程式を、間に 1 行または 2 行のステートメントがある「=」記号の周りに揃えたいです。また、それらを中央揃えにしたいです。コードで行った操作は次のとおりです。
\begin{align*}
T & = \frac{0.161V}{\sum as}\\
\sum as & = \frac{0.161V}{T}\\
\end{align*}
Substituting the known values, we get,\\
\begin{align*}
\sum as & = \frac{0.161 \times 120000}{1.5}\\
\sum as & = 13360 \text{ O W U}
\end{align*}
The total absorption of the hall is 13,360 open window units (O W U)\\
Therefore, the average absorbing power of the surface\\
\begin{align*}
a & = \frac{\sum as}{\sum s}\\
\implies a & = \frac{13360}{25000}\\
\implies a &=0.5344 \text{sabine}
\end{align*}
The average absorbing power of the surface is 0.5344 sabine.
上記のコードでは、等号が揃っていない出力が生成されます。等号を中央揃えにしたいです。また、方程式はステートメントの次の行にあります。等号を 1 行に収めたいです。助けてください。
答え1
解決策は既にコメントに記載されています。siunitx
ここでは、数字をよりきれいに印刷し、単位の間隔を正しくする優れたパッケージを紹介しました。また、2 つの新しい単位も宣言しました。後で、これ\text{sabine}
を にする\mathscr{S}
などと決めた場合は、1 回の編集でドキュメント全体を変更できます。
% arara: pdflatex
\documentclass{article}
\usepackage{mathtools}
\usepackage{siunitx}
\DeclareSIUnit{\sabine}{\text{sabine}}
\DeclareSIUnit{\owu}{\text{OWU}}
\begin{document}
\begin{align*}
T &= \frac{0.161 V}{\sum as}\\
\sum as &= \frac{0.161 V}{T}\\
\intertext{Substituting the known values, we get,}
\sum as &= \frac{0.161 \times 120000}{1.5}\\
\sum as &= \SI{13360}{\owu}
\intertext{The total absorption of the hall is \num{13360} open window units (\si{\owu}).
Therefore, the average absorbing power of the surface is:}
a & = \frac{\sum as}{\sum s}\\
\smashoperator{\implies} a &= \frac{13360}{25000}\\
\smashoperator{\implies} a &= \SI{0.5344}{\sabine}
\end{align*}
The average absorbing power of the surface is \SI{0.5344}{\sabine}.
\end{document}