-
Notifications
You must be signed in to change notification settings - Fork 0
/
article_3.tex
executable file
·182 lines (134 loc) · 7.75 KB
/
article_3.tex
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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Stylish Article
% LaTeX Template
% Version 2.2 (2020-10-22)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Original author:
% Mathias Legrand ([email protected])
% With extensive modifications by:
% Vel ([email protected])
%
% Changelog (svenwinkelmann):
% - color schema
% - changed content/examples to fit trends in media engineering lecture
%
% License:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%----------------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------
\documentclass[fleqn,10pt]{SelfArx} % Document font size and equations flushed left
\usepackage[english]{babel} % Specify a different language here - english by default
\usepackage{lipsum} % Required to insert dummy text. To be removed otherwise
%----------------------------------------------------------------------------------------
% COLUMNS
%----------------------------------------------------------------------------------------
\setlength{\columnsep}{0.55cm} % Distance between the two columns of text
\setlength{\fboxrule}{0.0pt} % Width of the border around the abstract
%----------------------------------------------------------------------------------------
% COLORS
%----------------------------------------------------------------------------------------
\definecolor{color1}{RGB}{199,36,38} % Color of the article title and sections
\definecolor{color2}{RGB}{0,20,20} % Color of the boxes behind the abstract and headings
%----------------------------------------------------------------------------------------
% HYPERLINKS
%----------------------------------------------------------------------------------------
\usepackage{hyperref} % Required for hyperlinks
\hypersetup{
hidelinks,
colorlinks,
breaklinks=true,
urlcolor=color2,
citecolor=color1,
linkcolor=color1,
bookmarksopen=false,
pdftitle={Title},
pdfauthor={Author},
}
%----------------------------------------------------------------------------------------
% ARTICLE INFORMATION
%----------------------------------------------------------------------------------------
\JournalInfo{Trends in Media Engineering, BME} % Journal information
\Archive{WiSe2023/24} % Additional notes (e.g. copyright, DOI, review/research article)
\PaperTitle{Your Topic} % Article title
\Authors{Your Name\textsuperscript{1}} % Authors
\affiliation{\textsuperscript{1}\textit{Nuremberg Institute of Technology, Faculty of Electrical Engineering, Precision Engineering, Information Technology, Germany}} % Author affiliation
\Keywords{} % Keywords - if you don't want any simply remove all the text between the curly brackets
\newcommand{\keywordname}{Keywords} % Defines the keywords heading name
%----------------------------------------------------------------------------------------
% ABSTRACT
%----------------------------------------------------------------------------------------
\Abstract{Write a short summary about your topic. The summary should be in a way that someone is able to understand the major results of your work, without reading the complete document. Generally it is a good approach to write 1-2 sentences for each section, thus you will end up with roughly 5-8 sentences.}
%----------------------------------------------------------------------------------------
\begin{document}
\maketitle % Output the title and abstract box
\thispagestyle{empty} % Removes page numbering from the first page
%----------------------------------------------------------------------------------------
% ARTICLE CONTENTS
%----------------------------------------------------------------------------------------
\section*{Introduction} % The \section*{} command stops section numbering
Write in the introduction what your task is and how you want to achieve it. You should also describe your use case, so that our reader is able to understand the fundamentals (feel free to use some examples we have discussed during our discussions). Try to be as concise as possible and use the terminology you have learned during the course.
\section*{Concept}
In this section you should describe the concept you plan to implement. This may include:
\begin{itemize}[noitemsep] % this is how you create a bullet list of items. An enumeration you do with \begin{enumerate}[noitemsep]
\item User Model
\item Context
\item Datasets
\item ..
\end{itemize}
\noindent As this is your concept, it should not be related too much to the technology in which you implement. If you have a good idea and describe it here and later on you will realize that it is not possible to implement, this is completely fine - as long as you discuss it in the section discussion.
\section*{Methods}
In this section you should describe the technology you use for implementing your concept. Describe it in a way that someone else is able to use the technology and help him/her as most as you can. Our readers want to learn from your experiences! Feel free to point them to materials (URLs, Tutorials, Book, Whitepaper, ..) you consider valuable.
\noindent If you need a mathematical equation you can either include it within text by using $\cos\pi=-1$ or:
\begin{equation}
\cos^3 \theta =\frac{1}{4}\cos\theta+\frac{3}{4}\cos 3\theta
\label{eq:refname2}
\end{equation}
\noindent If you want to include an image, add it as png or pdf to the folder Figures and add:
\begin{figure}[ht]\centering % Using \begin{figure*} makes the figure take up the entire width of the page
\includegraphics[width=\linewidth]{view} % file name of the image without extension
\caption{Picture}
\label{fig:view} % using this label with \ref{fig:view} you can reference it within text
\end{figure}
\LaTeX will position the image somewhere on the page, which is completely fine. Do not try to force \LaTeX to insert the image at a specific position, rather link it from text. Example: As shown in Figure~\ref{fig:view} there is a beautiful view from the mountain.
\section*{Discussion}
In this section you discuss your evaluated technology. Your analysis should be from a neutral point of view; our readers do not want to read a glossy marketing text. It should be clear what parts of your concept were possible to implement and which problems you have encountered. To make it clear, it is not your fault if something did not work out, but it will be your fault if you do not discuss it properly.
\noindent Tables are a little bit cumbersome, but you will get used to it:
\begin{table}[hbt]
\caption{Table of Grades}
\centering
\begin{tabular}{llr}
\toprule
\multicolumn{2}{c}{Name} \\
\cmidrule(r){1-2}
First name & Last Name & Grade \\
\midrule
John & Doe & $7.5$ \\
Richard & Miles & $2$ \\
\bottomrule
\end{tabular}
\label{tab:label}
\end{table}
\noindent If you consider it as valuable you may add paragraphs in the following way:
\paragraph{Pro} \lipsum[8] % Dummy text
\paragraph{Con} \lipsum[8] % Dummy text
\section*{Materials}
Please add in this section what references you have used.
\begin{itemize}[noitemsep] % this is how you create a bullet list of items. An enumeration you do with \begin{enumerate}[noitemsep]
\item \url{www.fancytutorialaboutX.com} [28.11.2022]
\item Ohm, Georg S.: Best book ever
\item Tutorial on newest feature of whatever
\end{itemize}
%----------------------------------------------------------------------------------------
% REFERENCE LIST
%----------------------------------------------------------------------------------------
%\phantomsection
%\bibliographystyle{unsrt}
%\bibliography{sample.bib}
%----------------------------------------------------------------------------------------
\end{document}