我想让两个平方根的底部对齐,但我不知道该怎么做。我尝试使用命令\strut
,但似乎没有效果。
这是我的代码:
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
% BEGIN EQUATION MODE WITH LABEL
\newcommand{\beql}[1]{\begin{equation}\label{#1}}
% END EQUATION MODE WITH A PERIOD
\newcommand{\eeqp}{\;\;\;.\end{equation}}
\beql{Qt}Q=\frac{1}{R}\sqrt{\frac{L}{C}}\frac{1}{\sqrt{1+\frac{4L}{CR^2}}}\eeqp
答案1
我建议您 (a) 在第三个分母项中切换到内联分数符号,以及 (b)\myphantom
在前两个分母项中插入指令,其中\myphantom
定义如下:
\newcommand\myphantom{\vphantom{\sqrt{R^2}}}
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath,amssymb}
\newcommand\myphantom{\vphantom{\sqrt{R^2}}}
\setlength\textwidth{3in}
\begin{document}
Before:
\begin{equation}
Q=\frac{1}{R} \sqrt{\frac{L}{C}} \frac{1}{\sqrt{1+\frac{4L}{CR^2}}}
\end{equation}
After:
\begin{equation}
Q=\frac{1}{R\myphantom} \sqrt{\frac{L}{C\myphantom}}\, \frac{1}{\sqrt{1+4L/(CR^2)}}
\end{equation}
\end{document}