[Tex/LaTex] How to turn off “fill” mode in TikZ within the one command

tikz-pgf

I want to draw an ellipse and its centre point in the one command, like so:

\draw (1,0) [fill] circle (1mm) node[below]{$1$} ellipse (5 and 2);

I want the centre point filled but not the ellipse. Perhaps I could draw the ellipse first and then activate the [fill] option but is there a command like [nofill] to turn off filling before tikz draws the ellipse?

Best Answer

According to the manual (p. 136) you can use [fill=none] in this way.

\draw (1,0) [fill] circle (1mm) node[below]{$1$} [fill=none] ellipse (5 and 2);

I haven't tried it myself, though.

Related Question