%%
% Template created by: Adam Mazurkiewicz-Madej 2021
%
% For a live latex editor with a preview visit www.overleaf.com
% If overleaf is reporting errors in latex src, the pipeline will also fail.
%
%
% Image reasources have to be located in the ./sources/latex/images/ directory.
% They can be included by using the following command:
%   \includegraphics[width=<value>]{<file name>}
%   where <value> is either \textwidth or \linewidth multiplied by percentage,
%   e.g. width=0.5\textwidth which is equivalent to 50% of page width;
%
%   It can also be an absolute value (cm or pt), e.g. width=1.5cm
%
%   and <file name> is the file name (I know, big surprise)
%
%
% Section header can be defined using the following command:
%   \section{\fontfamily{lmss}\selectfont <section name>}
%
%
% New lines cen be explicitly added through double backslash: \\
%
%
% This should be enough to get you started with latex and basic editing.
%
% For more information reach out to google.com and www.overleaf.com/learn
%
%%

\documentclass{article}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{hyperref}
\hypersetup{
    colorlinks=true,
    linkcolor=black,
    filecolor=blue,
    urlcolor=blue,
    }
\usepackage{setspace}
\usepackage{geometry}
 \geometry{
 a4paper,
 total={170mm,245mm},
 left=20mm,
 top=20mm,
 }

1
\graphicspath{ {./sources/latex/images/} }

\pagestyle{fancy}

\setlength\parindent{0pt}
\setlength{\headheight}{41.60025pt}

\fancyhf{}
\rhead{\includegraphics[width=1.5cm]{logo}}
\lhead{\fontfamily{lmss}\selectfont __pluginDisplayName__ Manual \\ IDM}
\lfoot{\fontfamily{lmss}\selectfont \today}
\rfoot{\fontfamily{lmss}\selectfont \thepage}

\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}

\begin{document}

{\fontfamily{lmss}\selectfont

    % Title Page
    \begin{titlepage}
        \begin{center}
           \includegraphics[width=0.6\textwidth]{logo} \\
        \end{center}
           \vspace{1cm}
           \huge
           \begin{doublespace}
                IDM Plugin \\
                __pluginDisplayName__ Manual \\
                \Large
                Version: %%VERSION_NUMBER%%
                \vfill
                \large
               Created by: \\
               \normalsize
               __companyName__ \\
               <developer name>

              \vspace{0.2cm}
                \href{mailto:__supportMail__}{__supportMail__}

               % T: \href{tel:+4315353422}{+43 1 535 34 22}
           \end{doublespace}

    \end{titlepage}


    % Table of Contents
    \fontfamily{lmss}\selectfont \tableofcontents


    % Overview
    \section{\fontfamily{lmss}\selectfont Overview}
    __companyName__ team has created a plugin for ...
    \\
    \\
    For more information, reach out to \href{mailto:__supportMail__}{__supportMail__}.

    % Pre-requisites
    \subsection{\fontfamily{lmss}\selectfont Pre-requisites}
    \begin{itemize}
      \item JDK __javaVersion__
      \item IdentityIQ __minSystemVersion__+ installed
      \item Plugin Installed
      \item \textbf{The following options have to be set in the \texttt{iiq.properties} file} \begin{itemize}
          \item \texttt{plugins.enabled} has to be set to true
          \item \texttt{plugins.importObjects} has to be set to true
          \item \texttt{plugins.angularSnippetEnabled} has to be set to true
        \end{itemize}
    \end{itemize}

    % How it works
    \subsection{\fontfamily{lmss}\selectfont How it works}
    <short plugin description>

    % Installation Steps
    \subsection{\fontfamily{lmss}\selectfont Installation Steps}
    As an Administrator, navigate to \textbf{Gear \texttt{>} Plugins} menu and click \textbf{+ New} button.\\\\
    Select or drop \textbf{plugin-name.zip} file (installer) into the Drag and Drop area.\\\\
    After installation, the page will refresh itself to show the newly added plugin.\\

    % 50% of a page is equal to 0.5 * \linewidth (but the * sing is ommitted)
    \includegraphics[width=0.5\linewidth]{installed}\\

    % Overall Functionality
    \subsection{\fontfamily{lmss}\selectfont Overall Functionality}
    <Short functionality showcase with screenshots>

}

\end{document}
