Dave94705
unread,Dec 9, 2015, 9:11:16 PM12/9/15You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
After making sure I am fully up to date according to MiKTeX' updating module, I LaTeX PDFed:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{datavisualization, datavisualization.formats.functions}
\usepackage{animate}
\begin{document}
\begin{tikzpicture}[domain=0:4]
\draw[very thin,color=gray] (-0.1,-1.1) grid (3.9,3.9);
\draw[->] (-0.2,0) -- (4.2,0) node[right] {$x$};
\draw[->] (0,-1.2) -- (0,4.2) node[above] {$f(x)$};
\draw[color=red] plot[id=x] function{x} node[right] {$f(x) =x$};
\draw[color=blue] plot[id=sin] function{sin(x)} node[right] {$f(x) = \sin x$};
\draw[color=orange] plot[id=exp] function{0.05*exp(x)} node[right] {$f(x) = \frac{1}{20} \mathrm e^x$};
\end{tikzpicture}
\end{document}
and got the below error and crash
Package: ocgbase 2015/11/26 v0.4 support package for ocgx2.sty
(C:\Users\David\AppData\Roaming\MiKTeX\2.9\tex\latex\media9\pdfbase.sty
(C:\Users\David\AppData\Roaming\MiKTeX\2.9\tex\latex\l3experimental\l3str\l3reg
ex.sty
LaTeX Warning: You have requested, on input line 48, version
`2015/11/04' of package expl3,
but only version
`2015/03/01 v5547 L3 programming layer (loader) '
is available.
! Package l3regex Error: Support package l3kernel too old.
I assume if I wait awhile this should be solved, but thought I should note it in case others are having similar problems. ds