\documentclass{article}
\usepackage{tikz}
\usepackage{mathtools}
\usepackage{pgfplots}
\pgfplotsset{compat=1.15}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis}[
domain= 0:2,
title= Grafica en LaTex,
xlabel=$eje x$
ylabel=$Eje y$
ymin=1, ymax=14,
xmin=1, xmax=1.92,
]
\addplot{(x^{\frac{5}{2}}) + (3x^{\frac{13}{10}}) +2};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
我不断得到"Undefined control sequence.", "! File ended while scanning use of \pgfmath@dimen@@."
答案1
pgfplots
不使用 TeX 符号\addplots
。
改为使用:\addplot{x^(5/2) + 3*x^(13/10) + 2};
(附言:您在 the 之前和之后都漏掉了一个逗号ylabel
。)