Skip to content
Snippets Groups Projects
Commit 1f7efd63 authored by W. Spencer Smith's avatar W. Spencer Smith
Browse files

Revision of blank project template to include makefiles

parent d458df6d
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@
}
\usepackage[round]{natbib}
\input{../Comments}
\input{../../Comments}
\begin{document}
......
# Makefile
# From https://danielkaes.wordpress.com/2009/03/14/compiling-latex-documents-using-makefiles/
PROJECT=SystVnVReport
TEX=pdflatex
BIBTEX=bibtex
BUILDTEX=$(TEX) $(PROJECT).tex
all:
$(BUILDTEX)
# $(BIBTEX) $(PROJECT)
# $(BUILDTEX)
$(BUILDTEX)
clean-all:
rm -f *.dvi *.log *.bak *.aux *.bbl *.blg *.idx *.ps *.eps *.pdf *.toc *.out *~
clean:
rm -f *.log *.bak *.aux *.bbl *.blg *.idx *.toc *.out *.lof *.lot *~
\ No newline at end of file
No preview for this file type
......@@ -12,7 +12,7 @@
}
\usepackage[round]{natbib}
\input{../Comments}
\input{../../Comments}
\begin{document}
......
# Makefile
# From https://danielkaes.wordpress.com/2009/03/14/compiling-latex-documents-using-makefiles/
PROJECT=UnitVnVReport
TEX=pdflatex
BIBTEX=bibtex
BUILDTEX=$(TEX) $(PROJECT).tex
all:
$(BUILDTEX)
# $(BIBTEX) $(PROJECT)
# $(BUILDTEX)
$(BUILDTEX)
clean-all:
rm -f *.dvi *.log *.bak *.aux *.bbl *.blg *.idx *.ps *.eps *.pdf *.toc *.out *~
clean:
rm -f *.log *.bak *.aux *.bbl *.blg *.idx *.toc *.out *.lof *.lot *~
\ No newline at end of file
No preview for this file type
......@@ -12,7 +12,7 @@
}
\usepackage[round]{natbib}
\input{../Comments}
\input{../../Comments}
\begin{document}
......@@ -91,6 +91,6 @@ This section will not be appropriate for every project.
\bibliographystyle{plainnat}
\bibliography{SRS}
\bibliography{../../../ReferenceMaterial/References}
\end{document}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment