Initial commit
Signed-off-by: Collin J. Doering <collin.doering@rekahsoft.ca>
This commit is contained in:
commit
fda1b5b458
11
Makefile
Normal file
11
Makefile
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
PDFLATEX=/usr/bin/pdflatex
|
||||||
|
MASTER=template.tex
|
||||||
|
|
||||||
|
.PHONY: doc
|
||||||
|
doc:
|
||||||
|
$(PDFLATEX) -file-line-error $(MASTER)
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
clean:
|
||||||
|
@rm -rf auto
|
||||||
|
@find . -regex '.*\.\(aux\|log\|out\|pdf\|toc\)' -exec rm {} +;
|
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Latex Template
|
||||||
|
|
||||||
|
This is a simple Latex template for starting technical and scientific papers.
|
BIN
figures/logo-banner.png
Normal file
BIN
figures/logo-banner.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 53 KiB |
67
template.tex
Normal file
67
template.tex
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
\documentclass[11pt]{article}
|
||||||
|
|
||||||
|
\usepackage{graphicx,amsmath,amssymb,subfigure,url,xspace,lipsum,fullpage}
|
||||||
|
|
||||||
|
\title{Theory About Nothing}
|
||||||
|
\author{Collin J. Doering}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\maketitle
|
||||||
|
|
||||||
|
\tableofcontents
|
||||||
|
\clearpage
|
||||||
|
|
||||||
|
\section{Introduction}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\section{Second Section}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\subsection{Second First Section}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\subsection{Second Second Section}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\section{Third Section}
|
||||||
|
\begin{figure}
|
||||||
|
\centering
|
||||||
|
\fbox{\includegraphics[scale=0.5]{figures/logo-banner}}
|
||||||
|
\caption{This is the logo for my blog}
|
||||||
|
\label{fig:logo-banner}
|
||||||
|
\end{figure}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\subsection{Third First Section}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\subsection{Third Second Section}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\section{Fourth Section}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\subsection{Fourth First Section}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\subsection{Fourth Second Section}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\section{Fifth Section}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\subsection{Fifth First Section}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\subsection{Fifth Second Section}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\section{Conclusion}
|
||||||
|
\lipsum
|
||||||
|
|
||||||
|
\end{document}
|
||||||
|
|
||||||
|
%%% Local Variables:
|
||||||
|
%%% mode: latex
|
||||||
|
%%% TeX-master: t
|
||||||
|
%%% End:
|
Loading…
Reference in New Issue
Block a user