在方程中使用 amssymb 包中的 \diameter 获取错误

在方程中使用 amssymb 包中的 \diameter 获取错误

我想添加直径符号,如那里所述维基百科上的直径在我的等式中:

begin{equation} 
\diameter~Aufwand~in~\% = \frac{\diameter~Aufwand~in~ZE~f"ur~die~Testt"atigkeit}{\diameter~Aufwand~in~ZE~f"ur~die~Entwicklung} 
\label{equ:Durchschnittlicher-Aufwand}
\end{equation} \par

因此我使用了那里描述的包使用包

\usepackage{amsmath,amsthm,amssymb}

我遇到过 3 次这样的错误:

! undefined control sequence
l.XX \diameter

您能给我一些提示吗?我应该改变什么或者可能存在什么问题?我不知道……

答案1

另请注意Tanvir 在评论中wasysym包定义了该\diameter命令。为了使用此命令,您必须加载该包。

在下面的小例子中,我还更正了等式内的文本。您无需手动添加空格,而应将文本放在里面\text{...}

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath,amsthm,amssymb}
\usepackage{wasysym} % for the diameter command 
\begin{document}

\begin{equation} 
\text{\diameter\ Aufwand in \%} = \frac{\text{\diameter\ Aufwand in ZE für die Testtätigkeit} }{\text{\diameter\ Aufwand für die Entwicklung}} 
\label{equ:Durchschnittlicher-Aufwand}
\end{equation}

\end{document}

相关内容