blob: 536237d1b16f6586b3903e992c5582b9dd713e22 (
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
|
% Template for a single WLG article
%
% DOCUMENT CLASS OPTIONS:
%
% titlepage=specialprint Output special print ("Sonderdruck") title page
% suitable for single articles
% titlepage=issue Output title page for whole journal issue
% biblatex=true Load biblatex (with univie-ling style) internally
% covington=false Do not load covingtion package (Linguistic macros)
% expertfonts=true Use MinionPro instead of Crimson
\documentclass[titlepage=specialprint]{univie-ling-wlg}
\usepackage[utf8]{inputenc}
% Supported languages: naustrian, ngerman, english
\RequirePackage[naustrian]{babel}
% This is just for the dummy text
% Remove this and the \blind... macros for real documents
\usepackage{blindtext}
%
% EDITORIAL SETTINGS
%
% Start page number (default: 1)
%\startpage{15}
% Journal issue number and year
\issue{80}{2017}
% Title and subtitle of special issue
%\issuetitle{Titel des Themenhefts}
%\issuesubtitle{Untertitel des Themenhefts}
% Editor(s) of special issue
%\issueeditors{Vorname Name, Vorname Name und Vorname Name}
\begin{document}
% \aff: affiliationaof authors. The starred version marks the corresponding author [m = male] [f = female] [p = plural]
\author[Pan \and Meier]{Peter Pan\aff{Peter Pan, Institut für Experimentellen Bl\"odsinn, 66890 Neverland, pan@ieb.nv}
\and Paula Meier\aff*[f]{Paula Meier, Institut für Angewandten Unsinn, 11201 Utopos, meier@iau.edu}}
\title{Aufsatztitel}
\subtitle{Untertitel}
\maketitle
\begin{abstract}
% dummy text
\blindtext[1]
\end{abstract}
\keywords{Applied Linguistics, Discourse Analysis, Sociolinguistics, Text Analysis}
\section{Abschnitt}
\motto[Quelle]{Ein schickes Motto}
\blindtext
\begin{displayquote}
% dummy text
\blindtext
\end{displayquote}
% dummy text
\blindtext
% dummy text
\blindlistlist[3]{itemize}
% dummy text
\blindtext
% dummy text
\blindlistlist[3]{enumerate}
\end{document}
|