我正在尝试绘制曲线
\frac{1}{x - 1}
我的代码如下:
\documentclass[11pt]{article}
\usepackage{amsmath}
\usepackage{color}
\usepackage[left=1.5in,right=1.5in,top=0.5in,bottom=0.5in,
footskip=0in]{geometry}
\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\draw [red] (0,0) plot [domain=0.5:4] (\x,1/(\x-1));
\end{tikzpicture}
\end{document}
这将引发一个错误。
如果我这样写:
\begin{tikzpicture}
\draw [red] (0,0) plot [domain=0.5:4] (\x,1/x);
\end{tikzpicture}
没关系。它可以处理这个。
错误信息是:
软件包 tikz 错误:放弃此路径。您忘记了分号吗?... plot [domain=0.5:4] (\x,1/(\x-1))
知道发生什么事了吗?
答案1
问题在于双括号。您应该将表达式放在 内{}
。然后将 (x-1) 放在括号内,因此最终\begin{tikzpicture}
输入应如下所示:
\begin{tikzpicture}
\draw [red] (0,0) plot [domain=0.5:4] (\x, {1/(\x-1)});
\end{tikzpicture}