나는 그래프를 다루면서 어려움을 겪었습니다 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}