사이에 한 줄 또는 두 줄의 명령문이 있는 '=' 기호에 대해 번호가 없는 방정식을 정렬하고 싶습니다. 그리고 나는 그들이 중앙에 있기를 원합니다. 내 코드에서 수행한 작업은 다음과 같습니다.
\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
해결책은 이미 댓글에 언급되어 있습니다. siunitx
여기에 숫자를 더 잘 인쇄하고 단위 간격을 올바르게 지정하는 훌륭한 패키지를 소개했습니다 . 나는 또한 당신을 위해 두 개의 새로운 유닛을 선언했습니다. 나중에 무엇 \text{sabine}
이든 해야 한다고 결정한 경우 \mathscr{S}
단 한 번의 편집으로 전체 문서에 대해 이를 변경할 수 있습니다.
% 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}