summaryrefslogtreecommitdiff
path: root/support/style_showcase/style_showcase.html
blob: b0304267a330f6459bc06ba19386890241b370ce (plain)
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
309
310
311
312
313
<!doctype html>
<html>
<head>
  <title>LaTeX Article Style Showcase</title>
  <style type="text/css">
    body {font-family: sans-serif;
          width: 90%
          }
    div.large_head {background: #65a6d1;
       padding: .6ex;
       margin: .2ex;
       padding-left: 1ex;
       border-style: solid;
       border-width: thin;
       border-color: black
       }
    div.small_head {margin-top: 6ex;
           padding: .4ex;
           padding-left: .85ex;
           color: #808080;
           background: white;
           border-color: #61d89f;
           border-style: solid;
           border-width: thin;
      }
    a {color: #7277d8;
      }
    table {border-collapse: collapse;
      }
    table th {color: #a0a0a0;
      # border: 1px solid black;
      padding-left: 3ex;
      padding-right: 3ex;
      }
    table td { 
      text-align: center;
      vertical-align: top;
      }
    hr {
      margin-top: 6ex;
      }
    </style>
</head>

<body>
<div class='large_head'>
<h2>The LaTeX article style showcase</h2>
</div>

<p>
  This page allows you to see what some standard LaTeX article styles
  look like.
  Each is used in the same test document, for easy comparison.
  </p>

<div class='small_head'>
<h3>The standard LaTeX article style</h3>
</div>

<p>
  This is the result of using 
  <code>\documentclass[10pt]{article}</code>.
  For more, see
  <a href='http://mirror.ctan.org/macros/latex/doc'>the CTAN directory</a>.
  </p>

<table>
  <tr>
    <th>Source</th>
    <th>Output</th>
    <th>Pages</th>
    </tr>
  <tr>
    <td><a href='latex_article/style_showcase.tex'>.tex</a></td>
    <td><a href='latex_article/style_showcase.pdf'>.pdf</a></td>
    <td>
      <a href='latex_article/style_showcase.png.0'><img src="latex_article/style_showcase_small.png.0" alt="first page of standard LaTeX article style" /></a>
      <a href='latex_article/style_showcase.png.1'><img src="latex_article/style_showcase_small.png.1" alt="second page of standard LaTeX article style" /></a>
      <a href='latex_article/style_showcase.png.2'><img src="latex_article/style_showcase_small.png.2" alt="third page of standard LaTeX article style" /></a>
      <a href='latex_article/style_showcase.png.3'><img src="latex_article/style_showcase_small.png.3" alt="fourth page of standard LaTeX article style" /></a>
      <a href='latex_article/style_showcase.png.4'><img src="latex_article/style_showcase_small.png.4" alt="fifth page of standard LaTeX article style" /></a>
      </td>
    </tr>
  </table>




<div class='small_head'>
<h3>The standard AMS article style</h3>
</div>

<p>
  This is the result of using 
  <code>\documentclass[10pt]{amsart}</code>.
  For more, see
  <a href='http://mirror.ctan.org/macros/latex/required/amslatex/classes'>the CTAN directory</a>.
  </p>

<table>
  <tr>
    <th>Source</th>
    <th>Output</th>
    <th>Pages</th>
    </tr>
  <tr>
    <td><a href='amsart/style_showcase.tex'>.tex</a></td>
    <td><a href='amsart/style_showcase.pdf'>.pdf</a></td>
    <td>
      <a href='amsart/style_showcase.png.0'><img src="amsart/style_showcase_small.png.0" alt="first page of AMS article style" /></a>
      <a href='amsart/style_showcase.png.1'><img src="amsart/style_showcase_small.png.1" alt="second page of AMS article style" /></a>
      <a href='amsart/style_showcase.png.2'><img src="amsart/style_showcase_small.png.2" alt="third page of AMS article style" /></a>
      <a href='amsart/style_showcase.png.3'><img src="amsart/style_showcase_small.png.3" alt="fourth page of AMS article style" /></a>
      </td>
    </tr>
  </table>




