summaryrefslogtreecommitdiff
path: root/info/examples/tex-in-practice/yearcal.tip
diff options
context:
space:
mode:
Diffstat (limited to 'info/examples/tex-in-practice/yearcal.tip')
-rw-r--r--info/examples/tex-in-practice/yearcal.tip67
1 files changed, 67 insertions, 0 deletions
diff --git a/info/examples/tex-in-practice/yearcal.tip b/info/examples/tex-in-practice/yearcal.tip
new file mode 100644
index 0000000000..c9ce2d2b18
--- /dev/null
+++ b/info/examples/tex-in-practice/yearcal.tip
@@ -0,0 +1,67 @@
+% This macro source file is from the four volume series
+% "TeX in Practice" by Stephan von Bechtolsheim, published
+% 1993 by Springer-Verlag, New York.
+% Copyright 1993 Stephan von Bechtolsheim.
+% No warranty or liability is assumed.
+% This macro may be copied freely if no fees other than
+% media cost or shipping charges are charged and as long
+% as this copyright and the following source code itself
+% is not changed. Please see the series for further information.
+%
+% Version: 1.0
+% Date: May 1, 1993
+%
+%
+% This source code is documented in 26.21, p. III-390.
+% Original source in file "macros6.TEX", starting line 1540.
+\wlog{L: "yearcal.tip" ["macros6.TEX," l. 1540, p. III-390]}%
+% This file DOES belong to format "texip."
+\InputD{mocal.tip}
+\def\YearlyCalendar #1#2#3{%
+ \vbox{%
+ \dimen0 = #2\relax
+ \ifdim\dimen0 = 0.0pt
+ \dimen0 = \hsize
+ \fi
+ \dimen1 = #3\relax
+ \ifdim\dimen1 = 0.0pt
+ \dimen1 = \dimen0
+ \divide\dimen1 by 3
+ \advance\dimen1 by -5pt
+ \fi
+ \hsize = \dimen0
+ \centerline{\Large\bf Year #1}
+ \bigskip
+ \line{%
+ \MonthlyCalendar{#1}{1}{\dimen1}%
+ \hfil
+ \MonthlyCalendar{#1}{2}{\dimen1}%
+ \hfil
+ \MonthlyCalendar{#1}{3}{\dimen1}%
+ }%
+ \bigskip
+ \line{%
+ \MonthlyCalendar{#1}{4}{\dimen1}%
+ \hfil
+ \MonthlyCalendar{#1}{5}{\dimen1}%
+ \hfil
+ \MonthlyCalendar{#1}{6}{\dimen1}%
+ }%
+ \bigskip
+ \line{%
+ \MonthlyCalendar{#1}{7}{\dimen1}%
+ \hfil
+ \MonthlyCalendar{#1}{8}{\dimen1}%
+ \hfil
+ \MonthlyCalendar{#1}{9}{\dimen1}%
+ }%
+ \bigskip
+ \line{%
+ \MonthlyCalendar{#1}{10}{\dimen1}%
+ \hfil
+ \MonthlyCalendar{#1}{11}{\dimen1}%
+ \hfil
+ \MonthlyCalendar{#1}{12}{\dimen1}%
+ }%
+ }
+}