Skip to content

Commit db67800

Browse files
Jason BrownleeJason Brownlee
authored andcommitted
added further reading
1 parent 58aaddf commit db67800

File tree

3 files changed

+73
-4
lines changed

3 files changed

+73
-4
lines changed

book/c_introduction.tex

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ \chapter{Introduction}
1212

1313
hello and welcome statement.
1414

15-
all about it taking a lot of work to find out what algorithms to try, and how to code them up. this book aims to take away that pain
15+
all about it taking a lot of work to find out what algorithms to try, and how to code them up. this book aims to take away that pain -- very important!
1616

1717

1818
%
@@ -111,3 +111,13 @@ \subsection{Students}
111111
\subsection{Interested Amateurs}
112112
ways in which amateurs may read this material
113113

114+
115+
%
116+
% Further Reading
117+
%
118+
\section{Further Reading}
119+
\label{intro:sec:further_reading}
120+
121+
a listing of books and papers that will be useful for a reader to get more detail on topics covered in this chapter
122+
123+
% EOF

workspace/06-optimization-algorithms/README

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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

Comments
 (0)