Initial commit

Signed-off-by: Collin J. Doering <collin.doering@rekahsoft.ca>
This commit is contained in:
Collin J. Doering 2018-10-15 10:30:49 -04:00
commit fda1b5b458
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
4 changed files with 81 additions and 0 deletions

11
Makefile Normal file
View 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
View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

67
template.tex Normal file
View 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: