diff --git a/cfg/commands.tex b/cfg/commands.tex new file mode 100644 index 0000000..b632166 --- /dev/null +++ b/cfg/commands.tex @@ -0,0 +1,25 @@ +\newcommand{\boxalert}[1]{{ + \usebeamercolor{alerted text} + \colorbox{bg}{\alert{#1}} +}} + +\newtcblisting{cisco}[1][]{ + size=fbox, + listing only, + listing options={ + style=tcblatex, + basicstyle=\ttfamily\scriptsize, + tabsize=1, + language=sh, + breaklines=false, + columns=fullflexible + }, + #1 +} + +\newcommand{\pic}[2]{ + \begin{center} + \transparent{0.4} + \includegraphics[height=#1]{#2} + \end{center} +} diff --git a/main.tex b/main.tex index 76453bc..695b139 100644 --- a/main.tex +++ b/main.tex @@ -1,5 +1,84 @@ +% Declare Document Class \documentclass{article} + +% Latex Packages +\usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} +\usepackage{lmodern} +\usepackage{geometry} +%\usepackage{minted} +\usepackage{graphicx} +\usepackage{float} + + +% Path where images are located relative +% to the file main.tex +\graphicspath{{img/}} + +\newcommand{\insertoutput}[1]{ + \begin{center} + \includegraphics[width=12cm]{#1} + \end{center} +} + +% In which order to look after images in +% declared graphicspath{}'s +% 1. Low-quality JPG +% 2. Med-quality PNG +% 3. High-quality PDF +\DeclareGraphicsExtensions{.jpg,.png,.pdf} + +% Package Params +\geometry{a4paper,margin=2cm} +% Used to NOT show red boxes around colons +% etc. when using the minted{} package. +%\AtBeginEnvironment{minted}{\renewcommand{\fcolorbox}[4][]{#4}} + +% +% BEGIN DOCUMENT +% \begin{document} -(Type your content here.) + +% Which info to insert on the title page +\title{r17dinh409 Cisco Lab} +\author{Christoffer Hansen } +\date{May 22 - June 30, 2017} +% Make title page contents +\maketitle + +% Page break before starting Table Of Contents +\newpage +% Table Of Contents +\tableofcontents + + +% +% BEGIN SWITCH CONFIG +% +\section{Lab cfg} + + +\subsection{Router} + +\subsubsection*{File: base.cfg} + +\subsubsection*{File: reset.tcl} + + +\subsection{Switch} + +\subsubsection*{File: base.cfg} + +\subsubsection*{File: reset.tcl} + +% +% END SWITCH CONFIG +% + + + + +% +% END DOCUMENT +% \end{document}