Graphics, Figures & Tables ⇒ Pstricks nodes in color
Pstricks nodes in color
I would like to fill my nodes with color. I guess I could use pscircle, but that means I have to define a node AND a circle for each node, which gets very messy.
So far, I have this:
\cnodeput(0,0){A}{A}
and I'd like to have something like this:
\cnodeput[fillcolor=blue](0,0){A}{A}
Is there any way to get that?
Thanks!
Thomas
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Pstricks nodes in color
So this works:
\cnodeput[fillstyle=solid,fillcolor=lightgray](0,0){B}{B}
Tom