|
@@ -0,0 +1,89 @@
|
|
|
+\documentclass[fontsize=12pt,DIV=18,BCOR=5mm,pagesize,draft=false,parskip=half]{scrartcl}
|
|
|
+\usepackage{ucs}
|
|
|
+\usepackage[utf8x]{inputenc}
|
|
|
+\usepackage[english]{babel}
|
|
|
+\usepackage[T1]{fontenc}
|
|
|
+%\usepackage{mathptmx} % Times-like font
|
|
|
+\KOMAoptions{DIV=last}
|
|
|
+
|
|
|
+%% METADATA DEFINED HERE. CHANGE ACCORDING TO YOUR DESIRED VALUES
|
|
|
+
|
|
|
+\newcommand{\dtitle}{Title of the Directive} %Title
|
|
|
+\newcommand{\dauthor}{Lord Daniel Ascarion} %Author, including title/rank
|
|
|
+\newcommand{\dpositions}{Director\\Imperial Security Bureau}
|
|
|
+\newcommand{\dbranch}{The Imperial Security Bureau} %Issuing branch
|
|
|
+\newcommand{\dabbrv}{DGE-123} %abbreviation of the directive
|
|
|
+\newcommand{\ddist}{All Galactic Empire Personnel} %distribution
|
|
|
+\newcommand{\dapplies}{Galactic Empire} %Applies to
|
|
|
+\newcommand{\ddatefrom}{Year 17, Day 123} %Date of Effect
|
|
|
+\newcommand{\ddateto}{N/A} %Date of Termination
|
|
|
+\newcommand{\dclearance}{UNRESTRICTED} %Security Clearance
|
|
|
+\newcommand{\dlocation}{Byden Complex, Imperial City Government District, CORUSCANT} %Location
|
|
|
+
|
|
|
+%% END OF METADATA. YOU SHOULD NOT CHANG ANYTHING UNTIL "`CONTENT STARTS HERE"'.
|
|
|
+
|
|
|
+\usepackage{graphicx}
|
|
|
+\usepackage{wrapfig}
|
|
|
+\usepackage{enumitem}
|
|
|
+\usepackage[pdfauthor={\dauthor},pdftitle={[\dclearance] \dtitle},pdfsubject={\dbranch},pdfkeywords={\dabbrv}]{hyperref}
|
|
|
+
|
|
|
+\usepackage{scrlayer-scrpage}
|
|
|
+\setkomafont{pageheadfoot}{\bfseries}
|
|
|
+\chead{[\dclearance]}
|
|
|
+
|
|
|
+\author{Daniel Ascarion}
|
|
|
+\publishers{Imperial Security Bureau}
|
|
|
+\title{Some Directive}
|
|
|
+
|
|
|
+\newcommand*{\empire}[1]{%
|
|
|
+ \LARGE\textbf{\MakeUppercase{#1}}\normalsize%
|
|
|
+}
|
|
|
+\newcommand*{\branch}[1]{%
|
|
|
+ \Large{\MakeUppercase{#1}}\normalsize%
|
|
|
+}
|
|
|
+\newcommand*{\location}[1]{%
|
|
|
+ \strut\hspace{26mm}\small#1\normalsize%
|
|
|
+}
|
|
|
+
|
|
|
+\begin{document}
|
|
|
+ \begin{wrapfigure}{l}{22mm}
|
|
|
+ \vspace{-15pt}
|
|
|
+ \includegraphics[width=22mm]{logo.png}
|
|
|
+ \end{wrapfigure}
|
|
|
+\empire{Directive --- Galactic Empire}\vspace{2mm}\\
|
|
|
+\branch{\dbranch}\\
|
|
|
+\rule{\textwidth}{.4pt}\\
|
|
|
+\location{\dlocation}
|
|
|
+
|
|
|
+\dabbrv
|
|
|
+
|
|
|
+\textbf{DISTRIBUTION}\\
|
|
|
+\textbf{\ddist}
|
|
|
+
|
|
|
+\textbf{Applies To:} \dapplies\\
|
|
|
+\textbf{Date of Effect:} \ddatefrom\\
|
|
|
+\textbf{Date of Termination:} \ddateto
|
|
|
+
|
|
|
+\textbf{\MakeUppercase{\dtitle}}
|
|
|
+
|
|
|
+% CONTENT STARTS HERE. IT IS RECOMENDED NOT TO CHANGE THE ARGUMENTS FOR THE ENUMERATE ENVIROMENTS
|
|
|
+
|
|
|
+\begin{enumerate}[leftmargin=*, labelsep=15mm, itemindent=18mm]
|
|
|
+ \item In an effort to reduce dependability on silly Microsoft products, this \LaTeXe{} template for directives has been created.
|
|
|
+ \item The advantages of this templates are as follows:
|
|
|
+ \begin{enumerate}[leftmargin=*, labelindent=18mm, labelsep=15mm, itemindent=19mm, noitemsep]
|
|
|
+ \item \LaTeX{} is available for all platforms, output will not depend on program used.
|
|
|
+ \item Since the input files are raw text, version control like git can be used.
|
|
|
+ \end{enumerate}
|
|
|
+ \item It is recommend to keep this template seperate and copy the entire folder whenever making a new directive, so that all \LaTeX{} output files are within the same folder.
|
|
|
+\end{enumerate}
|
|
|
+
|
|
|
+%CONTENT ENDS HERE. CHANGE SETTINGS FOR THE SIGNATURE IMAGE WHERE NECESSARY.
|
|
|
+
|
|
|
+\vfill
|
|
|
+
|
|
|
+\includegraphics[width=50mm]{nachname.png}\\ %Change width and filename of the signature image.
|
|
|
+\textbf{\MakeUppercase{\dauthor}}\\
|
|
|
+\dpositions
|
|
|
+
|
|
|
+\end{document}
|