% Title of paper
\newcommand{\papertitel}{Title (Arial 14 pt, bold, left aligned)}
% Speaker
\newcommand{\speaker}{academic title, first name, last name, company, country of the speaker}
% Co-authors
\newcommand{\coautors}{academic title, first name, last name, company, country of the co-authors}
% Keywords
\newcommand{\keywords}{Mode-stirred chamber, Reverberation chamber, Statistical distribution, Correlation, Transmission line theory, Immunity test, Electromagnetic compatibility, Directivity, Absorber chamber, Waveguide, DUT model}
% load central settings
\input{Settings}
\begin{document}
%\includepdf{EMV2022_Full_Paper_template}
% rename bibliography
\renewcommand{\refname}{References}%
% compress bibliography
\let\oldbibliography\thebibliography
\renewcommand{\thebibliography}[1]{%
\oldbibliography{#1}%
\setlength{\itemsep}{0pt}%
\setlength{\parskip}{0pt}%
}
% alignment to the left
%\flushleft
% without this command, justification is used
% detect mode from siunitx automatically
\sisetup{detect-mode=true}
% switch off page numbering
\pagestyle{empty}
\fontsize{14pt}{14pt}{\bfseries
\papertitel
}
\vspace{3ex}
\fontsize{11pt}{11pt}
%\textbf{Speaker:}
\speaker \\%[0.7ex]
%\textbf{Co-authors:}
\coautors
\vspace{2ex}
\section{Main heading 1 (Arial 11 pt, bold, left aligned)}
Start to write your full paper here (Arial 11 pt, justified). Pictures, graphics, tables etc. can be included here.
The measurement setup is shown in Figure~\ref{fig:setup}.
\begin{figure}
\centering
\begin{tikzpicture}
% Signal generator
\node[draw] (sg) {Signal generator};
% Spectrum analyzer
\node[draw,right=of sg] (sa) {Spectrum analyzer};
% Connecting arrow
\draw[->] (sg) -- (sa);
\end{tikzpicture}
\caption{Measurement setup (Subtitle picture, Arial 10 pt, left-aligned, justified if there is a lot of text)}
\label{fig:setup}
\end{figure}
The measurement result is shown in Figure~\ref{fig:result}.
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis}[
xlabel={Time, $t$ in \si{\second}},
ylabel={Voltage, $u(t)$ in \si{\volt}},
width=0.8\textwidth,
height=0.25\textwidth,
xmin=0,xmax=1,
ymin=0,ymax=1,
]
\addplot+[
domain=0:1,
samples=21,
]{rnd};
\addlegendentry{Measured values}
\end{axis}
\end{tikzpicture}
\caption{Measurement result (Subtitle picture, Arial 10 pt, left-aligned, justified if there is a lot of text)}
\label{fig:result}
\end{figure}
An example tabular listing is shown in table~\ref{tab:example_table}.
\begin{table}
\centering
\begin{tabular}{@{}p{0.15\textwidth}p{0.15\textwidth}p{0.15\textwidth}p{0.15\textwidth}p{0.15\textwidth}@{}}
\toprule
Lorem & Ipsum & Dolor & Sit & Amet \\
\midrule
consectetuer & sed diam & sed diam & sed diam & sed diam \\
\midrule
adipiscing & sed diam & sed diam & sed diam & sed diam \\
\midrule
elit & sed diam & sed diam & sed diam & sed diam \\
\bottomrule
\end{tabular}
\caption{Example table (Arial 10 pt, left-aligned, justified if there is a lot of text)}
\label{tab:example_table}
\end{table}
\subsection{Subtitle 1 (Arial 11 pt, bold, left aligned)}
Here you can insert subthemes (Arial 11 pt, justified).
\blindtext
\subsubsection{Subtitle 2 (Arial 11 pt, left-aligned)}
Here you can insert further subthemes (Arial 11 pt, justified).
\nocite{source1,source2}
% list of references
\bibliographystyle{plaindin} % German DIN style
\bibliography{literature}
\end{document}