|
To get the YingYang-Symbol

you can use the marvosym package and enlarge the single symbols with
{\fontsize{120pt}{120pt}\selectfont \Yinyang}
Another way is to use the package pstricks and to draw
it with PostScript-commands:
in preamble write
\usepackage{pstricks}
\pagestyle{empty}
% From: Thomas Siegel
% Date: Sat, 05 Jul 1997 13:13:03 +0200
\def\YY{%
\pspicture(4,4)
\pscustom*{%
\psarc(2,3){1}{270}{450}
\psarc(2,2){2}{90}{270}
\psarcn(2,1){1}{270}{450}}
\psarc[linewidth=0.5\pslinewidth](2,2){2}{270}{450}
\pscircle*(2,1){0.15}
\pscircle*[linecolor=white](2,3){0.15}
\endpspicture}
and then use it f.ex. with {\psset{unit=4}\YY}
|