158 lines
5 KiB
TeX
158 lines
5 KiB
TeX
\documentclass{article}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{eso-pic,graphicx}
|
|
\usepackage{pdfpages}
|
|
\usepackage{tabu}
|
|
\usepackage[top=2cm, bottom=2cm, outer=1.5cm, inner=1.5cm]{geometry}
|
|
% Make TOC clickable
|
|
\usepackage{hyperref}
|
|
\hypersetup{
|
|
colorlinks,
|
|
citecolor=black,
|
|
filecolor=black,
|
|
linkcolor=black,
|
|
urlcolor=black
|
|
}
|
|
\usepackage{etoolbox} % for \ifstrequal
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% NOTE TO EDITORS:
|
|
% Anything that you need to edit is marked with "EDIT THIS"
|
|
% grep/CTRL+F is your friend
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% VARIABLES
|
|
%----------------------------------------------------------------------------------------
|
|
\include{edit_this/10-variables}
|
|
|
|
\newcommand{\nextyear}{\the\numexpr\currentyear+1\relax}
|
|
|
|
\definecolor{fri_red}{RGB}{225, 48, 41}
|
|
|
|
\renewcommand{\contentsname}{Kazalo / Contents}
|
|
|
|
|
|
\begin{document}
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% TITLE PAGE
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
\begin{titlepage}
|
|
|
|
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}} % Defines a new command for the horizontal lines, change thickness here
|
|
|
|
\center % Center everything on the page
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% HEADING SECTIONS
|
|
%----------------------------------------------------------------------------------------
|
|
\vspace*{30pt}
|
|
|
|
% \includegraphics[width=0.3\textwidth]{ul_fri_logo.pdf}\\[1cm]
|
|
|
|
\textsc{\LARGE Univerza v Ljubljani}\\[0.4cm] %
|
|
\textcolor{fri_red}{\textsc{\LARGE Fakulteta za računalništvo in informatiko}}\\[1cm]
|
|
\textsc{\LARGE University of Ljubljana}\\[0.4cm] %
|
|
\textcolor{fri_red}{\textsc{\LARGE Faculty of Computer and Information Science}}\\[1.5cm]%Name of your university/college
|
|
\textsc{\large Zbornik}\\[0.5cm] % Minor heading such as course title
|
|
\textsc{\Large Digitalna forenzika}\\[0.5cm] % Major heading such as course name
|
|
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% TITLE SECTION
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
|
|
{ \Huge \bfseries Seminarske naloge,}\\[0.4cm] % Title of your document
|
|
{ \Huge \bfseries \currentyear/\nextyear}\\[0.4cm] % Title of your document
|
|
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% DATE SECTION
|
|
%----------------------------------------------------------------------------------------
|
|
\vspace*{300pt}
|
|
{\large Ljubljana, \currentyear}\\[2cm]
|
|
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
\vfill % Fill the rest of the page with whitespace
|
|
% \AddToShipoutPictureBG*{\includegraphics[width=\paperwidth,height=\paperheight]{ozadjeA4.png}}
|
|
\end{titlepage}
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% FOOTNOTE SECTION
|
|
%----------------------------------------------------------------------------------------
|
|
\pagenumbering{gobble}
|
|
\vspace*{\fill}
|
|
\noindent\rule{\textwidth}{0.4pt}
|
|
\\[0.5cm]
|
|
{\large Zbornik}\\[0.5cm]
|
|
{\large Digitalna forenzika, Seminarske naloge \currentyear/\nextyear}\\[0.5cm]
|
|
{\large Editors: \editors, študenti}\\[0.5cm]
|
|
{\large Template authors: David Klemenc, Miha Frangež}\\[0.5cm]
|
|
{\large Ljubljana : Univerza v Ljubljani, Fakulteta za računalništvo in informatiko \currentyear.}\\[0.5cm]
|
|
{\textcopyright These proceedings are for internal purposes and under copyright of University of Ljubljana, Faculty of Computer and Information Science. Any redistribution of the contents in any form is prohibited.
|
|
All rights reserved.}\\[0.5cm]
|
|
\noindent\rule{\textwidth}{0.4pt}
|
|
|
|
\clearpage
|
|
\pagenumbering{arabic}
|
|
|
|
%
|
|
% TABLE OF CONTENTS
|
|
%
|
|
|
|
\tableofcontents
|
|
|
|
\newpage
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% THE ACTUAL CONTENT
|
|
%%----------------------------------------------------------------------------------------
|
|
|
|
\section{Uvod / Introduction}
|
|
|
|
\input{edit_this/30-introduction}
|
|
|
|
\vspace*{\fill}
|
|
\begin{tabu} to \textwidth{ X[l] X[r] }
|
|
Ljubljana, \currentyear & \introauthor
|
|
\end{tabu}
|
|
|
|
\newpage
|
|
|
|
\section{Povzetki / Summaries}
|
|
|
|
\input{edit_this/50-summaries}
|
|
|
|
|
|
\newcommand{\lastsection}{} % stores last section name
|
|
|
|
\newcommand{\includework}[3]{%
|
|
\ifstrequal{#1}{\lastsection}{%
|
|
% same as last → only add subsection
|
|
\includepdf[
|
|
pages=-,
|
|
pagecommand={\thispagestyle{plain}},
|
|
addtotoc={1,subsection,1,{#3},{#3}}
|
|
]{#2}%
|
|
}{%
|
|
% different → add both section and subsection
|
|
\renewcommand{\lastsection}{#1}%
|
|
\includepdf[
|
|
pages=-,
|
|
pagecommand={\thispagestyle{plain}},
|
|
addtotoc={
|
|
1,section,1,{#1},{#1},
|
|
1,subsection,1,{#3},{#3}
|
|
}
|
|
]{#2}%
|
|
}%
|
|
}
|
|
|
|
\input{edit_this/70-pdf-includes}
|
|
|
|
\end{document}
|