Tagged Questions
2
votes
0answers
94 views
no output with \usepackage{emp} [closed]
I'm trying to embed MetaPost graphics inside a LaTeX file using the emp package, with pdflatex.
When I include the line:
\usepackage{emp} %part 1
pdflatex doesn't produce any output (it says 0 ...
3
votes
2answers
200 views
Too many compiles when using latexmk with mpgraphics
\documentclass{article}
\usepackage{mpgraphics}
\begin{document}
\begin{figure}
.
\label{fig:a}
\caption{a}
\end{figure}
\begin{mpinline}
draw (20,20)--(0,0)--(0,30)--(30,0)--(0,0)
\end{mpinline}
...