如何使用 tikzpicture 环境绘制函数 abs(x)^3-abs(x) 的绝对值

如何使用 tikzpicture 环境绘制函数 abs(x)^3-abs(x) 的绝对值

我尝试在 tikpicture 框架中绘制函数 abs(x)^3-abs(x),但是运行文件给了我错误的图形。

答案1

嘿,欢迎来到 TeX SE,我知道你是新手,你很快就通过了一开始的教程,但这里的一个重要规则是提供一个最小工作示例,但没关系(至少对我来说):

TikZ 包提供了一个很好的命令来绘制函数,正如你可能已经猜到的那样plot,我们使用它如下来绘制你的函数图:

\documentclass[tikz, border=30mm]{standalone}
\usepackage{tikz} %you can skip this line since I already declared TikZ before (but my guess is you'll copy this without reading it)
\usepackage{amsmath, amsfonts} 

\begin{document}
\begin{tikzpicture}[>=stealth]
\draw[->] (-4,0)--(4,0) node[above] {$x$};
\draw[->] (0,-2)--(0,5) node[left] {$y$};
\draw[thick, blue, samples=300, variable=\t, domain=-1.8:1.8] plot(\t,{(abs(\t))^3-abs(\t)}) node[right] {$(\mathcal{C}_f)$};
\node[blue] at (3.5,-1) {$f : x\longmapsto \vert x\vert^3 -\vert x\vert$};
\end{tikzpicture}
\end{document}

结果如下:

在此处输入图片描述

祝你今天过得愉快 !

相关内容