Say I have some PGF plot, which uses some custom plot markers, for instance:
\newcommand{\scaleofcirc}{0.85}
\pgfdeclareplotmark{manualcirc}
{
\pgfpathmoveto{\pgfpoint{\pgfplotmarksize*\scaleofcirc}{0pt}}
\pgfpatharc{0}{360}{\pgfplotmarksize*\scaleofcirc}
\pgfpathclose
\pgfusepathqfill
}
For some reason, I want to typeset the plot marker separately, so not as part of a plot, in a latex document. It should be typeset as part of some text.
What is the best way to achieve this?
\pgfuseplotmark{<name>}– Gonzalo Medina May 22 '13 at 13:34tikzpicture, you can use the command Gonzalo mentioned like so:\tikz \pgfuseplotmark{*};. Maybe you're looking for something like the PGFPlots\labeland\reffunctionality, though: How to reuse the plotmark styles from pgfplots? That way, the plot mark style will be synchronised with the style of the plot in theaxisenvironment (if you change the color, say). – Jake May 22 '13 at 13:59