未找到绘图数据文件“graficas.tkzfonct.table”

未找到绘图数据文件“graficas.tkzfonct.table”
\documentclass[11pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage[spanish]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{color}
%\usepackage{tikz} % no need !
\usepackage{tkz-fct}

\usepackage[left=1.1cm,right=1.1cm,top=1cm,bottom=1.3cm]{geometry}
\author{Segundo H. Chiroque Reyes}
\title{Gráfica de funciones}
\date{}

\usepackage{amsthm}
\theoremstyle{definition}
\newtheorem{miproblema}{\fbox{\textcolor{blue}{\textbf{PROBLEMA}}}}
\renewcommand{\labelenumi}{\bf{\arabic {enumi}}.}

\begin{document}
\begin{center}
\hspace*{+4cm}\fbox{\textbf{ Gráfica de funciones}}
\end{center}

\begin{enumerate}

\item primera gráfica

\begin{tikzpicture}[scale=1.25]
\tkzInit[xmin=-5,xmax=5,ymax=2]
\tkzGrid
\tkzAxeXY
\tkzFct[color=red]{2*x**2/(x**2+1)}
\end{tikzpicture}

\item segunda gráfica

\begin{tikzpicture}[scale=1.25]
\tkzInit[xmin=-5,xmax=5,ymax=2]
\tkzGrid
\tkzAxeXY
\tkzFct[color=red]{x**2+1}
\end{tikzpicture}

\end{enumerate}
\end{document}

当我编译时,我收到以下消息:

Plot data file `graficas.tkzfonct.table` not found.
Plot data file `graficas.tkzfonct.table` not found.

我只得到了笛卡尔平面,没有图形。

相关内容