-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathresume.sty
87 lines (75 loc) · 1.65 KB
/
resume.sty
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
%
% From jarticle.sty 16-Mar-88
% -------------------------------------------------------------------------
% No page number
\pagestyle{empty}
% Page layout
%
%\paperwidth 210mm
%\paperheight 297mm
\textwidth 160.0mm
\textheight 237.0mm
\oddsidemargin 0mm
\evensidemargin 0mm
\topmargin 0mm
\headheight 5.0mm
\headsep 0.0mm
\footskip 0.0mm
\columnsep 6.0mm
\parindent 1zw\relax
% Two column
\twocolumn
\raggedbottom
% List Environment
\def\@listi{%
\leftmargin = 0.7cm
\labelsep = 0.2cm
\itemsep = 0.1cm}
\let\@listI\@listi
%
\def\maketitle{
\par
\begingroup
\def\thefootnote{\fnsymbol{footnote}}
\def\@makefnmark{\hbox to 0pt{$^{\@thefnmark}$\hss}}
\twocolumn[\@maketitle]\@thanks
\endgroup
\setcounter{footnote}{0}
\let\maketitle\relax
\let\@maketitle\relax
\gdef\@thanks{}\gdef\@author{}\gdef\@title{}\let\thanks\relax
}
%
%%%%% Format of Page 1 %%%%%
%
% Title
%
\def\@maketitle{
\newpage\null\vskip 1em%
\begin{center}%
\let\footnote\thanks
% Japanese title
{\Large \bf \@title \par}
\vskip 1.5em
{\large \begin{tabular}[t]{c} \@author \end{tabular}\par}
\vskip 1.5em
{\unvbox\@abstractbox}
\vskip2em
\end{center}
}
\def\title#1{\gdef\@title{#1}}
\def\@title#{\mkt\@warning\title}
%
% Japanese & English authors
%
\long\def\author#1{\long\gdef\@author{#1}}
\def\@author{\mkt@warning\author}
\def\abstractname{概要}
\newbox\@abstractbox \global\setbox\@abstractbox\box\voidb@x
\def\abstract{%
\global\setbox\@abstractbox\vbox\bgroup
\hsize\textwidth \@parboxrestore
{\bfseries \abstractname} \parindent=1zw\relax}
\def\endabstract{\egroup}
%%%%%%%%%%%%%%%%%%%%%%%
% EOF