裏表紙のグラフに開区間を置く方法が分からない

裏表紙のグラフに開区間を置く方法が分からない

私はグラフ に苦労しています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

axis 環境は 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}

デモ

関連情報