在 LaTeX 中绘制简单的线性函数:

在 LaTeX 中绘制简单的线性函数:

作为一项作业,我要解释外延量:{x | x ∈ N og x < 10},我希望证明它可以组合起来写出函数 f(x) < 10:并将其绘制在数轴图上。我是 LaTeX 新手,我很挣扎。除了尝试使用 pgfplots 包之外,我不知道从哪里开始。

该图像就是我想要的样子。

答案1

这是我使用的方法tikz

轴

\documentclass[border=5pt]{standalone}

\usepackage{tikz}

\begin{document}
    \begin{tikzpicture}
        
        \draw[stealth-] (-10.5,0) -- (10,0);
        \foreach \x in {-10,...,10}{
            \draw (\x,-2pt) node[below] (p-\x) {} -- (\x,2pt);
        }
        \foreach \x in {-10,-5,0,5,10}{
            \draw (\x,-4pt) node[below] {\x} -- (\x,4pt);
        }
        \draw[cyan,-stealth,line width=2pt] (-2,0) -- (10.5,0);
        \draw[cyan,line width=2pt, fill=white] (-2,0) circle[radius=2pt]; 
    \end{tikzpicture}
\end{document}

相关内容