tikz plot 命令的困难

tikz plot 命令的困难

我写了这个;

\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}

\begin{document}
 
\begin{center}
\begin{tikzpicture}[scale=1.5]
\draw[->,line width=1pt] (-2,0)--(2,0) node[right]{$y$}; 
\draw[->,line width=1pt] (0,-2)--(0,2) node[above]{$f(y)$};
\draw[blue,line width=1pt,domain=-2:2, samples=100] plot(\x,\x^2);
\end{tikzpicture}
\end{center} 
 
\end{document}

但我得到了这张图片:

在此处输入图片描述

我做错了什么?请使用 tikz,而不是 pgfplots 和其他。

谢谢,

大卫

答案1

尝试这个:

\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}

\begin{document}

\begin{center}
  \begin{tikzpicture}[scale=1.5]
    \draw[->,line width=1pt] (-2,0)--(2,0) node[right]{$y$}; 
    \draw[->,line width=1pt] (0,-2)--(0,2) node[above]{$f(y)$};
    % \draw[blue,line width=1pt,domain=-2:2, samples=100] plot(\x,\x^2);
    \draw[blue,line width=1pt,domain=-2:2, samples=100] plot(\x,{(\x)^2});
  \end{tikzpicture}
\end{center} 

\end{document}

在此处输入图片描述

相关内容