commit fda1b5b458b0ce584a3a857c97facfb1111c8d51 Author: Collin J. Doering Date: Mon Oct 15 10:30:49 2018 -0400 Initial commit Signed-off-by: Collin J. Doering diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bc7f795 --- /dev/null +++ b/Makefile @@ -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 {} +; diff --git a/README.md b/README.md new file mode 100644 index 0000000..ce3f51f --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Latex Template + +This is a simple Latex template for starting technical and scientific papers. diff --git a/figures/logo-banner.png b/figures/logo-banner.png new file mode 100644 index 0000000..5a05373 Binary files /dev/null and b/figures/logo-banner.png differ diff --git a/template.tex b/template.tex new file mode 100644 index 0000000..635ff55 --- /dev/null +++ b/template.tex @@ -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: