Will add examples and improve formatting of style sheets

This commit is contained in:
lleene
2019-07-09 11:48:27 +01:00
parent 7d5530cd5d
commit a615559191
24 changed files with 784 additions and 229 deletions

49
Examples/article.tex Normal file
View File

@ -0,0 +1,49 @@
% !TEX program = pdflatex
% !TEX spellcheck = en_GB
% !TEX outputDirectory = tex_output
% !TEX enableSynctex = true
% !TEX jobNames = article
\makeatletter
\def\input@path{{/home/user_name/MyLatexTemplates/}{../}}
\newcommand{\maintitle}{A Nice Paper Title}
\newcommand{\mainsubject}{Example Poster}
\newcommand{\mainkeywords}{Keywords}
\makeatother
%uncomment to disable hyperref package
%\newcommand{\nolinks}{}
\documentclass[conference]{IEEEtran}
\input{journal.preamble.cls}
\begin{document}
\bstctlcite{IEEEexample:BSTcontrol}
\title{\maintitle}
\author{\FirstName~\LastName $^\star$ \\%
$^\star$\Organisation \\%
Email: \Email}%
%\parskip 0ex plus 0.2ex minus 0.2ex
\maketitle
\IEEEpeerreviewmaketitle
\begin{abstract} \label{Sec:Abstract}
\lipsum[10]
\end{abstract}
\section{Introduction} \label{Sec:Introduction}
\lipsum[1-2] \cite{refernce1,refernce2,refernce3,refernce4}
\section{Discussion} \label{Sec:Discussion}
\lipsum[3-5]
\section{Conclusion} \label{Sec:Conclusion}
\lipsum[6]
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,local}
\end{document}