<div class='small_head'>
<h3>The KOMA-Script style</h3>
</div>

<p>
  This is the result of using 
  <code>\documentclass[10pt]{scrarctl}</code>.
  For more, see
  <a href='http://mirror.ctan.org/macros/latex/contrib/koma-script'>the CTAN directory</a>.
  </p>

<table>
  <tr>
    <th>Source</th>
    <th>Output</th>
    <th>Pages</th>
    </tr>
  <tr>
    <td><a href='scrartcl/style_showcase.tex'>.tex</a></td>
    <td><a href='scrartcl/style_showcase.pdf'>.pdf</a></td>
    <td>
      <a href='scrarctl/style_showcase.png.0'><img src="scrarctl/style_showcase_small.png.0" alt="first page of KOMA-Script style" /></a>
      <a href='scrarctl/style_showcase.png.1'><img src="scrarctl/style_showcase_small.png.1" alt="second page of KOMA-Script style" /></a>
      <a href='scrarctl/style_showcase.png.2'><img src="scrarctl/style_showcase_small.png.2" alt="third page of KOMA-Script style" /></a>
      <a href='scrarctl/style_showcase.png.3'><img src="scrarctl/style_showcase_small.png.3" alt="fourth page of KOMA-Script style" /></a>
      <a href='scrarctl/style_showcase.png.4'><img src="scrarctl/style_showcase_small.png.4" alt="fifth page of KOMA-Script style" /></a>
      </td>
    </tr>
  </table>



<div class='small_head'>
<h3>The acmconf style</h3>
</div>

<p>
  This is the result of using 
  <code>\documentclass[10pt]{acmconf}</code>.
  For more, see
  <a href='http://tug.ctan.org/pkg/acmconf'>the package description</a>.
  </p>

<table>
  <tr>
    <th>Source</th>
    <th>Output</th>
    <th>Pages</th>
    </tr>
  <tr>
    <td><a href='acmconf/style_showcase.tex'>.tex</a></td>
    <td><a href='acmconf/style_showcase.pdf'>.pdf</a></td>
    <td>
      <a href='acmconf/style_showcase.png.0'><img src="acmconf/style_showcase_small.png.0" alt="first page of acmconf style" /></a>
      <a href='acmconf/style_showcase.png.1'><img src="acmconf/style_showcase_small.png.1" alt="second page of acmconf style" /></a>
      <a href='acmconf/style_showcase.png.2'><img src="acmconf/style_showcase_small.png.2" alt="third page of acmconf style" /></a>
      </td>
    </tr>
  </table>



<div class='small_head'>
<h3>The IEEEtran style</h3>
</div>

<p>
  This is the result of using 
  <code>\documentclass[10pt]{IEEEtran}</code>.
  For more, see
  <a href='http://tug.ctan.org/pkg/ieeetran'>the package description</a>.
  </p>

<table>
  <tr>
    <th>Source</th>
    <th>Output</th>
    <th>Pages</th>
    </tr>
  <tr>
    <td><a href='IEEEtran/style_showcase.tex'>.tex</a></td>
    <td><a href='IEEEtran/style_showcase.pdf'>.pdf</a></td>
    <td>
      <a href='IEEEtran/style_showcase.png.0'><img src="IEEEtran/style_showcase_small.png.0" alt="first page of IEEEtran style" /></a>
      <a href='IEEEtran/style_showcase.png.1'><img src="IEEEtran/style_showcase_small.png.1" alt="second page of IEEEtran style" /></a>
      <a href='IEEEtran/style_showcase.png.2'><img src="IEEEtran/style_showcase_small.png.2" alt="third page of IEEEtran style" /></a>
      </td>
    </tr>
  </table>


<div class='small_head'>
<h3>The aastex style</h3>
</div>

<p>
  This is the result of using 
  <code>\documentclass[10pt]{aastex}</code>.
  For more, see
  <a href='http://tug.ctan.org/pkg/aastex'>the package description</a>.
  </p>

