
Recibo el siguiente error al compilar el script de texto mínimo adjunto al final de esta publicación:
(/texmf/tex/generic/libraries/pgflibraryplothandlers.code.tex
! Undefined control sequence.
l.24 \pgfdeclareplothandler
{\pgfplothandlercurveto}{}{%
¿Alguien sabe cómo solucionar este problema?
Gracias de antemano,
gf7
muestra mínima de tex:
\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\usetheme{Madrid}
\setbeamercovered{transparent}
\title{title}
\author[M]{M}
\begin{document}
\begin{frame}
\frametitle{title}
\begin{tikzpicture}
\draw[->](0.5,0.5) -- (0,0);
\end{tikzpicture}
\end{frame}
\end{document}