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
|
\begin{filecontents}[overwrite]{\jobname.bib}
\end{filecontents}
\documentclass[letter,11pt]{article}
\usepackage[
left=.7in,
right=.7in,
top=.703in,
bottom=.703in
]{geometry}
\usepackage[
short,
authordate,
backend=biber,
sorting=nty,
sortcites=true
]{biblatex-chicago}
\addbibresource{\jobname.bib}
\newcommand{\ac}[2][]{{\smaller\normalfont\ifthenelse{\equal{#1}{}}{\autocite{#2}}{\autocite[#1]{#2}}}}
\newcommand{\acp}[2][]{\
{\smaller\normalfont\ifthenelse{\equal{#1}{}}{\autocite{#2}}{\autocite[#1]{#2}}}\hspace{\fontdimen7\font}}
\usepackage{microtype}
\microtypesetup{tracking=smallcaps,letterspace=50}
\usepackage[match]{luatexja-fontspec}
\ltjsetparameter{jacharrange={-2,-3}}
\usepackage{luatexja-ruby}
\usepackage{fontspec}
\usepackage{amsmath,amsthm,amssymb}
\usepackage{unicode-math}
\setmainfont[
BoldFont = LMRomanDemi10-Regular,
BoldFeatures = {Scale = MatchLowercase},
BoldItalicFont = LMRomanDemi10-Oblique,
BoldItalicFeatures = {Scale = MatchLowercase},
Scale=1.08,
]{Fanwood Text}
\setmathfont[Scale = MatchLowercase]{Asana-Math.otf}
\setmainjfont[
BoldFont = Noto Serif CJK JP Medium,
]{Noto Serif CJK JP}
\setsansjfont[
BoldFont = Noto Sans CJK JP Medium,
]{Noto Sans CJK JP DemiLight}
\setmonojfont[
BoldFont = Noto Sans CJK JP Medium,
Scale = .93
]{Noto Sans CJK JP Demilight}
\usepackage{etoolbox}
\AtBeginEnvironment{equation}{\large}
\AtBeginEnvironment{equation*}{\large}
\usepackage{relsize}
\usepackage{setspace}
\setstretch{1.14}
\usepackage{multicol}
\renewenvironment{quote}{%
\list{}{%
\setlength{\rightmargin}{0pt}%
\setlength{\leftmargin}{0pt}%
\smaller%
}%
\item\relax%
}{\endlist}
\renewcommand{\abstractname}{abstract}
\title{}
\author{}
\date{%DATE%}
\makeatletter
\def\heading{%
\vspace*{14pt}{\LARGE\centering\@title\par}
\vspace*{7pt}{\large\centering\@author\par}
\vspace*{8pt}{\large\centering\@date\par}
\vspace*{22pt}
}
\makeatother
\newcommand{\dd}{.~.~.\@}
\newcommand{\ddd}{.~.~.~.}
\newcommand{\di}{[...\@]}
\newlength{\footnoteback}
\newcommand{\fns}[1]{%
\setlength{\footnoteback}{\skip\footins}%
\setlength{\skip\footins}{#1}%
}
\newcommand{\fnr}{\setlength{\skip\footins}{\footnoteback}}
\usepackage[unicode,hidelinks]{hyperref}
\begin{document}
\heading
\begin{multicols}{2}
%START%
\end{multicols}
\setlength{\bibhang}{0pt}
\printbibliography[title={references}]
\end{document}
|