<table>
  <tr>
    <th>Source</th>
    <th>Output</th>
    <th>Pages</th>
    </tr>
  <tr>
    <td><a href='aastex/style_showcase.tex'>.tex</a></td>
    <td><a href='aastex/style_showcase.pdf'>.pdf</a></td>
    <td>
      <a href='aastex/style_showcase.png.0'><img src="aastex/style_showcase_small.png.0" alt="first page of aastex style" /></a>
      <a href='aastex/style_showcase.png.1'><img src="aastex/style_showcase_small.png.1" alt="second page of aastex style" /></a>
      <a href='aastex/style_showcase.png.2'><img src="aastex/style_showcase_small.png.2" alt="third page of aastex style" /></a>
      <a href='aastex/style_showcase.png.3'><img src="aastex/style_showcase_small.png.3" alt="fourth page of aastex style" /></a>
      </td>
    </tr>
  </table>



<div class='small_head'>
<h3>The elsarticle style</h3>
</div>

<p>
  This is the result of using 
  <code>\documentclass[10pt]{elsarticle}</code>.
  For more, see
  <a href='http://tug.ctan.org/pkg/elsarticle'>the package description</a>.
  </p>

<table>
  <tr>
    <th>Source</th>
    <th>Output</th>
    <th>Pages</th>
    </tr>
  <tr>
    <td><a href='elsarticle/style_showcase.tex'>.tex</a></td>
    <td><a href='elsarticle/style_showcase.pdf'>.pdf</a></td>
    <td>
      <a href='elsarticle/style_showcase.png.0'><img src="elsarticle/style_showcase_small.png.0" alt="first page of elsarticle style" /></a>
      <a href='elsarticle/style_showcase.png.1'><img src="elsarticle/style_showcase_small.png.1" alt="second page of elsarticle style" /></a>
      <a href='elsarticle/style_showcase.png.2'><img src="elsarticle/style_showcase_small.png.2" alt="third page of elsarticle style" /></a>
      <a href='elsarticle/style_showcase.png.3'><img src="elsarticle/style_showcase_small.png.3" alt="fourth page of elsarticle style" /></a>
      <a href='elsarticle/style_showcase.png.4'><img src="elsarticle/style_showcase_small.png.4" alt="fifth page of elsarticle style" /></a>
      </td>
    </tr>
  </table>



<div class='small_head'>
<h3>The ijmart style</h3>
</div>

<p>
  This is the result of using 
  <code>\documentclass[10pt]{ijmart}</code>.
  For more, see
  <a href='http://tug.ctan.org/pkg/ijmart'>the package description</a>.
  </p>

<table>
  <tr>
    <th>Source</th>
    <th>Output</th>
    <th>Pages</th>
    </tr>
  <tr>
    <td><a href='ijmart/style_showcase.tex'>.tex</a></td>
    <td><a href='ijmart/style_showcase.pdf'>.pdf</a></td>
    <td>
      <a href='ijmart/style_showcase.png.0'><img src="ijmart/style_showcase_small.png.0" alt="first page of ijmart style" /></a>
      <a href='ijmart/style_showcase.png.1'><img src="ijmart/style_showcase_small.png.1" alt="second page of ijmart style" /></a>
      <a href='ijmart/style_showcase.png.2'><img src="ijmart/style_showcase_small.png.2" alt="third page of ijmart style" /></a>
      <a href='ijmart/style_showcase.png.3'><img src="ijmart/style_showcase_small.png.3" alt="fourth page of ijmart style" /></a>
      <a href='ijmart/style_showcase.png.4'><img src="ijmart/style_showcase_small.png.4" alt="fifth page of ijmart style" /></a>
      <a href='ijmart/style_showcase.png.5'><img src="ijmart/style_showcase_small.png.5" alt="sixth page of ijmart style" /></a>
      </td>
    </tr>
  </table>



<hr />
<a href='http://mirrors.ctan.org/macros/latex/contrib/style_showcase'>LaTeX style showcase</a>, by Jim Hefferon

</body>
</html>