我刚刚开始使用 LaTeX,从未在其中创建过图表(只在 R 中有一些绘图经验)。现在我的任务是为 f(x) = x-[x] 创建图形,其中 [] 是高斯括号,这意味着 [x] 是不超过 x 的最大整数。我该如何在 LaTeX 中创建该图表?提前感谢您的回答。(我已经知道图表在纸上应该是什么样的)。顺便说一句。我正在使用 Texmaker。
答案1
这是一个非常简短的代码pstricks
:
\documentclass[border =6pt, svgnames]{standalone}
\usepackage{pstricks-add,}
\usepackage{auto-pst-pdf}
\begin{document}
\psset{unit=15mm, algebraic, arrows=*-o, showorigin=false}
\begin{pspicture}*(-3.6,-1.6)(4,2)
\psaxes[linecolor=LightSteelBlue, tickcolor=LightSteelBlue]{->}(0,0)(-3.9,-1.9)(4,2)[$ x $,-120][ $ y $,-130]
\multido{\i =-4 + 1}{8}{\psplot[linecolor=IndianRed]{\i}{\pscalculate{\i+0.99}}{x-floor(x)}}
\end{pspicture}
\end{document}