提问于:
浏览数:
2101
## 编译环境
操作系统
* [x]Windows 7/8/10
* [ ] macOS
* [ ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [ x] TexLive `年份`
* [ ] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
## 我的问题
```
\documentclass[border=10pt]{standalone}
\usepackage{tikz,tikz-3dplot}
\usetikzlibrary{calc,arrows.meta}
\begin{document}
\begin{tikzpicture}[domain=0:4]
\draw[very
thin,color=gray] (-0.1,-1.1) grid (3.9,3.9);
\draw[->] (-0.2,0) -- (4.2,0) node[right] {$x$};
\draw[->] (0,-1.2) -- (0,4.2) node[above] {$f(x)$};
\draw[color=red] plot ({tan(\x r)},\x) node[right] {$f(x) =\arctan x$};
\draw[color=blue] plot (\x,{sin(\x r)}) node[right] {$f(x) = \sin x$};
\draw[color=orange] plot (\x,{0.05*exp(\x)})
node[right] {$f(x) = \frac{1}{20} \mathrm e^x$};
\end{tikzpicture}
\end{document}
```
2 回答
0
`\begin{tikzpicture}[domain=0:4]` 加一个 `\begin{tikzpicture}[scale=.3,domain=0:4]` 看看效果。
-
没有用 – 燚淼 2020-09-21 17:39 回复
0
`\draw[color=red] plot ({tan(\x r)},\x) node[right] {$f(x) =\arctan x$};`改成
`\draw[color=red,domain=-1.3:1.3] plot ({tan(\x r)},\x) node[right] {$f(x) =\arctan x$};`
注意一下正切函数的定义域和值域
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。