-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArticle.tex
More file actions
102 lines (83 loc) · 1.73 KB
/
Article.tex
File metadata and controls
102 lines (83 loc) · 1.73 KB
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
% Copyright (c) 2025 Bora Tascan
% SPDX-License-Identifier: MIT
% ********************************
% CONFIG BEGIN
% ********************************
\documentclass[
12pt,
oneside,
paper=a4,
parskip=full
]{scrartcl}
\setlength{\parskip}{1\baselineskip}
\renewcommand{\familydefault}{\sfdefault}
\setlength{\headheight}{0.1pt}
% ********************************
% PACKAGES
% ********************************
\usepackage{
amssymb,
amsmath,
amsthm,
bookmark,
cancel,
csquotes,
enumitem,
graphicx,
hyperref,
listings,
makeidx,
mathrsfs,
mathtools,
microtype,
multicol,
natbib,
nicefrac,
pgfplots,
scrlayer-scrpage,
setspace,
siunitx,
stmaryrd,
tikz,
ulem,
wrapfig,
xcolor
}
\setcounter{secnumdepth}{3}
\makeatletter
\ihead{\@author}
\chead{\@title}
\makeatother
% ********************************
% LST-CONFIG
% ********************************
\lstset{
basicstyle=\linespread{1.15}\ttfamily,
frame=single,
breakatwhitespace=false,
commentstyle=\color{teal},
escapeinside={\%*}{*)},
numbers=left,
numberstyle=\tiny\color{black},
showstringspaces=false,
}
% ********************************
% OTHER-CONFIG
% ********************************
\bibliographystyle{abbrvnat}
\setcitestyle{authoryear,open={(}, close={)}}
% ********************************
% USER INPUT
% ********************************
\usepackage[naustrian]{babel}
\title{Title of Paper}
\author{Author/s}
\date{Date}
\usepackage[most]{tcolorbox}
% ********************************
% CONFIG END
% ********************************
\begin{document}
\maketitle
% ...
\end{document}