This repository has been archived by the owner on Apr 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
word.dtx
308 lines (288 loc) · 8.46 KB
/
word.dtx
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
% \iffalse-meta comment
%% File: word.dtx
%
% \setcounter{StandardModuleDepth}{1}
% \StopEventually{}
% \fi
%\iffalse
%\CheckSum{0}
%\changes{v1.0}{2017/10/28}{First Release}
%\fi
%
%\iffalse
%<*driver>
\ProvidesFile{word.dtx}
%</driver>
%
% \begin{macrocode}
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{word}[2017/10/28 WORD Standard LaTeX class]
% \end{macrocode}
%
% \fi
%\iffalse
%<*driver>
\documentclass{bxjsarticle}
\usepackage{doc}
\usepackage{ifluatex}
\ifluatex
\usepackage[ipaex]{luatexja-preset}
\fi
\GetFileInfo{word.dtx}
\begin{document}
\DocInput{\filename}
\end{document}
%</driver>
%\fi
%
%\def\fileversion{0.1}
%\def\filedate{2017/10/23}
%\title{WORD Standard Class \fileversion}
%\author{WORD \LaTeX{} Team}
%\date{\filedate}
%\maketitle
%\tableofcontents
% \section{オプションスイッチ}
% 後程使用する幾つかのスイッチを定義しています。
% \begin{macro}{\if@evenstart}
% 偶数始まりかどうかのスイッチです。主にヘッダの位置に関わります。
% \begin{macrocode}
\newif\if@evenstart \@evenstartfalse
% \end{macrocode}
% \end{macro}
%\begin{macro}{\if@draft}
% draftかどうかのスイッチです。オンでページ番号を付与します。画像をオフにしたいときはgraphicxのオプションに別にdraftを付けてください。
% \begin{macrocode}
\newif\if@draft \@draftfalse
\newif\if@pagenumber \@pagenumberfalse
% \end{macrocode}
% \end{macro}
%\section{オプションの宣言}
% \begin{macrocode}
\DeclareOption{evenstart}{\@evenstarttrue}
% \end{macrocode}
% \begin{macrocode}
\DeclareOption{draft}{%
\setlength\overfullrule{5pt}
\@drafttrue
\@pagenumbertrue
}
% \end{macrocode}
% \begin{macrocode}
\ProcessOptions\relax
% \end{macrocode}
%
%\section{クラスのロード}
% WORDでは環境変数によって変数を指定しています。環境変数\texttt{WORD\_FONT}によって、
% 埋め込むフォントを決定します。この環境変数が指定されていない場合、フォントは\texttt{auto}となります。
% \begin{macrocode}
\RequirePackage{ifluatex}
\RequirePackage{ifxetex}
\ifluatex
\newcommand{\WORDFONT}{%
\directlua{
WORD_FONT = os.getenv("WORD_FONT")
if WORD_FONT then
tex.print(WORD_FONT)
else
tex.print("auto")
end
}
}
\fi
\ifluatex
\LoadClass[autodetect-engine, dvipdfmx-if-dvi, base=8.5pt, b5j, ja=standard, jafont=\WORDFONT]{bxjsarticle}
\else
\ifxetex
\newcommand{\mathmc}{\mcfamily}
\newcommand{\mathgt}{\gtfamily}
\LoadClass[autodetect-engine, dvipdfmx-if-dvi, base=8.5pt, b5j, ja=standard, jafont=auto]{bxjsarticle}
\else
\LoadClass[autodetect-engine, dvipdfmx-if-dvi, base=8.5pt, b5j, ja=standard]{bxjsarticle}
\fi
\fi
% \end{macrocode}
%\section{set spacing}
% WORDでは欧文フォントが8.5ptで48字33行を設定している。設定自体に必然性は無いが、一太郎での設定との互換のために
% 現在の設定になっている。左右は一太郎では24mmだが、1行48字を実現するため下記のようになっている。
% \begin{macrocode}
\geometry{top=15truemm, bottom=15truemm, right=24.25truemm, left=24.25truemm, includehead, includefoot}
\renewcommand{\baselinestretch}{1.4}
% \end{macrocode}
% \begin{macro}{\@twosidetrue}
% WORDでは奇数ページと偶数ページで出力が異なるため、twosideを強制的にtrueにしています。fancyhdrの設定で使われます。
%
% \begin{macrocode}
\@twosidetrue
% \end{macrocode}
%\end{macro}
% \section{パッケージのロード}
% \begin{macrocode}
\RequirePackage{fancyhdr}
\RequirePackage{amsmath, amssymb}
\RequirePackage{newtxtext, newtxmath}
\RequirePackage{ifluatex}
% \end{macrocode}
% \section{スタイル}
% \section{fontsizeの変更}
% \begin{macrocode}
\renewcommand{\scriptsize}{\@setfontsize\scriptsize\@vpt\@viiipt}
\renewcommand{\tiny}{\@setfontsize\tiny{4.25}\@vipt}
\renewcommand{\large}{\@setfontsize\large{9.5}{19}}
\renewcommand{\Large}{\@setfontsize\Large{10.5}{21}}
\renewcommand{\LARGE}{\@setfontsize\LARGE{12.75}{25}}
\renewcommand{\huge}{\@setfontsize\huge{17}{28}}
\renewcommand{\Huge}{\@setfontsize\Huge\@xxpt{33}}
\renewcommand{\HUGE}{\@setfontsize\HUGE{30}{40}}
% \end{macrocode}
% \subsection{ヘッダの設定}
% \begin{macrocode}
\fancyhead{}
\fancyfoot{}
\if@pagenumber
\if@evenstart
\fancyhead[RE]{\@subtitle\@articleheader\thepage}
\fancyhead[LO]{\thepage\@articleheader\@subtitle}
\else
\fancyhead[RO]{\@subtitle\@articleheader\thepage}
\fancyhead[LE]{\thepage\@articleheader\@subtitle}
\fi
\else
\if@evenstart
\fancyhead[RE]{\@subtitle\@articleheader}
\fancyhead[LO]{\@articleheader\@subtitle}
\else
\fancyhead[RO]{\@subtitle\@articleheader}
\fancyhead[LE]{\@articleheader\@subtitle}
\fi
\fi
% \end{macrocode}
% \subsection{subtitleの定義}
% \begin{macrocode}
\def\subtitle#1{\gdef\@subtitle{#1}}
\let\@subtitle\@empty
% \end{macrocode}
% \subsection{articleheaderの定義}
% subtitle互換のarticleheaderを定義しました。
% \begin{macrocode}
\def\articleheader#1{\gdef\@articleheader{#1}}
\let\@articleheader\@empty
% \end{macrocode}
% \section{基本フォントの変更}
% フォントの英数字部分をTimesフォントに変更しています。
% \begin{macrocode}
\renewcommand{\rmdefault}{ptm}
\renewcommand{\sfdefault}{ptm}
% \end{macrocode}
% \section{\@authormarkの定義}
% 著者名の横に付与する情報です。表示したくない場合、プリアンブルでauthormarkを上書きしてください。
% \begin{macrocode}
\def\authormark#1{\gdef\@authormark{#1}}
\newcommand{\@authormark}{文\hskip\Cwd 編集部}
% \end{macrocode}
% \section{Chapterの設定}
%
% \begin{macrocode}
\newcommand{\chapter}{%
\clearpage
\global\@topnum\z@
\afterindenttrue
\@chapter}
\def\chapter#1{\@makechapterhead{#1}\@afterheading}
\def\@makechapterhead#1{%
{\parindent\z@
\raggedright
\reset@font\huge\gtfamily\bfseries
\leavevmode
\begin{center}
\setlength\baselineskip{.7\baselineskip} #1%
\end{center}}
\par \nobreak \vskip\Cvs
\begin{flushright}
{\reset@font\large\@authormark\hskip\Cwd\@author}%
\end{flushright}
\vskip.5\Cvs
\reset@font\normalsize
}
% \end{macrocode}
% \section{section、subsection、subsubsectionのゴシック体化}
% \begin{macrocode}
\renewcommand{\section}{\@startsection{section}{1}{\z@}%
{\z@}%
{\z@}%
{\reset@font\LARGE\gtfamily\bfseries}}
\renewcommand{\subsection}{\@startsection{subsection}{2}{\z@}%
{\z@}%
{\z@}%
{\reset@font\Large\gtfamily\bfseries}}
\renewcommand{\subsubsection}{\@startsection{subsubsection}{3}{\z@}%
{\z@}%
{\z@}%
{\reset@font\large\gtfamily\bfseries}}
% \end{macrocode}
% \section{future settings}
% \begin{macrocode}
\def\articletitle#1{\gdef\@articletitle{#1}}
\let\@articletitle\@empty
\def\articleauthor#1{\gdef\@articleauthor{#1}}
\let\@articleauthor\@empty
\newcommand{\makearticletitle}{%
\vspace*{-2mm}
\begin{center}
{\huge\gtfamily\bfseries\@articletitle}
\end{center}
\par \nobreak \vskip\Cvs
\begin{flushright}
{\large\@authormark\hskip\Cwd\@articleauthor}
\end{flushright}
\vskip.5\Cvs
\let\@articleauthor\relax
\let\@articletitle\relax
\let\@thanks\relax
}
\newcommand{\makeerticleauthor}{%
\begin{flushright}
{\large\@authormark\hskip\Cwd\@articleauthor}
\end{flushright}
}
% \end{macrocode}
%
% \section{for wordlogo.sty}
% \begin{macrocode}
\ifxetex
\xeCJKDeclareCharClass{CJK}{`■}
\fi
% \end{macrocode}
%
% \section{脚注の印の位置}
% bxjsarticleは、``\texttt{ほげ\footnotemark}''の``\texttt{\footnotemark}''(脚注記号)の位置が以前のWORDクラスファイルよりも低めに設定されています。
% これを従来どおりの位置に直します。
% \begin{macrocode}
\def\thefootnote{\ifnum\c@footnote>\z@\leavevmode\lower.4ex\hbox{*}\@arabic\c@footnote\fi}
% \end{macrocode}
%
% \section{脚注の位置}
% \begin{macrocode}
\renewcommand\@makefntext[1]{%
\parindent 1em
\baselineskip = 0.75\baselineskip
\noindent\hbox to 1em{\hss\@makefnmark}
#1}
% \end{macrocode}
%
% \section{脚注の線}
% 脚注部に引く線をテキストの幅に変更しています。
% \begin{macrocode}
\renewcommand{\footnoterule}{%
\kern-3\p@
\hrule width\textwidth
\kern 2.6\p@}
% \end{macrocode}
% \section{本文スタイル}
% fancyhdrを用いて設定したため、基本的なページスタイルをfancyにセットします。
% \begin{macrocode}
\pagestyle{fancy}
% \end{macrocode}
%
% \Finale
\endinput