我正在尝试定性地描述一个方程,并希望通过使用所涉及函数的小图片来实现。
因此,我正在寻找字形或绘制正弦波、高斯、逻辑(或 S 型)函数和阶跃函数的可爱小图形的方法。
有什么想法吗?
答案1
您可以在单独的文档中绘制这些函数,如下所示:
\documentclass{article}
\usepackage{tikz}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\begin{document}
\begin{tikzpicture}[scale=0.1]
\draw plot [domain=0:2*pi](\x, {sin(\x r)});
\end{tikzpicture}
\end{document}
我会使用类似这样的命名方案img_sin.tex
。然后您可以轻松地将它们包含在内:
\documentclass{article}
\usepackage{graphicx}
\newcommand\splot[1]{\includegraphics{img_#1}}
\begin{document}
The sinus looks like \splot{sin}.
\end{document}
当然,你可以按照自己的喜好把情节设计得尽可能精美。
请注意,我选择了固定的缩放比例,0.1
这个比例对我来说看起来不错。在包含时,可能可以将图像缩放到当前字体高度,但我不确定如何做到这一点。