如何在 Latex 中绘制 y = x/x 的图形

如何在 Latex 中绘制 y = x/x 的图形

我一直无法找到一个看似简单的问题的答案,即如何将函数 f(x) = x/x 绘制为Tikz图片,用空心圆标识缺失点 (0, 1),并适当地标记 x 轴和 y 轴。

有人可以帮忙吗?

谢谢。

答案1

更新:有关更通用的解决方案,请参阅这个答案

您只需在适当的坐标处覆盖​​一个小圆圈:

在此处输入图片描述

我在圆圈后绘制了轴,以使 y 轴在洞内可见。

\documentclass{article}

\usepackage{tikz}

\begin{document}

\begin{tikzpicture}
  \draw[line width=1] (-3,1) -- (3,1);
  \draw[line width=1,fill=white] (0,1) circle (.8mm);
  \draw[->] (-3, 0) -- (3, 0) node[right] {$x$};
  \draw[->] (0, -3) -- (0, 3) node[above] {$y$};
  \node at (2,1.4) {$f(x)=\frac{x}{x}$};
  \node[below left] at (0,0) {0};
  \node[below left] at (0,1) {1};
\end{tikzpicture}

\end{document}

答案2

\documentclass[border=1 cm,tikz]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}
  \addplot[blue, thick,  mark=none] {x/x};
  \draw[blue, thick, fill=white] (0,1) circle[radius=2pt];
\end{axis}
\end{tikzpicture}
\end{document}

用圆圈绘制

相关内容