|
| 1 | +% |
| 2 | + |
| 3 | +% The Clever Algorithms Project: http://www.CleverAlgorithms.com |
| 4 | +% (c) Copyright 2010 Jason Brownlee. All Rights Reserved. |
| 5 | +% This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 2.5 Australia License. |
| 6 | + |
| 7 | +\documentclass[a4paper, 11pt]{article} |
| 8 | +\usepackage{tabularx} |
| 9 | +\usepackage{booktabs} |
| 10 | +\usepackage{url} |
| 11 | +\usepackage[pdftex,breaklinks=true,colorlinks=true,urlcolor=blue,linkcolor=blue,citecolor=blue,]{hyperref} |
| 12 | +\usepackage{geometry} |
| 13 | +\geometry{verbose,a4paper,tmargin=25mm,bmargin=25mm,lmargin=25mm,rmargin=25mm} |
| 14 | + |
| 15 | +% Dear template user: fill these in |
| 16 | +\newcommand{\myreporttitle}{Unconventional Optimization Algorithms} |
| 17 | +\newcommand{\myreportsubtitle}{An Overview} |
| 18 | +\newcommand{\myreportauthor}{Jason Brownlee} |
| 19 | +\newcommand{ \myreportemail}{ [email protected]} |
| 20 | +\newcommand{\myreportproject}{The Clever Algorithms Project\\\url{http://www.CleverAlgorithms.com}} |
| 21 | +\newcommand{\myreportdate}{20100118} |
| 22 | +\newcommand{\myreportversion}{1} |
| 23 | +\newcommand{\myreportlicense}{\copyright\ Copyright 2010 Jason Brownlee. All Rights Reserved. This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 2.5 Australia License.} |
| 24 | + |
| 25 | +% leave this alone, it's templated baby! |
| 26 | +\title{{\myreporttitle}: {\myreportsubtitle}\footnote{\myreportlicense}} |
| 27 | +\author{\myreportauthor\\{\myreportemail}\\\small\myreportproject} |
| 28 | +\date{\today\\{\small{Technical Report: CA-TR-{\myreportdate}-\myreportversion}}} |
| 29 | +\begin{document} |
| 30 | +\maketitle |
| 31 | + |
| 32 | +% write a summary sentence for each major section |
| 33 | +\section*{Abstract} |
| 34 | +This is the abstract. Consider writing a one sentence summary of each major section in the report. |
| 35 | + |
| 36 | +\begin{description} |
| 37 | + \item[Keywords:] {\small\texttt{Keywords, Go, Here}} |
| 38 | +\end{description} |
| 39 | + |
| 40 | +% summarise the document breakdown with cross references |
| 41 | +\section{Introduction} |
| 42 | +\label{sec:introduction} |
| 43 | +This is the introduction. Consider summarizing the message of the document, then provide a breakdown of the sections of the document with cross references. |
| 44 | + |
| 45 | +\section{A Section} |
| 46 | +\label{sec:a_section} |
| 47 | +Write things! |
| 48 | + |
| 49 | +\subsection{A SubSection} |
| 50 | +Write more things! |
| 51 | + |
| 52 | +% summarise the document message and areas for future consideration |
| 53 | +\section{Conclusions} |
| 54 | +\label{sec:conclusions} |
| 55 | +This is the conclusion. Consider summarizing the message of the document once again, and highlighting areas for future consideration. |
| 56 | + |
| 57 | +% bibliography |
| 58 | +\bibliographystyle{plain} |
| 59 | +\bibliography{../bibtex} |
| 60 | + |
| 61 | +\end{document} |
| 62 | +% EOF |
0 commit comments