blob: 881c1b3b2847ef1b904afa5b373a5cfcbadfd2f3 (
plain) (
blame)
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
|
@font-face {
font-family: CMR;
src: url(../fonts/cmuserif_roman_macroman/cmunrm-webfont.woff);
}
@font-face {
font-family: CMB;
src: url(../fonts/cmuserif_bold_macroman/cmunbx-webfont.woff);
}
.LatexTitle{
font-family: CMR;
font-size: 40px;
padding-top: 40vh;
text-align: center;
margin-bottom: 20px;
}
.LatexName{
font-family: CMR;
font-size: 27px;
text-align: center;
margin-bottom: 13px;
}
.LatexDate{
font-family: CMR;
font-size: 27px;
text-align: center;
margin-top: 13px;
margin-bottom: 45px;
}
.LatexAbstract{
font-family: CMB;
font-weight: bold;
font-size: 25px;
text-align: center;
margin-bottom: 10px;
}
.LatexAbstractText{
margin-top:10px;
font-family: CMR;
font-size: 21px;
text-align: center;
text-align: justify;
text-indent: 20px
}
.Margins{
padding-left: 21%;
width: 58%;
}
.AbstractMargins{
padding-left: 6%;
width: 88%;
padding-bottom: 15px;
}
.Section{
font-family: CMB;
font-size: 33px;
text-align: Left;
margin-top: 13px;
margin-bottom: 20px;
}
.SubSection{
font-family: CMB;
font-size: 29px;
text-align: Left;
margin-top: 13px;
margin-bottom: 20px;
}
.BodyText{
font-family: CMR;
font-size: 23px;
text-align: Left;
margin-top: 13px;
margin-bottom: 45px;
line-height: 125%;
column-count: 1;
}
.BodyText2Col{
font-family: CMR;
font-size: 23px;
text-align: Left;
margin-top: 13px;
margin-bottom: 45px;
line-height: 125%;
column-count: 2;
}
.BodyText3Col{
font-family: CMR;
font-size: 23px;
text-align: Left;
margin-top: 13px;
margin-bottom: 45px;
line-height: 125%;
column-count: 3;
}
.Justified{
text-align: justify;
text-justify: inter-word;
}
.footerSize{
height: 30vh;
width: 100%;
}
.tiny{
font-size: 8px;
}
.scriptsize{
font-size: 11px;
}
.footnotesize{
font-size: 13px;
}
.small{
font-size: 15px;
}
.normalsize{
font-size: 18px;
}
.large{
font-size: 19px;
}
.Large{
font-size: 23px;
}
.LARGE{
font-size: 28px;
}
.huge{
font-size: 33px;
}
.HUGE{
font-size: 33px;
}
|