答案1
答案2
如果您不介意使用 TikZ,这里有一个临时解决方案。否则,您可以使用ifsym
@egreg 指出的包,但是文档是德语的。
\documentclass{article}
\usepackage{tikz,amsmath}
\begin{document}
\newcommand{\pulse}{%
\begin{tikzpicture}[line width=.7pt,scale=.3]
\draw (0,0)--++(.3,0)--++(0,.5)--++(.5,0)--++(0,-.5)--++(.3,0);
\end{tikzpicture}
}
\begin{equation}
E_\text{dyn}=V_\text{DD}\int\limits_{\pulse} I_\text{tot}(t)-P_\text{stat}\cdot T
\end{equation}
\end{document}
答案3
您可以使用ifsym
包(但它只提供位图字体)或自己绘制符号。下面的公式 (1) 显示手工制作的符号,公式 (2) 使用ifsym
。如果您采用方法 (1),则ifsym
无需加载,但pict2e
可以。
需要注意的是,提供的符号ifsym
是文本,因此如果在数学中使用,它们必须被 包围\text
。
\documentclass{article}
\usepackage{amsmath}
\usepackage{pict2e}
\usepackage[electronic]{ifsym}
\DeclareRobustCommand{\pulse}{%
\text{%
\settoheight{\unitlength}{T}%
\begin{picture}(2.2,1)
\roundcap
\polyline(0.1,0)(0.6,0)(0.6,1)(1.6,1)(1.6,0)(2.1,0)
\end{picture}%
}%
}
\begin{document}
\begin{equation}
E_{\mathrm{dyn}} =
V_{\mathrm{DD}}\int\limits_{\pulse} I_{\mathrm{tot}}(t)\,dt
- P_{\mathrm{stat}}\cdot T
\end{equation}
\begin{equation}
E_{\mathrm{dyn}} =
V_{\mathrm{DD}}\int\limits_{\text{\PulseHigh}} I_{\mathrm{tot}}(t)\,dt
- P_{\mathrm{stat}}\cdot T
\end{equation}
\end{document}