数学等式:我的代码有什么问题?(初学者问题)

数学等式:我的代码有什么问题?(初学者问题)
    \documentclass{article}
    \usepackage{amsmath}
    
    \begin{document}
    
    \begin{equation}
    w_{n} = \frac{1}{N_{d}} \sqrt{\frac{2\epsilon_{s}V_{bi}}{q(\frac{1}{N_{a}} + \frac{1}{N_{d}})}
    \end{equation}
    
    \end{document}

有人能帮我找出错误出在哪里吗?我花了很长时间才弄清楚为什么它无法在 Overleaf 中正确编译。它只是在我的文档中返回一个空白区域。

答案1

\documentclass{article}

\begin{document}
    \begin{equation}
        w_{n} = \frac{1}{N_d}\sqrt{\frac{2\epsilon_{s}V_{bi}}{q\left( \frac{1}{N_a} + \frac{1}{N_d}\right)}}
    \end{equation}
\end{document}

在此处输入图片描述

相关内容