1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
% Load the fonts
\newfont\twentyfiveastro{cmastro10 scaled \magstep5}
\newfont\twentyastro{cmastro10 scaled \magstep4}
\newfont\seventeenastro{cmastro10 scaled \magstep3}
\newfont\fourteenastro{cmastro10 scaled \magstep2}
\newfont\twelveastro{cmastro10 scaled \magstep1}
\newfont\elevenastro{cmastro10 scaled \magstephalf}
\newfont\tenastro{cmastro10}
\newfont\nineastro{cmastro9}
\newfont\eightastro{cmastro8}
\newfont\sevenastro{cmastro7}
\newfont\sixastro{cmastro6}
\newfont\fiveastro{cmastro5}
\def\Sun{\astro S} % Sun symbol, "S"
\def\Mercury{\astro 1} % Mercury symbol, "1"
\def\Venus{\astro 2} % Venus symbol, "2"
\def\Earth{\astro 3} % Earth symbol, "3"
\def\Mars{\astro 4} % Mars symbol, "4"
\def\Jupiter{\astro 5} % Jupiter symbol, "5"
\def\Saturn{\astro 6} % Saturn symbol, "6"
\def\Uranus{\astro 7} % Uranus symbol, "7"
\def\Neptune{\astro 8} % Neptune symbol, "8"
\def\Pluto{\astro 9} % Pluo symbol, "9"
\def\Moon{\astro M} % Moon symbol, "M"
\def\ascnode{\astro N} % ascending node (dragon's head),
\def\descnode{\astro D} % descending node (dragon's tail),
\def\VE{\astro V} % vernal equinox (Aries), "V"
\def\AE{\astro L} % autumnal equinox (Libra), "L"
\def\circ{\astro\char'16} % circle, replacing the one in \sy
|