-
Notifications
You must be signed in to change notification settings - Fork 4
/
sample2.tex
93 lines (73 loc) · 2.47 KB
/
sample2.tex
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
% -*- coding: utf-8; mode: latex; -*-
% +++
% latex = "lualatex"
% +++
%
% FIT2024 向け LaTeX クラスファイル
% https://github.com/trueroad/FITpaper-class
%
% サンプルファイル(著者が多い場合)
%
% Copyright (C) 2019, 2022-2024 Masamichi Hosoda.
% All rights reserved.
%
\documentclass{FITpaper}
% 和文タイトル
\jtitle{FIT2024向け\LaTeX クラスファイルのサンプル\\
---著者がたくさんの場合---}
% 英文タイトル
\etitle{Sample \LaTeX~Class File for FIT2024 \\
--- Many Authors Version ---}
% 1 段目の著者数:1 段目の著者の数だけ c を書く
\authors{ccccc}
% 1 段目の和文著者名:著者名間に & を書く
% 所属記号を \affmark でつける
\jauthors{%
細田 真道\affmark{1} &
〇〇 〇〇\affmark{2} &
〇〇 〇\affmark{2} &
〇〇 〇\affmark{2} &
〇〇 〇\affmark{2}}
% 1 段目の欧文著者名:著者名間に & を書く
\eauthors{%
Masamichi Hosoda &
Foo Bar Baz &
Foo Bar Baz &
Foo Bar Baz &
Foo Bar Baz}
% 2 段目の著者数:2 段目の著者の数だけ c を書く
\authorstwo{cccc}
% 2 段目の和文著者名:著者名間に & を書く
\jauthorstwo{%
●● ●●\affmark{3} &
● ●●\affmark{3} &
● ●●\affmark{4} &
● ●●\affmark{4}}
% 2 段目の欧文著者名:著者名間に & を書く
\eauthorstwo{%
foo bar baz &
foo bar baz &
foo bar baz &
foo bar baz}
% 所属
% \affmark でつけた番号毎に指定
\afftext{1}{http://www.trueroad.jp}
\afftext{2}{〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇.
Foo bar baz boo bar baz Department, Foo University.}
\afftext{3}{●●●●●●●●●●●●●●●●●●●●●●●●●●.
Foo bar baz boo bar baz Laboratories, Foo Corporation.}
\afftext{4}{●●●●●●●●●●●●●●●●●●●●●●●●●●.
Foo bar baz boo bar baz Department, Foo University.}
\begin{document}
\maketitle
\section{セクション}
本サンプルは著者名が多くて1段では収まりきらない場合に、
2段で記述する方法のサンプルです。
実際の書き方の例は本サンプルのソースファイルsample2.texや
ソースファイルの書き方の概要を説明しているsample.texをご覧ください。
\begin{thebibliography}{9}
\bibitem{fitpaper-class}
FIT2024向け\LaTeX クラスファイル. \\
https://github.com/trueroad/FITpaper-class
\end{thebibliography}
\end{document}