Skip to content
Permalink
Browse files
Added option to hide Declaration and Ethics in output
  • Loading branch information
aa9863 committed Sep 20, 2018
1 parent d0f1ab0 commit 3a19218a1cecc097e72d4407434c1c4f3e166e2d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
@@ -8,6 +8,9 @@ keywords: Comma, Seperated, Keywords

degreetitle: 'BSc: Ethical Hacking and cybersecurity'

#Hide the Declaration and Ethics Form
draft: True

#Ethics form, REPLACE THIS WITH YOUR ONE
PDF-ethics: Supporting/ethics-certificate.pdf

@@ -290,19 +290,21 @@ $if(title)$
\maketitle
$endif$
%
$if(PDF-ethics)$
\includepdf[pages=-]{$PDF-ethics$}
$endif$
%

$if(TEX-declaration)$
\input{$TEX-declaration$}
$endif$
%
$if(PDF-declaration)$
\includepdf[pages=-]{$PDF-declaration$}
$endif$
%
$if(draft)$
$else$
$if(PDF-ethics)$
\includepdf[pages=-]{$PDF-ethics$}
$endif$
%
$if(TEX-declaration)$
\input{$TEX-declaration$}
$endif$
%
$if(PDF-declaration)$
\includepdf[pages=-]{$PDF-declaration$}
$endif$
%
$endif$ %Stop Hiding Stuff if not in draft mode
$if(abstract)$
\begin{abstract}
$abstract$

0 comments on commit 3a19218

Please sign in to comment.