不知道如何在背面的圖形上放置開區間

不知道如何在背面的圖形上放置開區間

我一直在努力處理圖表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。另外,您還缺少一個分號。

IIRC,開放點以圓圈標示。我使用獨立類別來避免裁剪圖像。

\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}

示範

相關內容