%
% Copyright (c) 1996-1998 Shigio Yamaguchi. All rights reserved.
% Copyright (c) 1999 Tama Communications Corporation. All rights reserved.
%
% Redistribution and use in source and binary forms, with or without
% modification, are permitted provided that the following conditions
% are met:
% 1. Redistributions of source code must retain the above copyright
%    notice, this list of conditions and the following disclaimer.
% 2. Redistributions in binary form must reproduce the above copyright
%    notice, this list of conditions and the following disclaimer in the
%    documentation and/or other materials provided with the distribution.
%
% THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
% ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
% IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
% ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
% FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
% DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
% OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
% HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
% LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
% OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
% SUCH DAMAGE.
%
%	rireki.sty	version1.4
%
\usepackage{addjfonts}
% #1 family-name
% #2 yoko (horizontal direction) font-name
% #3 tate (vertical direction) font-name
% #4 command name: if this is "foo", \foofamily and \textfoo are defined.
\DefineJapaneseFamily{mikachan}{mika}{tmika}{mika}
\typeout{`Rireki style(B5)'}
%
% 本スタイルの出力する履歴書はB5サイズですが、出力用紙はA4を想定しています。
% B5のトンボが出力されます。
%
%----------------------------------------------------------------------------
%
% 履歴書スタイルの定義ファイル
%
%----------------------------------------------------------------------------
\def\width{181}			% ページ幅(B5)
\def\height{258}		% ページ高(B5)
\def\ROOT@X{0}			% ページ原点X(紙の左端からの距離mm)
\def\ROOT@Y{0}			% ページ原点Y(紙の上端からの距離mm)
\topmargin      = -25.4mm
\oddsidemargin  = -25.4mm
\evensidemargin = -25.4mm
\textwidth      = \width mm
\textheight     = \height mm
\unitlength     = 1mm
\pagestyle{empty}
%----------------------------------------------------------------------------
%
% 座標値計算マクロ
%
%	\加算{10}{3}{\answer}	-> \answer = 10+3
%	\減算{10}{3}{\answer}	-> \answer = 10-3
%
%----------------------------------------------------------------------------
{\catcode`\p=12\catcode`\t=12\gdef\num#1pt{#1}}
\newdimen\result
\def\加算#1#2#3{\result=#1pt \advance\result by #2pt
	\edef#3{\expandafter\num\the\result}
}
\def\減算#1#2#3{\result=#1pt \advance\result by -#2pt
	\edef#3{\expandafter\num\the\result}
}
%----------------------------------------------------------------------------
%
% 左上を原点とする\put コマンド
%
%	\SetPos(#1,#2)#3	移動基準点を設定
%	\Put(x,y)		移動基準点を左上原点とする\put
%	\MultiPut(x,y)		移動基準点を左上原点とする\multiput
%
%----------------------------------------------------------------------------
\def\SetPos(#1,#2)#3{
	\加算{#1}\ROOT@X\root@x
	\加算{#2}\ROOT@Y\root@y
        {#3}
}
\def\Put(#1,#2)#3{
	\加算\root@x{#1}\xpos		% 移動基準点との相対位置
	\加算\root@y{#2}\ypos
	\減算\height\ypos\ypos		% 左上を原点に変更する
	\put(\xpos,\ypos){#3}
}
\def\MultiPut(#1,#2)(#3,#4)#5#6{
	\加算\root@x{#1}\xpos
	\加算\root@y{#2}\ypos
	\減算\height\ypos\ypos
	\multiput(\xpos,\ypos)(#3,#4){#5}{#6}
}
%----------------------------------------------------------------------------
%
% リスト操作マクロ
%
%	\追加\リスト\アイテム	アイテムをリストに追加
%	\分解\アイテム		アイテムを分解
%
%	アイテム中の要素は':'で区切られている。
%
%----------------------------------------------------------------------------
\def\追加#1#2{
	\ifx#1\empty\edef#1{#2}
	\else\edef#1{#1,#2}
	\fi
}
\def\分解#1:#2:#3:{
	\def\one{#1}\def\two{#2}\def\three{#3}
}
\def\@学歴リスト{}
\def\@職歴リスト{}
\def\@資格リスト{}
\def\@毎週ゼミリスト{}
\def\@通年ゼミリスト{}
\def\@家族リスト{}
\def\リスト書き出し#1{	% \offset の初期化が必要
	\@for\linebuf:=#1\do{%
		\expandafter\分解\linebuf
		\Put(0,\offset){\makebox(16,8)[c]{\normalsize \textmika{\one}}}
		\Put(16,\offset){\makebox(8,8)[c]{\normalsize \textmika{\two}}}
		\Put(24,\offset){\makebox(127,8)[l]{\normalsize \hspace{5mm}\textmika{\three}}}
		\加算\offset{9}\offset
	}
}
\def\リスト書き出し小#1{	% \offset の初期化が必要
	\@for\linebuf:=#1\do{%
		\expandafter\分解\linebuf
		\Put(0,\offset){\makebox(16,8)[c]{\normalsize \textmika{\one}}}
		\Put(16,\offset){\makebox(8,8)[c]{\normalsize \textmika{\two}}}
		\Put(24,\offset){\makebox(127,8)[l]{\footnotesize\bfseries \hspace{5mm}\textmika{\three}}}
		\加算\offset{9}\offset
	}
}
%----------------------------------------------------------------------------
%
% トンボ書き出し
%
%	\put(0,0){\framebox(\width,\height)} の3mm 外側の枠
%
%----------------------------------------------------------------------------
\newif\ifトンボ\トンボfalse
\def\toA4{
	\global\トンボtrue
	\oddsidemargin = -15.4mm
	\evensidemargin = -15.4mm
}
\def\トンボ書き出し{
	% 左下
	\put(-3, 0){\line(-1, 0){6}}
	\put(-3, 0){\line( 0,-1){9}}
	\put( 0,-3){\line(-1, 0){9}}
	\put( 0,-3){\line( 0,-1){6}}
	% 右下
	\let\x\width
	\put(\x,-3){\line( 1, 0){9}}
	\put(\x,-3){\line( 0,-1){6}}
	\加算\width{3}\x
	\put(\x, 0){\line( 1, 0){6}}
	\put(\x, 0){\line( 0,-1){9}}
	% 左上
	\let\y\height
	\put(-3,\y){\line(-1, 0){6}}
	\put(-3,\y){\line( 0, 1){9}}
	\加算\height{3}\y
	\put( 0,\y){\line(-1, 0){9}}
	\put( 0,\y){\line( 0, 1){6}}
	% 右上
	\加算\width{3}\x
	\let\y\height
	\put(\x,\y){\line( 1, 0){6}}
	\put(\x,\y){\line( 0, 1){9}}
	\let\x\width
	\加算\height{3}\y
	\put(\x,\y){\line( 1, 0){9}}
	\put(\x,\y){\line( 0, 1){6}}
}
%----------------------------------------------------------------------------
%
% 履歴書の書き出し
%
%----------------------------------------------------------------------------
\let\enddocumentorg=\enddocument
\def\enddocument{
\writepages
\enddocumentorg
}
%----------------------------------------------------------------------------
%
% マクロ定義
%
%----------------------------------------------------------------------------
%
% ID情報
%
\def\姓#1{\def\@姓{#1}}
\def\姓読み#1{\def\@姓読み{#1}}
\def\名#1{\def\@名{#1}}
\def\名読み#1{\def\@名読み{#1}}
\def\性別#1{\def\@性別{#1}}
\def\誕生日#1{\def\@誕生日{#1}}
\def\年齢#1{\def\@年齢{#1}}
\def\本籍#1{\def\@本籍{#1}}
%
% 顔写真
%
\def\@顔写真{}
\def\@顔写真X{109.5}
\def\@顔写真Y{-9}
\def\顔写真位置#1#2{				% new
	\加算{\@顔写真X}{#1}{\@顔写真X}
	\加算{\@顔写真Y}{#2}{\@顔写真Y}
}
\def\@@顔写真 (#1,#2)#3{
	\顔写真位置{#1}{#2}
	\def\@顔写真{#3}
}
\def\顔写真{						% new
	\@ifnextchar( {\@@顔写真}{\@@顔写真(0,0)}
}
%
% 現住所
%
\def\現住所郵便番号#1{\def\@現住所郵便番号{#1}}
\def\現住所#1{\def\@現住所{#1}}
\def\現住所読み#1{\def\@現住所読み{#1}}
\def\現住所市外局番#1{\def\@現住所市外局番{#1}}
\def\現住所電話番号#1{\def\@現住所電話番号{#1}}
\def\現住所呼び出し#1{\def\@現住所呼び出し{#1}}
%
% 連絡先
%
\def\連絡先郵便番号#1{\def\@連絡先郵便番号{#1}}
\def\連絡先#1{\def\@連絡先{#1}}
\def\連絡先読み#1{\def\@連絡先読み{#1}}
\def\連絡先市外局番#1{\def\@連絡先市外局番{#1}}
\def\連絡先電話番号#1{\def\@連絡先電話番号{#1}}
\def\連絡先呼び出し#1{\def\@連絡先呼び出し{#1}}
%
% 学歴、職歴、ゼミ
%
\def\学歴#1#2#3{\追加\@学歴リスト{#1:#2:#3:}}
\def\職歴#1#2#3{\追加\@職歴リスト{#1:#2:#3:}}
\def\毎週ゼミ#1#2#3{\追加\@毎週ゼミリスト{#1:#2:#3:}}
\def\通年ゼミ#1#2#3{\追加\@通年ゼミリスト{#1:#2:#3:}}
%
% 自己アピール, 主張
%
\def\主張#1{\def\@主張{#1}}
%
% 個人情報
%
\def\得意な学科#1{\def\@得意な学科{#1}}
\def\趣味#1{\def\@趣味{#1}}
\def\スポーツ#1{\def\@スポーツ{#1}}
\def\志望の動機#1{\def\@志望の動機{#1}}
\def\健康状態#1{\def\@健康状態{#1}}
\def\本人希望記入欄#1{\def\@本人希望記入欄{#1}}
%
% 家族
%
\def\家族#1#2#3{\追加\@家族リスト{#1:#2:#3:}}
%
% その他
%
\def\通勤時間#1{\def\@通勤時間{#1}}
\def\扶養家族数#1{\def\@扶養家族数{#1}}
\def\配偶者#1{\def\@配偶者{#1}}
\def\配偶者の扶養義務#1{\def\@配偶者の扶養義務{#1}}
%
% 保護者
%
\def\保護者氏名#1{\def\@保護者氏名{#1}}
\def\保護者郵便番号#1{\def\@保護者郵便番号{#1}}
\def\保護者住所#1{\def\@保護者住所{#1}}
\def\保護者市外局番#1{\def\@保護者市外局番{#1}}
\def\保護者電話番号#1{\def\@保護者電話番号{#1}}
\def\保護者呼び出し#1{\def\@保護者呼び出し{#1}}

\def\サイン#1{\def\@サイン{#1}}
%----------------------------------------------------------------------------
%
% 書き出しページの内容
%
%----------------------------------------------------------------------------
\def\writepages{
\def\ROOT@X{20}				% 1ページ目の原点
\def\ROOT@Y{20}				% 1ページ目の原点
\begin{picture}(\width,\height)		% B5 = (181x257mm)
\ifトンボ\トンボ書き出し\fi
%----------------
% 氏名住所
%----------------
% 大枠
\SetPos(0,0) {
        \Put(0,-1){\makebox(25,5)[t]{\Large \bf 履\hspace{5mm}歴\hspace{5mm}書}}
        \Put(70,-1){\makebox(25,3)[t]{\scriptsize \@date 現在}}
\ifx\@顔写真\empty
        \Put(109.5,31){\dashbox{.5}(30,40.5)[c]{\scriptsize 写真をはる位置}}
\else
%%bmp -> psfile
	\Put(109.5,31){\dashbox{.5}(30,40.5)[c]{}}
	\Put(\@顔写真X,\@顔写真Y){\@顔写真}
\fi
        \linethickness{0.5mm}
        \Put(0,0){\line(1,0){100}}
        \Put(0,0){\line(0,-1){69}}
        \Put(0,69){\line(1,0){151.5}}
        \Put(100,0){\line(0,-1){36}}
        \Put(100,36){\line(1,0){51.5}}
        \Put(151.5,36){\line(0,-1){33}}
        \linethickness{0.1mm}
%       \Put(87,0){\line(0,-1){21}}
        \Put(0,5){\dashbox{.5}(100,5)[l]{\scriptsize \hspace{2mm}ふりがな}}
        \Put(0,10){\makebox(100,5)[l]{\scriptsize \hspace{2mm}氏\hspace{5mm}名}}
}
\SetPos(28,0) {
	\Put(0,5){\makebox(62,5)[l]{\textmika{\scriptsize \@姓読み}}}
	\Put(20,5){\makebox(42,5)[l]{\textmika{\scriptsize \@名読み}}}
	\Put(0,18.5){\makebox(62,16.5)[l]{\textmika{\Large \@姓}}}
	\Put(-19,24.5){\makebox(42,16.5)[l]{\textmika{\small \@名}}}
}
\SetPos(87,5) {
	\Put(0,0){\makebox(13,5)[l]{\scriptsize \hspace{2mm}性別\hspace{1.5mm}\textmika{\@性別}}}
	\Put(0,0){\line(1,0){13}}
	\Put(0,5){\makebox(13,5)[l]{\scriptsize \hspace{2mm}印}}
}
\SetPos(0,21) {
	\Put(0,0){\line(1,0){100}}
	\Put(0,15){\makebox(62.5,15)[c]{\textmika{\@誕生日} 生}}
	\Put(0,15){\makebox(62.5,5)[r]{\scriptsize(満 \hspace{2mm} \textmika{\@年齢} 才)\hspace{5mm}}}
}
\SetPos(62.5,21) {
	\Put(0,0){\line(0,-1){15}}
	\Put(0,5){\makebox(37.5,5)[l]{\scriptsize \hspace{2mm}本籍}}
	\Put(0,15){\makebox(37.5,15)[c]{\Large \textmika{\@本籍}}}
}
\SetPos(0,36) {
	\Put(0,0){\line(1,0){100}}
	\Put(0,5){\dashbox{.5}(119.5,5)[l]{\scriptsize \hspace{2mm}ふりがな \hspace{10mm} \textmika{\@現住所読み}}}
	\Put(0,10){\makebox(119.5,5)[l]{\scriptsize \hspace{2mm}現\hspace{1mm}住\hspace{1mm}所\hspace{3mm}〒\hspace{2mm}\normalsize \@現住所郵便番号}}
	\Put(0,16.5){\makebox(119.5,11.5)[c]{\normalsize \textmika{\@現住所}}}
}
\SetPos(119.5,36) {
	\Put(0,0){\line(0,-1){33}}
	\Put(0,3.5){\makebox(32,3.5)[l]{\scriptsize \hspace{2mm}電話}}
	\def\@editbuf{
		\normalsize
		\ifx\textmika{\@現住所市外局番}\empty
		\else{\hspace{2mm}(\hspace{2mm}\textmika{\@現住所市外局番}\hspace{2mm})}
		\fi
	}
	\Put(0,7){\makebox(32,3.5)[l]{\scriptsize \hspace{2mm}市外局番\@editbuf}}
	\Put(0,11.5){\dashbox{.5}(32,4.5)[c]{\textmika{\normalsize \@現住所電話番号}}}
}
\SetPos(0,52.5) {
	\Put(0,0){\line(1,0){151.5}}
	\Put(0,5){\dashbox{.5}(119.5,5)[l]{\scriptsize \hspace{2mm}ふりがな \hspace{10mm} \textmika{\@連絡先読み}}}
	\Put(0,10){\makebox(119.5,5)[l]{\scriptsize \hspace{2mm}連\hspace{1mm}絡\hspace{1mm}先\hspace{3mm}〒\hspace{2mm}\textmika{\@連絡先郵便番号}}}
	\Put(0,16.5){\makebox(119.5,11.5)[c]{\textmika{\normalsize \@連絡先}}}
}
\SetPos(119.5,52.5) {
	\Put(0,3.5){\makebox(32,3.5)[l]{\scriptsize \hspace{2mm}電話}}
	\def\@editbuf{
		\normalsize
		\ifx\textmika{\@連絡先市外局番}\empty
		\else{\hspace{2mm}(\hspace{2mm}\textmika{\@連絡先市外局番}\hspace{2mm})}
		\fi
	}
	\Put(0,7){\makebox(32,3.5)[l]{\scriptsize \hspace{2mm}市外局番\textmika{\@editbuf}}}
	\Put(0,11.5){\dashbox{.5}(32,4.5)[c]\textmika{{\normalsize \@連絡先電話番号}}}
}
%----------------
% 主張
%----------------
\SetPos(0,70) {
	\def\w{152}\def\h{42}%
	\linethickness{0.5mm}
	\Put(0,0){\line(1,0){\w}}
	\Put(0,0){\line(0,-1){\h}}
	\Put(0,\h){\line(1,0){\w}}
	\Put(\w,0){\line(0,-1){\h}}
%	\Put(24,0){\line(0,-1){\h}}
	\linethickness{0.1mm}
%	\Put(0,\h){\dashbox{.5}(16,\h)}
	\def\h{6}
%	\Put(0,\h){\makebox(16,\h)[c]{\scriptsize \textmika{曜日}}}
%	\Put(16,\h){\makebox(8,\h)[c]{\scriptsize \textmika{時間帯}}}
%	\Put(24,\h){\makebox(128,\h)[c]{\scriptsize \textmika{ゼミ}}}
	\Put(12,\h){\makebox(128,\h)[c]{\scriptsize \textmika{自己アピール}}}
	\linethickness{0.1mm}
	\MultiPut(0,\h)(0,-9){1}{\line(1,0){\w}}
	\def\offset{15}
		\加算\offset{9}\offset
	\Put(0,34){\makebox(\w,22)[c]{\parbox{140mm}{\textmika{\normalsize \textmika{\@主張}}}}}
} 
%----------------
% その他の情報
%----------------
\def\c{36}
\SetPos(0,113) {
%	\def\w{152}\def\h{76}% \w=>表の横幅, \h => 表の縦幅
	\def\w{152}\def\h{76}% \w=>表の横幅, \h => 表の縦幅
	\linethickness{0.5mm}
	\Put(0,0){\line(1,0){\w}}% 表の上辺
	\Put(0,0){\line(0,-1){\c}}% 表の左辺
%	\Put(0,\h){\line(1,0){\w}}% 表の下辺
	\Put(\w,0){\line(0,-1){\c}}% 表の右辺
	\linethickness{0.1mm}
	\Put(\h,0){\line(0,-1){\c}}%真中の縦罫線
	\Put(0,5){\makebox(76,5)[l]{\scriptsize \hspace{2mm} \textmika{得意な学科}}}
	\Put(0,17){\makebox(76,15)[c]{\parbox{56mm}{\textmika{\normalsize \@得意な学科}}}}
	\Put(\h,5){\makebox(76,5)[l]{\textmika{\scriptsize \hspace{2mm} \textmika{健康状態}}}}
	\Put(\h,17){\makebox(\h,15)[c]{\parbox{56mm}{\textmika{\normalsize \@健康状態}}}}
	\Put(0,17){\line(1,0){\w}}
	\Put(0,22){\makebox(76,5)[l]{\scriptsize \hspace{2mm} \textmika{趣味}}}
	\Put(0,34){\makebox(76,15)[c]{\parbox{56mm}{\textmika{\normalsize \@趣味}}}}
	\Put(0,17){\line(1,0){\w}}
	\Put(\h,22){\makebox(76,5)[l]{\scriptsize \hspace{2mm} \textmika{主な所属サークル}}}
	\Put(\h,34){\makebox(76,15)[c]{\parbox{56mm}{\textmika{\normalsize \@スポーツ}}}}
	\linethickness{0.5mm}
	\Put(0,\c){\line(1,0){\w}}
%	\Put(0,56){\makebox(\w,5)[l]{\scriptsize \hspace{2mm}本人希望記入欄(特に給料・職種・勤務時間・勤務地・その他についての希望などがあれば記入)}}
%	\Put(0,76){\makebox(\w,23)[c]{\parbox{132mm}{\textmika{\normalsize \@本人希望記入欄}}}}
}
%----------------
% 家族情報
%----------------
\def\a{150}
\SetPos(0,\a) {
	\def\w{152}\def\h{70}
	\linethickness{0.5mm}
	\Put(0,0){\line(1,0){\w}}
	\Put(0,0){\line(0,-1){\h}}
	\Put(0,\h){\line(1,0){\w}}
	\Put(\w,0){\line(0,-1){\h}}
	\Put(0,61){\line(1,0){\w}}
	\linethickness{0.1mm}
	\MultiPut(0,6)(0,-9){6}{\line(1,0){\w}}
	\def\l{6}
	\Put(0,\l){\makebox(55.5,\l)[c]{\scriptsize \textmika{家\hspace{3mm}族\hspace{3mm}氏\hspace{3mm}名}}}
	\Put(55.5,0){\line(0,-1){61}}
	\Put(55.5,\l){\makebox(10,\l)[c]{\scriptsize \textmika{性別}}}
	\Put(65.5,0){\line(0,-1){61}}
	\Put(65.5,\l){\makebox(10,\l)[c]{\scriptsize \textmika{属柄}}}
	\Put(75.5,0){\line(0,-1){61}}
}
\SetPos(76.5,\a) {
	\def\l{6}
	\Put(0,0){\line(0,-1){61}}
	\Put(0,\l){\makebox(55.5,\l)[c]{\scriptsize \textmika{家\hspace{3mm}族\hspace{3mm}氏\hspace{3mm}名}}}
	\Put(55.5,0){\line(0,-1){61}}
	\Put(55.5,\l){\makebox(10,\l)[c]{\scriptsize \textmika{性別}}}
	\Put(65.5,0){\line(0,-1){61}}
	\Put(65.5,\l){\makebox(10,\l)[c]{\scriptsize \textmika{属柄}}}
}
\SetPos(0,\a) {
	\def\xoffset{0}
	\def\yoffset{15}
	\@tempcnta=0
	\@for\linebuf:=\@家族リスト\do{%
		\advance\@tempcnta by 1
		\ifnum\@tempcnta=7		% 右側の欄に移動
			\def\xoffset{76.5}
			\def\yoffset{15}
		\fi
		\expandafter\分解\linebuf
		\加算\xoffset{0}\xpos
		\Put(\xpos,\yoffset){\makebox(55.5,8)[l]{\large \hspace{20mm}\textmika{\one}}}
		\加算\xoffset{55.5}\xpos
		\Put(\xpos,\yoffset){\makebox(10,8)[c]{\normalsize \textmika{\two}}}
		\加算\xoffset{65.5}\xpos
		\Put(\xpos,\yoffset){\makebox(10,8)[c]{\normalsize \textmika{\three}}}
		\加算\yoffset{9}\yoffset
	}
}
\def\b{211}
\SetPos(0,\b) {
	\def\l{5}
	\Put(0,\l){\makebox(49.5,\l)[l]{\scriptsize \hspace{2mm}\textmika{平均滞在時間}}}
	\Put(49.5,0){\line(0,-1){9}}
	\Put(49.5,\l){\makebox(34,\l)[l]{\scriptsize \hspace{2mm}\textmika{扶養家族数}}}
	\Put(83.5,0){\line(0,-1){9}}
	\Put(83.5,\l){\makebox(34,\l)[l]{\scriptsize \hspace{2mm}\textmika{協力研究室}}}
	\Put(117.5,0){\line(0,-1){9}}
	\Put(117.5,\l){\makebox(34.5,\l)[l]{\scriptsize \hspace{2mm}\textmika{配偶者の扶養義務}}}
	\Put(0,9){\makebox(49.5,\l)[c]{\textmika{\normalsize \@通勤時間}}}
	\Put(49.5,9){\makebox(34,\l)[c]{\textmika{\normalsize \@扶養家族数}}}
	\Put(83.5,9){\makebox(34,\l)[c]{\textmika{\normalsize \@配偶者}}}
	\Put(117.5,9){\makebox(34.5,\l)[c]{\textmika{\normalsize \@配偶者の扶養義務}}}
}

\end{picture}

\newpage

\def\ROOT@X{11}				% 2ページ目の原点
\def\ROOT@Y{20}				% 2ページ目の原点
\begin{picture}(\width,\height)		% B5 = (182x257mm)
\ifトンボ\トンボ書き出し\fi
%----------------
% 昨今の出来事
%----------------
% 大枠
\SetPos(0,0) {
	\def\w{151.5}\def\h{134}\def\l{7}
	\linethickness{0.5mm}
	\Put(0,0){\line(1,0){\w}}
	\Put(0,0){\line(0,-1){\h}}
	\Put(0,\h){\line(1,0){\w}}
	\Put(\w,0){\line(0,-1){\h}}
	\Put(0,\l){\makebox(16,\l)[c]{\scriptsize \textmika{年}}}
	\Put(16,\l){\makebox(8,\l)[c]{\scriptsize \textmika{月}}}
	\Put(24,\l){\makebox(127,\l)[c]{\scriptsize \textmika{昨今の出来事}}}
	\linethickness{0.1mm}
%	\MultiPut(0,\l)(0,-9){6}{\line(1,0){\w}}
	\MultiPut(0,\l)(0,-9){14}{\line(1,0){\w}}
	\Put(24,0){\line(0,-1){\h}}
	\Put(0,\h){\dashbox{.5}(16,\h)}
	\def\offset{16}
	\ifx\@学歴リスト\empty\else
	\リスト書き出し\@学歴リスト
%	\ifx\@職歴リスト\empty\else
%		\Put(24,\offset){\makebox(128,8)[c]{\normalsize 今後の予定\hspace{20mm}}}
		\加算\offset{9}\offset
	\fi
%	\リスト書き出し\@職歴リスト
%	\Put(24,\offset){\makebox(128,8)[r]{\normalsize 以上\hspace{20mm}}}
}
%----------------
% 今後の予定
%----------------
% 大枠
%\SetPos(0,136.5) {
%	\def\w{151.5}\def\h{98}\def\l{7}
%	\linethickness{0.5mm}
%	\Put(0,0){\line(1,0){\w}}
%	\Put(0,0){\line(0,-1){\h}}
%	\Put(0,\h){\line(1,0){\w}}
%	\Put(\w,0){\line(0,-1){\h}}
%	\Put(0,\l){\makebox(16,\l)[c]{\scriptsize \textmika{年}}}
%	\Put(16,\l){\makebox(8,\l)[c]{\scriptsize \textmika{月}}}
%	\Put(24,\l){\makebox(127,\l)[c]{\scriptsize \textmika{今後の予定}}}
%	\linethickness{0.1mm}
%	\MultiPut(0,\l)(0,-9){10}{\line(1,0){\w}}
%	\Put(24,0){\line(0,-1){\h}}
%	\Put(0,\h){\dashbox{.5}(16,\h)}
%	\def\offset{16}
%	\ifx\@学歴リスト\empty\else
%		\Put(24,\offset){\makebox(128,8)[c]{\normalsize 昨今の出来事\hspace{20mm}}}
%		\加算\offset{9}\offset
%	\fi
%	\リスト書き出し\@学歴リスト
%	\ifx\@職歴リスト\empty\else
%		\Put(24,\offset){\makebox(128,8)[c]{\normalsize 今後の予定\hspace{20mm}}}
%		\加算\offset{9}\offset
%	\fi
%	\リスト書き出し\@職歴リスト
%	\Put(24,\offset){\makebox(128,8)[r]{\normalsize 以上\hspace{20mm}}}
%}
%----------------
% ゼミ
%----------------
\SetPos(0,136) {
	\def\w{152}\def\h{105}%
	\linethickness{0.5mm}
	\Put(0,0){\line(1,0){\w}}
	\Put(0,0){\line(0,-1){\h}}
	\Put(0,\h){\line(1,0){\w}}
	\Put(\w,0){\line(0,-1){\h}}
	\Put(24,0){\line(0,-1){\h}}
	\linethickness{0.1mm}
	\Put(0,\h){\dashbox{.5}(16,\h)}
	\def\h{6}
	\Put(0,\h){\makebox(16,\h)[c]{\scriptsize \textmika{曜日}}}
	\Put(16,\h){\makebox(8,\h)[c]{\scriptsize \textmika{時間帯}}}
	\Put(24,\h){\makebox(128,\h)[c]{\scriptsize \textmika{ゼミ}}}
	\linethickness{0.1mm}
	\MultiPut(0,\h)(0,-9){11}{\line(1,0){\w}}
	\def\offset{15}
	\Put(24,\offset){\makebox(128,8)[c]{\normalsize \textmika{毎週やるゼミ}}}
		\加算\offset{9}\offset
	\リスト書き出し小\@毎週ゼミリスト
	\Put(24,\offset){\makebox(128,8)[r]{\scriptsize \textmika{あとは自主ゼミがちらほら\hspace{5mm}}}}
		\加算\offset{9}\offset
	\Put(24,\offset){\makebox(128,8)[c]{\normalsize \textmika{毎年やるゼミ}}}
		\加算\offset{9}\offset
	\リスト書き出し小\@通年ゼミリスト
}


\end{picture}
}
%----------------------------------------------------------------------------
% 書き出しページの内容終り
%----------------------------------------------------------------------------
