12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- % These macros are for the TestamenTeX %
- % Written by Sam Flint, 2013. %
- % This is placed into the public domain, in the spirit of %
- % TeX itself, and for the benefit of all. %
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- \font\mainfont=cmr10
- \font\chheadfont=cmssbx10
- \font\bkheadfont=cmssbx10 scaled \magstep2
- \font\titlefont=cmti10 scaled \magstep4
- % Setup count registers
- % chapter
- \count10=0
- % verse
- \count11=0
- % book
- \count12=0
- % Macros
- %eject to odd
- \def\ejtoodd#1{\ifodd\count0\null\break\eject\null\break\eject\else\null\break\eject\fi}
- %title
- \def\title#1{\centerline{\titlefont #1}\vskip 26pt \centerline{\bkheadfont \versionname}\eject}
- %version
- \def\version#1{\def\versionname{The #1 Version}}
- %testament
- \def\testament#1{\ejtoodd{}\rightline{\titlefont The #1 Testament}\eject\count12=0}
- %book
- \def\book#1{}
- %chapter
- \def\chapter#1{}
- %verse
- \def\verse{}
- %emphasis
|