% ==============================================================================
%	File	: DrumKey.lytex
%	Desc.	: Drum notation key
%
%	Author	: Gavin Bungay
%	Date	: 21st December 2017
% ==============================================================================
\documentclass[a4paper,12pt]{scrartcl}

% ==========================================================================
% Load any necessary packages
% =========================================================================
\usepackage{verbatim}
\usepackage{amsmath}		
\usepackage{calc}
\usepackage{listings}
\usepackage{tikz}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{float}
\usepackage{lastpage}
\usepackage{geometry}
\usepackage{scrlayer-scrpage}



% ==========================================================================
% Set up variables/paths
% =========================================================================

% TeX root dir - Root for all TeX projects
\newcommand{\TeXRootDir}{/home/gavin/Documents/TeX/}

% Global TeX directory
\newcommand{\GBLDIR}{\TeXRootDir/Global/}

% Directories specific to me
\newcommand{\GSBDir}{\TeXRootDir GSB/}
\newcommand{\GSBMacroDir}{\GSBDir Macros/}
 
% FA related stuff - where the artwork lives
\newcommand{\FADir}{/home/gavin/Documents/FA/}
\newcommand{\GSBArtworkDir}{\FADir Artwork/GSB/}

% ==========================================================================
% Load macros and useful stuff
% =========================================================================

\input{\GBLDIR gbl_macros}    		%-- Global macros.
\input{\GBLDIR gbl_listing}    		%-- Macros to do with listing code.

\input{\GSBMacroDir gsb_style}    	%-- GSB style macros.

% ==========================================================================
% Set up variables for this doc
% =========================================================================
\newcommand{\articleAuthor}{\Me}

% Titles and subjects are in ../Global/gbl_projects.tex
\newcommand{\articleTitle}{\DrumKeyTitle}  
\newcommand{\articleSubject}{\DrumKeySubject} 


\GSBSetArticleStyle
	{\GSBArtworkDir/GSBBizCard07_NoPhoneNumber_CONT.png}
	{\articleTitle}


\begin{document}

	\title{\GSBTitle{\articleTitle}{\articleSubject}}
	\maketitle
	
	
	\begin{abstract}
		\input{abstract}
	\end{abstract}


	\section*{Drum Notation Key}

		% Include the Lilypond fragment which contains the key
		\lilypondfile{DrumKey.ly}

\end{document}

