답변1
다음과 같은 것이 마음에 드시나요?
\documentclass{article}
\usepackage{mathtools,array}
% for show equation only
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{equation}
\setlength\PreviewBorder{1em}
\begin{document}
\begin{equation}
\left[\begin{tabular}{@{}>{$}c<{$}@{}}
\dfrac{\left(\vec{A} - \dfrac{b}{c}\vec{D}\right)}{E^2}
\end{tabular}\right]^{1/2}
\end{equation}
\end{document}
부록:tabular
환경 대신 array
사용되는 경우 더 간단한 코드는 다음과 같습니다.
\begin{equation}
\left[\begin{array}{@{} c @{}
}
\dfrac{\left(\vec{A} - \dfrac{b}{c}\vec{D}\right)}{E^2}
\end{array}\right]^{1/2}
\end{equation}
결과는 이전과 동일합니다.
답변2
로 할 수 있지만 delarray
제가 제안하는 두 번째 방법이 훨씬 더 낫다고 생각합니다.
\documentclass{article}
\usepackage{amsmath}
\usepackage{delarray}
\begin{document}
Here's a fraction with very large numerator
\begin{equation*}
\begin{array}\lbrack{@{}c@{}}\rbrack
\dfrac{\left(\vec{A} - \dfrac{b}{c} \vec{D} \right)^2}{E^2}
\end{array}^{1/2}
\end{equation*}
but it's much better to write it in a different way
\begin{equation*}
\left[\frac{1}{E^2}\left(\vec{A} - \frac{b}{c} \vec{D} \right)^2\right]^{1/2}
\end{equation*}
so the terms are better aligned with the formula axis.
\end{document}