我一直在努力绘制图表f(x)=(x^2-4)/(x-2)
,我知道 等于f(x)=x+2
,但当 时它是未定义的x=2
,其中应该有一个开区间。我不确定如何将开区间指示放置在 位置x=2
。我尝试编写的代码是:
\documentclass{article}
\usepackage{tikzpicture}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
axis lines = middle,
xlabel = \(x\),
ylabel = {\(y\)},
]
\addplot [
domain=-5:5,
samples=100,
color=red,
]
{x+2}
\end{axis}
\end{tikzpicture}
\end{document}
我正在寻求帮助以了解如何做到这一点。
答案1
轴环境来自 pgfplots。另外,你漏了一个分号。
我记得,开放点用圆圈标记。我使用独立类来避免裁剪图像。
\documentclass{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[ axis lines = middle, xlabel = (x), ylabel = {(y)}, ]
\addplot [ domain=-5:5, samples=100, color=red, ] {x+2};% samples=2 would do
\path (axis cs: 2,4) node[circle, draw, inner sep=1pt, fill=white] {};
\end{axis}
\end{tikzpicture}
\end{document}