分母中平方根旁边包含分数的平方根的对齐问题

分母中平方根旁边包含分数的平方根的对齐问题

我想让两个平方根的底部对齐,但我不知道该怎么做。我尝试使用命令\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 

这是它的输出。你可以看到这个等式看起来有多奇怪。 Q 因子

答案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}

相关内容