% This template has been tested with LLNCS DOCUMENT CLASS -- version 2.21 (12-Jan-2022)12% !TeX spellcheck = en-US3% LTeX: language=en-US4% !TeX encoding = utf85% !TeX program = lualatex6% !TeX TXS-program:compile = txs:///lualatex/[--shell-escape]7% !BIB program = bibtex8% -*- coding:utf-8 mod:LaTeX -*-910% "a4paper" enables:11%12% - easy print out on DIN A4 paper size13%14% One can configure default page size (a4 vs. letter) in the LaTeX installation.15% Thus, it is configuration dependend, what the paper size will be.16% Having "a4paper" option present, the page size is set to A4.17% Note that the current word template offered by Springer is DIN A4.18%19% "runningheads" enables:20%21% - page number on page 2 onwards22% - title/authors on even/odd pages23%24% This is good for other readers to enable proper archiving among other papers and pointing to25% content. Even if the title page states the title, when printed and stored in a folder, when26% blindly opening the folder, one could hit not the title page, but an arbitrary page. Therefore,27% it is good to have title printed on the pages, too.28%29% The optiion "runningheads" neesd to be removed upon request of the publisher.30%31% To disable outputting page headers and footers, remove "runningheads"32\documentclass[runningheads,a4paper,english]{llncs}[2022/01/12]3334\usepackage{iftex}3536% backticks (`) are rendered as such in verbatim environments.37% See following links for details:38% - https://tex.stackexchange.com/a/341057/907539% - https://tex.stackexchange.com/a/47451/907540% - https://tex.stackexchange.com/a/166791/907541\usepackage{upquote}4243% Set English as language and allow to write hyphenated"=words44%45% Even though `american`, `english` and `USenglish` are synonyms for babel package (according to https://tex.stackexchange.com/questions/12775/babel-english-american-usenglish), the llncs document class is prepared to avoid the overriding of certain names (such as "Abstract." -> "Abstract" or "Fig." -> "Figure") when using `english`, but not when using the other 2.46% english has to go last to set it as default language47\usepackage[ngerman,main=english]{babel}48%49% Hint by http://tex.stackexchange.com/a/321066/9075 -> enable "= as dashes50\addto\extrasenglish{\languageshorthands{ngerman}\useshorthands{"}}5152% Links behave as they should. Enables "\url{...}" for URL typesettings.53% Allow URL breaks also at a hyphen, even though it might be confusing: Is the "-" part of the address or just a hyphen?54% See https://tex.stackexchange.com/a/3034/9075.55\usepackage[hyphens]{url}5657% When activated, use text font as url font, not the monospaced one.58% For all options see https://tex.stackexchange.com/a/261435/9075.59% \urlstyle{same}6061% Improve wrapping of URLs - hint by http://tex.stackexchange.com/a/10419/907562\makeatletter63\g@addto@macro{\UrlBreaks}{\UrlOrds}64\makeatother6566% nicer // - solution by http://tex.stackexchange.com/a/98470/907567% DO NOT ACTIVATE -> prevents line breaks68%\makeatletter69%\def\Url@twoslashes{\mathchar`\/\@ifnextchar/{\kern-.2em}{}}70%\g@addto@macro\UrlSpecials{\do\/{\Url@twoslashes}}71%\makeatother7273%% !!! If you change the font, be sure that words such as "workflow" can74%% !!! still be copied from the PDF. If this is not the case, you have75%% !!! to use glyphtounicode. See comment at cmap package.76%%77%% Background: "workflow" contains "fl" which is a ligature, which in turn78%% is rendered as one character in the PDF and needs to be split79%% whily copying.8081\ifluatex82\usepackage[no-math]{fontspec}83\usepackage{unicode-math}8485% Typewriter font (for source code etc)86% Use New Computer Modern font (Computer Modern is the default LaTeX font; this is the implemented modern variant)87% Source: https://tug.org/FontCatalogue/newcomputermoderntypewriter/8889\setmainfont[90ItalicFont=NewCM10-Italic.otf,91BoldFont=NewCM10-Bold.otf,92BoldItalicFont=NewCM10-BoldItalic.otf,93SmallCapsFeatures={Numbers=OldStyle}]{NewCM10-Regular.otf}9495\setsansfont[96ItalicFont=NewCMSans10-Oblique.otf,97BoldFont=NewCMSans10-Bold.otf,98BoldItalicFont=NewCMSans10-BoldOblique.otf,99SmallCapsFeatures={Numbers=OldStyle}]{NewCMSans10-Regular.otf}100101\setmonofont[ItalicFont=NewCMMono10-Italic.otf,102BoldFont=NewCMMono10-Bold.otf,103BoldItalicFont=NewCMMono10-BoldOblique.otf,104SmallCapsFeatures={Numbers=OldStyle}]{NewCMMono10-Regular.otf}105106\setmathfont{NewCMMath-Regular.otf}107108% Enable proper ligatures109% For more information see https://ctan.org/pkg/selnolig110% language "english" or "ngerman" is passed to selnolig by the document class111\usepackage{selnolig}112113\else114% This is the modern package for "Computer Modern".115% In case this gets activated, one has to switch from cmap package to glyphtounicode (in the case of pdflatex)116\usepackage[%117rm={oldstyle=false,proportional=true},%118sf={oldstyle=false,proportional=true},%119% By using 'variable=true' the monospaced font can be used as variable font (with differents widths per letter)120% However, this makes listings look ugly.121tt={oldstyle=false,proportional=true,variable=false},%122qt=false%123]{cfr-lm}124125% Has to be loaded AFTER any font packages. See https://tex.stackexchange.com/a/2869/9075.126\usepackage[T1]{fontenc}127\fi128129% Character protrusion and font expansion. See http://www.ctan.org/tex-archive/macros/latex/contrib/microtype/130131\usepackage[132babel=true, % Enable language-specific kerning. Take language-settings from the languge of the current document (see Section 6 of microtype.pdf)133expansion=alltext,134protrusion=alltext-nott, % Ensure that at listings, there is no change at the margin of the listing135% In the standard configuration, this template is always in the final mode, so this option only makes a difference if "pros" use the draft mode136final % Always enable microtype, even if in draft mode. This helps finding bad boxes quickly.137]{microtype}138139% \texttt{test -- test} keeps the "--" as "--" (and does not convert it to an en dash)140\DisableLigatures{encoding = T1, family = tt* }141142%\DeclareMicrotypeSet*[tracking]{my}{ font = */*/*/sc/* }%143%\SetTracking{ encoding = *, shape = sc }{ 45 }144% Source: http://homepage.ruhr-uni-bochum.de/Georg.Verweyen/pakete.html145% Deactiviated, because does not look good146147\usepackage{graphicx}148149% Diagonal lines in a table - http://tex.stackexchange.com/questions/17745/diagonal-lines-in-table-cell150% Slashbox is not available in texlive (due to licensing) and also gives bad results. Thus, we use diagbox151\usepackage{diagbox}152153\ifluatex154\usepackage{spelling}155\spellingoutput{off}156\fi157158\usepackage[dvipsnames, table]{xcolor}159% See https://github.com/gpoore/minted160\usepackage[newfloat]{minted}161162\setminted{163% Line numbers not flowing out of the margin164numbersep=5pt,165xleftmargin=12pt,166%167% Better listing breaking168breakafter=-/\{,169breakbefore=\\170%171% Alternative: Rely on pygment's tokenizer. Does not work well with LaTeX and comments172% breakbytoken=true,173% breakbytokenanywhere=true174}175176%\usemintedstyle{bw} %black and white style177%\usemintedstyle{vs} %visual studio178\usemintedstyle{friendly_grayscale}179%\usemintedstyle{friendly}180%\usemintedstyle{eclipse} %http://www.jevon.org/wiki/Eclipse_Pygments_Style181%\usemintedstyle{autumn}182%\usemintedstyle{rrt}183%\usemintedstyle{borland}184185% We need to load caption to have a bold font on the label186% The other parameters mimic the layout of the LNCS class187\usepackage[labelfont=bf,font=small,skip=4pt]{caption}188\SetupFloatingEnvironment{listing}{name=List.,within=none}189190% When using both minted and listings191% Compatibility of packages minted and listings with respect to the numbering of "List." caption192% Source: https://tex.stackexchange.com/a/269510/9075193% \AtBeginEnvironment{listing}{\setcounter{listing}{\value{lstlisting}}}194% \AtEndEnvironment{listing}{\stepcounter{lstlisting}}195196% Intermediate solution for hyperlinked refs. See https://tex.stackexchange.com/q/132420/9075 for more information.197\newcommand{\labelline}[1]{\label[line]{#1}\hypertarget{#1}{}}198\newcommand{\refline}[1]{\hyperlink{#1}{\FancyVerbLineautorefname~\ref*{#1}}}199200% For easy quotations: \enquote{text}201% This package is very smart when nesting is applied, otherwise textcmds (see below) provides a shorter command202\usepackage[autostyle=true]{csquotes}203204% Enable using "`quote"' - see https://tex.stackexchange.com/a/150954/9075205\defineshorthand{"`}{\openautoquote}206\defineshorthand{"'}{\closeautoquote}207208% Nicer tables (\toprule, \midrule, \bottomrule)209\usepackage{booktabs}210211% Extended enumerate, such as \begin{compactenum}212\usepackage{paralist}213214% Bibliopgraphy enhancements215% - enable \cite[prenote][]{ref}216% - enable \cite{ref1,ref2}217% Alternative: \usepackage{cite}, which enables \cite{ref1, ref2} only (otherwise: Error message: "White space in argument")218219% Doc: http://texdoc.net/natbib220\usepackage[%221square, % for square brackets222comma, % use commas as separators223numbers, % for numerical citations;224%sort % orders multiple citations into the sequence in which they appear in the list of references;225sort&compress % as sort but in addition multiple numerical citations are compressed if possible (as 3-6, 15);226]{natbib}227228% In the bibliography, references have to be formatted as 1., 2., ... not [1], [2], ...229\renewcommand{\bibnumfmt}[1]{#1.}230231% Enable hyperlinked author names in the case of \citet232% Source: https://tex.stackexchange.com/a/76075/9075233\usepackage{etoolbox}234\makeatletter235\patchcmd{\NAT@test}{\else \NAT@nm}{\else \NAT@hyper@{\NAT@nm}}{}{}236\makeatother237238% Prepare more space-saving rendering of the bibliography239% Source: https://tex.stackexchange.com/a/280936/9075240\SetExpansion241[ context = sloppy,242stretch = 30,243shrink = 60,244step = 5 ]245{ encoding = {OT1,T1,TS1} }246{ }247248% Put figures aside a text249% Even though the package is from 1998, it works well250\usepackage[rflt]{floatflt}251252% Farbige Tabellen253% ----------------254% Das Paket colortbl wird inzwischen automatisch durch xcolor geladen255%256% Erweiterte Funktionen innerhalb von Tabellen257% --------------------------------------------258%%% Doc: http://mirror.ctan.org/tex-archive/macros/latex/contrib/multirow/multirow.sty259\usepackage{multirow} % Mehrfachspalten260%261%%% Doc: Documentation inside dtx Package262\usepackage{dcolumn} % Ausrichtung an Komma oder Punkt263264%%% Doc: http://mirror.ctan.org/tex-archive/macros/latex/contrib/supertabular/supertabular.pdf265%\usepackage{supertabular}266267%%% Fussnoten/Endnoten ===================================================268269% EN: Put footnotes below floats270% DE: Fußnoten unter Gleitumgebungen ("floats") platzieren271% Source: https://tex.stackexchange.com/a/32993/9075272\usepackage{stfloats}273\fnbelowfloat274275% EN: Extended support for footnotes276% DE: Fußnoten277%278%\usepackage{dblfnote} %Zweispaltige Fußnoten279%280% Keine hochgestellten Ziffern in der Fußnote (KOMA-Script-spezifisch):281%\deffootnote[1.5em]{0pt}{1em}{\makebox[1.5em][l]{\bfseries\thefootnotemark}}282%283% Abstand zwischen Fußnoten vergrößern:284%\setlength{\footnotesep}{.85\baselineskip}285%286% EN: Following command disables the separting line of the footnote287% DE: Folgendes Kommando deaktiviert die Trennlinie zur Fußnote288%\renewcommand{\footnoterule}{}289%290%\addtolength{\skip\footins}{\baselineskip} % Abstand Text <-> Fußnote291292% DE: Fußnoten immer ganz unten auf einer \raggedbottom-Seite293% DE: fnpos kommt aus dem yafoot package294%\usepackage{fnpos}295%\makeFNbelow296%\makeFNbottom297298% TODO (and comment) configuration299%300% - \todo (from todo, easy-todo, todonotes) / \TODO (from fixmetodonotes) - for "normal" TODOs301% - \todofix - "important" TODOs302%303% - \textcomment - highlights text and has a hover comment304% - \sidecomment - just puts a comment to the side. Note: \comment MUST NOT be used as command name, it is already defined by much packages (mathdesign, mindflow, verbatim, and others)305%306% - \missingfigure307%308% - \textmarker309% - \modified310% - \change - adresses a review comment311312% Enable nice comments313\usepackage{pdfcomment}314315\newcommand{\textcomment}[2]{\colorbox{yellow!60}{#1}\pdfcomment[color={0.234 0.867 0.211},hoffset=-6pt,voffset=10pt,opacity=0.5]{#2}}316317% Small PDF comment318% 1. Parameter: Comment319\newcommand{\sidecomment}[1]{\pdfcomment[color={0.045 0.278 0.643},voffset=4pt,icon=Note]{#1}}320% Disabled variant - for the final PDF321%\newcommand{\sidecomment}[1]{}322323\newcommand{\todo}[1]{TODO!\sidecomment{#1}}324325% Änderungen326%327% 1. Parameter: Review-Kommentar328% 2. Parameter: Neuer Text329\newcommand{\change}[2]{{\color{red}#2}\pdfcomment[color={0.234 0.867 0.211},voffset=8pt,opacity=0.5]{#1}}330% Disabled variant - for the final PDF331%\newcommand{\change}[2]{#2}332333% Define default commands334\makeatletter335\@ifundefined{missingfigure}{\newcommand{\missingfigure}{... missing figure ...}}{}336\@ifundefined{textcomment}{\newcommand{\textcomment}[2]{#1 \todo{#2}}}{}337\@ifundefined{sidecomment}{\newcommand{\sidecomment}[1]{\marginpar{#1}}}{}338\@ifundefined{todo}{\newcommand{\todo}[1]{\sidecomment{#1}}}{}339\@ifundefined{TODO}{\newcommand{\TODO}[1]{\todo{#1}}}{}340\@ifundefined{todofix}{\newcommand{\todofix}[1]{\todo{#1}}}{}341\@ifundefined{change}{\newcommand{\change}[2]{#1 $\rightarrow$ #2}}{}342\makeatother343344% Textmarker (Textfarbe rot)345\newcommand{\textmarker}[1]{{\color{red} #1}\xspace}346347% Modified (Text blau)348\newcommand{\modified}[1]{{\color{blue!60!black} #1}\xspace}349350\usepackage[group-minimum-digits=4,per-mode=fraction]{siunitx}351352% Enable that parameters of \cref{}, \ref{}, \cite{}, ... are linked so that a reader can click on the number an jump to the target in the document353\usepackage{hyperref}354355% Enable hyperref without colors and without bookmarks356\hypersetup{357hidelinks,358colorlinks=true, % Links erhalten Farben statt Kaeten359raiselinks=true, % calculate real height of the link360allcolors=black,361pdfstartview=Fit,362breaklinks=true, % Links ueberstehen Zeilenumbruch363hypertexnames=false, % Fix jumping to algorithm line - http://tex.stackexchange.com/a/156404/9075364}365366% Enable correct jumping to figures when referencing367\usepackage[all]{hypcap}368369\usepackage[caption=false,font=footnotesize]{subfig}370371% Alternative for making subfigures:372% Part of the caption package. See http://www.ctan.org/pkg/caption373% Ersetzt die Pakete subfigure und subfig - siehe https://tex.stackexchange.com/a/13778/9075374%375% (subfigure is outdated. subfig is maintained, but subcaption is better)376% See: http://tex.stackexchange.com/questions/13625/subcaption-vs-subfig-best-package-for-referencing-a-subfigure377%\usepackage[hypcap=true]{subcaption}378379\usepackage{mindflow}380381% Extensions for references inside the document (\cref{fig:sample}, ...)382% Enable usage \cref{...} and \Cref{...} instead of \ref: Type of reference included in the link383% That means, "Figure 5" is a full link instead of just "5".384\usepackage[capitalise,nameinlink]{cleveref}385386\crefname{section}{Sect.}{Sect.}387\Crefname{section}{Section}{Sections}388\crefname{listing}{List.}{List.}389\crefname{listing}{Listing}{Listings}390\Crefname{listing}{Listing}{Listings}391392% Intermediate solution for hyperlinked refs. See https://tex.stackexchange.com/q/132420/9075 for more information.393\newcommand{\llabel}[1]{\label[line]{#1}\hypertarget{#1}{}}394\newcommand{\lref}[1]{\hyperlink{#1}{\FancyVerbLineautorefname~\ref*{#1}}}395396\usepackage{lipsum}397398% For demonstration purposes only399% These packages can be removed when all examples have been deleted400\usepackage[math]{blindtext}401\usepackage{mwe}402\usepackage[realmainfile]{currfile}403\usepackage{tcolorbox}404\tcbuselibrary{minted}405406%introduce \powerset - hint by http://matheplanet.com/matheplanet/nuke/html/viewtopic.php?topic=136492&post_id=997377407\DeclareFontFamily{U}{MnSymbolC}{}408\DeclareSymbolFont{MnSyC}{U}{MnSymbolC}{m}{n}409\DeclareFontShape{U}{MnSymbolC}{m}{n}{410<-6> MnSymbolC5411<6-7> MnSymbolC6412<7-8> MnSymbolC7413<8-9> MnSymbolC8414<9-10> MnSymbolC9415<10-12> MnSymbolC10416<12-> MnSymbolC12%417}{}418\DeclareMathSymbol{\powerset}{\mathord}{MnSyC}{180}419420% Allows for defining commands that don't eat spaces.421\usepackage{xspace}422% Adds compatibility to \xspace und \enquote423\makeatletter424\xspaceaddexceptions{\grqq \grq \csq@qclose@i \} }425\makeatother426427\newcommand{\eg}{e.g.,\ }428\newcommand{\ie}{i.e.,\ }429430% Enable hyphenation at other places as the dash.431% Example: applicaiton\hydash specific432\makeatletter433\newcommand{\hydash}{\penalty\@M-\hskip\z@skip}434% Definition of "= taken from http://mirror.ctan.org/macros/latex/contrib/babel-contrib/german/ngermanb.dtx435\makeatother436437% Add manual adapted hyphenation of English words438% See https://ctan.org/pkg/hyphenex and https://tex.stackexchange.com/a/22892/9075 for details439\input{ushyphex}440441% correct bad hyphenation here442\hyphenation{443op-tical net-works semi-conduc-tor444% May not be hypphenated445AROMA TOSCA BPMN OASIS OMG DMTF IT DevOps446}447448\input{commands}449450% Add copyright451%452% This is recommended if you intend to send the version to colleagues453% See https://ctan.org/pkg/llncsconf for details454\iffalse455% state: intended | submitted | llncs456% you can add "crop" if the paper should be cropped to the format Springer is publishing457\usepackage[intended]{llncsconf}458459\conference{name of the conference}460461% in case of "proceedings" (final version!)462% example: \llncs{Anonymous et al. (eds). \emph{Proceedings of the International Conference on \LaTeX-Hacks}, LNCS~42. Some Publisher, 2016.}{0042}463% 0042 denotes an example start page464\llncs{book editors and title}{0042}465\fi466467\ifpdftex468% Enable copy and paste of text from the PDF469% Only required for pdflatex. It "just works" in the case of lualatex.470% Alternative: cmap or mmap package471% mmap enables mathematical symbols, but does not work with the newtx font set472% See: https://tex.stackexchange.com/a/64457/9075473% Other solutions outlined at http://goemonx.blogspot.de/2012/01/pdflatex-ligaturen-und-copynpaste.html and http://tex.stackexchange.com/questions/4397/make-ligatures-in-linux-libertine-copyable-and-searchable474% Trouble shooting outlined at https://tex.stackexchange.com/a/100618/9075475%476% According to https://tex.stackexchange.com/q/451235/9075 this is the way to go477\input{glyphtounicode}478\pdfgentounicode=1479\fi480\begin{document}481482\title{Paper Title}483% If Title is too long, use \titlerunning484%\titlerunning{Short Title}485486% Single insitute487\author{Firstname Lastname \and Firstname Lastname}488489% If there are too many authors, use \authorrunning490%\authorrunning{First Author et al.}491492\institute{Institute}493494%% Multiple insitutes - ALTERNATIVE to the above495% \author{%496% Firstname Lastname\inst{1} \and497% Firstname Lastname\inst{2}498% }499%500%If there are too many authors, use \authorrunning501% \authorrunning{First Author et al.}502%503% \institute{504% Insitute 1\\505% \email{...}\and506% Insitute 2\\507% \email{...}508%}509510\maketitle511512\begin{abstract}513\lipsum[1]514515\keywords{First keyword \and Second keyword \and Third keyword}516\end{abstract}517518519\section{Introduction}520\label{sec:introduction}521\lipsum[1-3]\todo{Refine me}522523The remainder of the paper starts with a presentation of related work (\cref{sec:relatedwork}).524It is followed by a presentation of hints on \LaTeX{} (\cref{sec:latexhints}).525Finally, a conclusion is drawn and outlook on future work is made (\cref{sec:outlook}).526527\section{Related Work}528\label{sec:relatedwork}529530Winery~\cite{Winery} is a graphical \textcomment{modeling}{modeling with one ``l'', because of American English} tool.531The whole idea of TOSCA is explained by \citet{Binz2009}.532533\section{LaTeX Hints}534\label{sec:latexhints}535536% Required for proper example rendering in the compiled PDF537\newcount\LTGbeginlineexample538\newcount\LTGendlineexample539\newenvironment{ltgexample}%540{\LTGbeginlineexample=\numexpr\inputlineno+1\relax}%541{\LTGendlineexample=\numexpr\inputlineno-1\relax%542\tcbinputlisting{%543listing only,544listing file=\currfilepath,545colback=green!5!white,546colframe=green!25,547coltitle=black!90,548coltext=black!90,549left=8mm,550title=Corresponding \LaTeX{} code of \texttt{\currfilepath},551minted language=TeX,552minted style=vs,553minted options={554fontsize=\footnotesize,555firstline=\the\LTGbeginlineexample,556lastline=\the\LTGendlineexample,557firstnumber=\the\LTGbeginlineexample,558breaklines,559linenos,560numbersep=8pt561}562}563}%564565This section contains hints on writing LaTeX.566It focuses on minimal examples, which can be directly adapted to the content567568\subsection{Handling of paragraphs}569570\begin{ltgexample}571One sentence per line.572This rule is important for the usage of version control systems.573A new line is generated with a blank line.574As you would do in Word:575New paragraphs are generated by pressing enter.576In LaTeX, this does not lead to a new paragraph as LaTeX joins subsequent lines.577In case you want a new paragraph, just press enter twice!578This leads to an empty line.579In word, there is the functionality to press shift and enter.580This leads to a hard line break.581The text starts at the beginning of a new line.582In LaTeX, you can do that by using two backslashes (\textbackslash\textbackslash).583\\584This is rarely used.585586Please do \textit{not} use two backslashes for new paragraphs.587For instance, this sentence belongs to the same paragraph, whereas the last one started a new one.588A long motivation for that is provided at \url{http://loopspace.mathforge.org/HowDidIDoThat/TeX/VCS/#section.3}.589\end{ltgexample}590591\subsection{Notes separated from the text}592593The package mindflow enables writing down notes and annotations in a way so that they are separated from the main text.594595\begin{ltgexample}596\begin{mindflow}597This is a small note.598\end{mindflow}599\end{ltgexample}600601\subsection{Handling TODOs}602603\begin{ltgexample}604\textmarker{Markierter Text.}605\end{ltgexample}606607Bei \verb1\textmarker1 wird nur die Textfarbe geändert, da dies auch bei einigen Worten gut funktioniert.608609\begin{ltgexample}610\textcomment{Markierter Text.}{Kommentar dazu.}611\end{ltgexample}612613\begin{ltgexample}614\modified{Manuelle Markierung für Text, der seit der letzten Version geändert wurde.}615\end{ltgexample}616617\begin{ltgexample}618Das ist ein Text.619\change{FL1: Text angepasst}{Geänderter Text}.620\end{ltgexample}621622\begin{ltgexample}623Hier nur ein Kommentar\sidecomment{Kommentar}.624\end{ltgexample}625626\begin{ltgexample}627\todo{Hier muss noch kräftig Text produziert werden}628\end{ltgexample}629630\subsection{Hyphenation}631632\LaTeX{} automatically hyphenates words.633When using \href{https://ctan.org/pkg/microtype}{microtype}, there should be fewer hyphenations than in other settings.634It might be necessary to tweak the hyphenations nevertheless.635Here are some hints:636637\begin{ltgexample}638In case you write \enquote{application-specific}, then the word will only be hyphenated at the dash.639You can also write \verb1applica\allowbreak{}tion-specific1 (result: applica\allowbreak{}tion-specific), but this is much more effort.640641You can now write words containing hyphens which are hyphenated at other places in the word.642For instance, \verb1application"=specific1 gets application"=specific.643This is enabled by an additional configuration of the babel package.644\end{ltgexample}645646\subsection{Typesetting Units}647648\begin{ltgexample}649Numbers can be written plain text (such as 100), by using the \href{https://ctan.org/pkg/siunitx}{siunitx} package as follows:650\SI{100}{\km\per\hour},651or by using plain \LaTeX{} (and math mode):652$100 \frac{\mathit{km}}{h}$.653\end{ltgexample}654655\begin{ltgexample}656\SI{5}{\percent} of \SI{10}{kg}657\end{ltgexample}658659\begin{ltgexample}660Numbers are automatically grouped: \num{123456}.661\end{ltgexample}662663\subsection{Surrounding Text by Quotes}664665\begin{ltgexample}666Please use the \enquote{enquote command} to quote something.667Quoting with "`quote"' or ``quote'' also works.668669\end{ltgexample}670671\subsection{Cleveref examples}672\label{sec:ex:cref}673674Cleveref demonstration: Cref at beginning of sentence, cref in all other cases.675676\begin{figure}677\centering678\includegraphics[width=.75\linewidth]{example-image-a}679\caption{Example figure for cref demo}680\label{fig:ex:cref}681\end{figure}682683\begin{table}684\centering685\begin{tabular}{ll}686\toprule687Heading1 & Heading2 \\688\midrule689One & Two \\690Thee & Four \\691\bottomrule692\end{tabular}693\caption{Example table for cref demo}694\label{tab:ex:cref}695\end{table}696697\begin{ltgexample}698\Cref{fig:ex:cref} shows a simple fact, although \cref{fig:ex:cref} could also show something else.699700\Cref{tab:ex:cref} shows a simple fact, although \cref{tab:ex:cref} could also show something else.701702\Cref{sec:ex:cref} shows a simple fact, although \cref{sec:ex:cref} could also show something else.703\end{ltgexample}704705\subsection{Figures}706707\begin{ltgexample}708\Cref{fig:label} shows something interesting.709710\begin{figure}711\centering712\includegraphics[width=.8\linewidth]{example-image-golden}713\caption[Simple Figure]{714Simple Figure.715Based on \citet{mwe}.716}717\label{fig:label}718\end{figure}719\end{ltgexample}720721One can also have pictures floating inside text:722\clearpage723724\begin{ltgexample}725\begin{floatingfigure}{.33\linewidth}726\includegraphics[width=.29\linewidth]{example-image-a}727\caption{A floating figure}728\end{floatingfigure}729\lipsum[2]730\end{ltgexample}731732\subsection{Sub Figures}733734An example of two sub figures is shown in \cref{fig:two_sub_figures}.735736\begin{ltgexample}737\begin{figure}[!b]738\centering739\subfloat[Case I]{\includegraphics[width=.4\linewidth]{example-image-a}%740\label{fig:first_case}}741\hfil742\subfloat[Case II]{\includegraphics[width=.4\linewidth]{example-image-b}%743\label{fig:second_case}}744\caption{Example figure with two sub figures.}745\label{fig:two_sub_figures}746\end{figure}747\end{ltgexample}748749\subsection{Tables}750751\begin{ltgexample}752\begin{table}753\caption{Simple Table}754\label{tab:simple}755\centering756\begin{tabular}{ll}757\toprule758Heading1 & Heading2 \\759\midrule760One & Two \\761Thee & Four \\762\bottomrule763\end{tabular}764\end{table}765\end{ltgexample}766767\begin{ltgexample}768% Source: https://tex.stackexchange.com/a/468994/9075769\begin{table}770\caption{Table with diagonal line}771\label{tab:diag}772\begin{center}773\begin{tabular}{|l|c|c|}774\hline775\diagbox[width=10em]{Diag \\Column Head I}{Diag Column\\Head II} & Second & Third \\776\hline777& foo & bar \\778\hline779\end{tabular}780\end{center}781\end{table}782\end{ltgexample}783784785\subsection{Source Code}786787\href{https://github.com/gpoore/minted}{minted} is a sophisticated package to enable properly highlighted listings.788It uses the \href{http://pygments.org/}{pygments} library, which in turn requires Python.789790\begin{ltgexample}791\Cref{lst:XML} shows source code written in XML.792\refline{line:comment} contains a comment.793794\begin{listing}[htbp]795\begin{minted}[linenos=true,escapeinside=||]{xml}796<listing name="example">797<!-- comment --> |\labelline{line:comment}|798<content>not interesting</content>799</listing>800\end{minted}801\caption{Example XML listing using minted}802\label{lst:XML}803\end{listing}804\end{ltgexample}805806One can also typeset JSON as shown in \cref{lst:flJSON}.807808\begin{ltgexample}809\begin{listing}[htbp]810\begin{minted}[linenos=true,escapeinside=||]{json}811{812key: "value"813}814\end{minted}815\caption{Example JSON listing using minted}816\label{lst:flJSON}817\end{listing}818\end{ltgexample}819820Java is also possible as shown in \cref{lst:flJava}.821822\begin{ltgexample}823\begin{listing}[htbp]824\begin{minted}[linenos=true,escapeinside=||]{java}825public class Hello {826public static void main (String[] args) {827System.out.println("Hello World!");828}829}830\end{minted}831\caption{Java code rendered using minted}832\label{lst:flJava}833\end{listing}834\end{ltgexample}835836\subsection{Itemization}837838One can list items as follows:839840\begin{ltgexample}841\begin{itemize}842\item Item One843\item Item Two844\end{itemize}845\end{ltgexample}846847848One can enumerate items as follows:849850\begin{ltgexample}851\begin{enumerate}852\item Item One853\item Item Two854\end{enumerate}855\end{ltgexample}856857858With paralist, one can even have all items typeset after each other and have them clean in the TeX document:859860\begin{ltgexample}861\begin{inparaenum}862\item All these items...863\item ...appear in one line864\item This is enabled by the paralist package.865\end{inparaenum}866\end{ltgexample}867868\subsection{Other Features}869870\begin{ltgexample}871The words \enquote{workflow} and \enquote{dwarflike} can be copied from the PDF and pasted to a text file.872\end{ltgexample}873874\begin{ltgexample}875The symbol for powerset is now correct: $\powerset$ and not a Weierstrass p ($\wp$).876877$\powerset({1,2,3})$878\end{ltgexample}879880\begin{ltgexample}881Brackets work as designed:882<test>883One can also input backticks in verbatim text: \verb|`test`|.884\end{ltgexample}885886887\section{Conclusion and Outlook}888\label{sec:outlook}889\lipsum[1-2]890891\subsubsection*{Acknowledgments}892893Identification of funding sources and other support, and thanks to individuals and groups that assisted in the research and the preparation of the work should be included in an acknowledgment section, which is placed just before the reference section in your document \cite{acmart}.894895%%% ===============================================================================896%%% Bibliography897%%% ===============================================================================898899In the bibliography, use \texttt{\textbackslash textsuperscript} for \enquote{st}, \enquote{nd}, \ldots:900E.g., \enquote{The 2\textsuperscript{nd} conference on examples}.901When you use \href{https://www.jabref.org}{JabRef}, you can use the clean up command to achieve that.902See \url{https://help.jabref.org/en/CleanupEntries} for an overview of the cleanup functionality.903904\renewcommand{\bibsection}{\section*{References}} % requried for natbib to have "References" printed and as section*, not chapter*905% Use natbib compatbile splncs04nat style.906% It does provide all features of splncs04.bst, but is developed in a clean way.907% Source: https://github.com/tpavlic/splncs04nat908\bibliographystyle{splncs04nat}909\begingroup910\microtypecontext{expansion=sloppy}911\small % ensure correct font size for the bibliography912\bibliography{paper}913\endgroup914915% Enfore empty line after bibliography916\ \\917%918\noindent919All links were last followed on October 5, 2020.920921%%% ===============================================================================922%\appendix923%\addcontentsline{toc}{chapter}{APPENDICES}924925%\listoffigures926%\listoftables927%%% ===============================================================================928929%%% ===============================================================================930%\section{My first appendix}\label{sec:appendix1}931%%% ===============================================================================932\end{document}933934935