如何在乳胶中绘制函数?例如,如果我只是想在第一象限绘制一个递减函数,比如 f(x)= 1/x,并绘制虚线连接 (2,0) 到 (2,1/2) 和实线连接 (2,1/2) 到 (0,1/2)。
答案1
最好的学习方法是实验,你可以尝试使用 tikz 和 pgfplots:
\usepackage{pgfplots}
\pgfplotsset{compat = newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xmin = 0, xmax = 30,
ymin = 0, ymax = 2.0]
\draw [dashed] (2, 0) -- (2, 0.5);
\draw (2, 0.5) -- (0, 0.5);
\addplot[
domain = 0:30,
samples = 100,
smooth,
thick,
] {1/x};
\end{axis}
\end{tikzpicture}
\end{document}