* last modifed (y/m/d): 2012/3/9 , To top page of latex file archive , To N. Tajima's Home Page in English or Japanese

月間カレンダーを作るために必要なファイルmonthlycalendar_input.tex(cut and pasteして御利用下さい)

% This is an input data file (a prototype of a latex source file)
% for a perl script monthlycalendar.pl to produce a monthly calendar
% latex source file.
% 04/4/19,11/22,12/10,08/7/29,10/5/25,12/3/8
\documentstyle[12pt]{article}
\topmargin=-30mm
\oddsidemargin=-5mm
\evensidemargin=-5mm
\textheight=280mm
\textwidth=177mm
\begin{document}
\pagestyle{empty}
\baselineskip=7.66mm
\newcommand{\colwid}{156mm}
\newcommand{\dom}[2]{\hline #1  #2 & \makebox[\colwid]{} \\ }
%!NEXT PART!

\noindent
\fbox{\Large !YEAR!年 !MONTH!月}

\vspace*{1mm}

\renewcommand{\arraystretch}{1.6}

\noindent
\begin{tabular}{|r|c|} 
\hline
日  曜 & \makebox[\colwid]{} \\
\hline
%!NEXT PART!
\dom{1}{月}
\dom{2}{火}
\dom{3}{水}
\dom{4}{木}
\dom{5}{金}
\dom{6}{土}
\dom{7}{日}
\dom{8}{月}
\dom{9}{火}
\dom{10}{水}
\dom{11}{木}
\dom{12}{金}
\dom{13}{土}
\dom{14}{日}
\dom{15}{月}
\dom{16}{火}
\dom{17}{水}
\dom{18}{木}
\dom{19}{金}
\dom{20}{土}
\dom{21}{日}
\dom{22}{月}
\dom{23}{火}
\dom{24}{水}
\dom{25}{木}
\dom{26}{金}
\dom{27}{土}
\dom{28}{日}
\dom{29}{月}
\dom{30}{火}
\dom{31}{水}
%!NEXT PART!
\hline
\end{tabular}

%!NEXT PART!
\end{document}

To Page Top