i'm at word 0

This commit is contained in:
2025-09-13 14:02:59 -05:00
parent 9d464c0e34
commit 7e6eae35e9
14 changed files with 3638 additions and 0 deletions

BIN
mla-template/Documentation.pdf Executable file

Binary file not shown.

48
mla-template/document.tex Normal file
View File

@@ -0,0 +1,48 @@
\documentclass{article}
\usepackage{mla13}
% ========== Note to users =========
% Remove these two packages after
% you remove the example text.
\usepackage{blindtext}
\usepackage{lipsum}
\title{Example Paper Title} % Title for the paper
\firstname{John} % Author's first name
\lastname{Smith} % Author's last name
\professor{Dr. Doctore} % Last Name of the professor
\class{Example Class} % Name of the class
%\date{10 April 2017} % Uncomment to change due-date
\sources{references.bib} % File holding all the sources
\begin{document}
% First create the title page on its own.
\maketitlepage
\newpage
% Then create the table of contents on its own.
\tableofcontents
\newpage
% Finally create the abstract on its own.
\begin{abstract}
\blindtext[3] % Replace this line with the abstract.
\end{abstract}
\newpage
% Paper content begins here.
\makeheader % Adds the MLA-Style information
\maketitle % Redefined to use MLA-Style
% Put paper here.
% Begin example text.
This is here just so I can cite this thingy \cite{Kavanaugh1976} and also this thingy \cite{Saussure1995} so there can be some examples of bibliography and such. Usually this is where you'd put your introduction or something.
\blinddocument
% End example text.
% Put the works-cited on a separate page.
\newpage
\makeworkscited
\end{document}

191
mla-template/mla13.sty Normal file
View File

@@ -0,0 +1,191 @@
\ProvidesPackage{mla13}
%\usepackage{fullpage}
\usepackage[letterpaper]{geometry}
%\usepackage[style=mla,backend=biber]{biblatex}
%\usepackage{biblatex}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage{setspace}
\setlength{\parindent}{0.5in}
\usepackage[style=mla,mladraft=true,annotation=true,hyperref=false]{biblatex}
\usepackage{color}
\newcommand{\sources}[1]{
\def\@sources{#1}
\bibliography{#1}
}
%removes the space added to the center enviornment
\newenvironment{nospacecenter}{\parskip=0pt\par\nopagebreak\centering}{\par\noindent\ignorespacesafterend}
%Formatting Commands
\renewcommand \thesection {\@arabic\c@section.}
\renewcommand\thesubsection {\thesection\@arabic\c@subsection}
\renewcommand\section{\@startsection{section}{1}{\z@}%
{\z@}%
{\lineskip}%
{\normalfont}}
\renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
{\z@}%
{\lineskip}%
{\normalfont}}
\renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
{\z@}%
{\lineskip}%
{\normalfont}}
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
{\z@}%
{\lineskip}%
{\normalfont}}
\renewcommand\subparagraph{\@startsection{subparagraph}{5}{\parindent}%
{\z@}%
{\lineskip}%
{\normalfont}}
%Bibliography Commands
\DeclareFieldFormat{ibidpostnote}{#1}%
\renewbibmacro*{cite:idem}{%
\ifsingletitle%
{\iffieldundef{postnote}%
{\usebibmacro{cite:name}}%
{\unspace\global\boolfalse{cbx@named}}}%
{\addspace\global\boolfalse{cbx@named}}}
\renewbibmacro*{cite:mla:title:internal}{% 0.7.1 new internal macro
\ifbool{cbx@named}%
{\unspace\addcomma\addspace}%
{}%
\iffieldundef{title}%
{\iffieldequalstr{entrytype}{review}%
{\printtext[bibhyperref]{\printtext{\bibstring{reviewof}%
\addspace\printfield{booktitle}}}}%
{\ifthenelse{\iffieldequalstr{entrytype}{suppbook}% 0.7.1
\OR\iffieldequalstr{entrytype}{suppcollection}}%
{\printtext[bibhyperref]{%
\printfield[mla:capital]{entrysubtype}}}%
{}}}%
{\printtext[bibhyperref]{%
\printfield[citetitle:\strfield{entrytype}]{labeltitle}}}}%
\renewbibmacro*{cite:mla:title}{% 0.7.1 tidied up
\unspace%
\ifnameundef{labelname}%
{\unspace%
\printtext[bibhyperref]{%
\printfield[citetitle:\strfield{entrytype}]{labeltitle}}%
\iffieldundef{postnote}%
{}%
{\addspace}}%
{\ifsingletitle%
{}%
{\usebibmacro{cite:mla:title:internal}\addspace}}%
\ifthenelse{\iffieldequalstr{entrytype}{review}%
\and\ifnameundef{author}%
\and\iffieldundef{title}}%
{\printtext[bibhyperref]%
{\unspace\printtext{\bibcpstring{reviewof}%
\addspace\printfield{booktitle}}}}%
{}}%
\DeclareCiteCommand{\cite}[\mkbibparens]
{\usebibmacro{prenote}}%
{\usebibmacro{citeindex}%
\usebibmacro{cite:mla}}{}
{\usebibmacro{postnote}}
\defbibheading{apa}[\refname]{}
%Annotations for the Bibliography
\renewbibmacro{finentry}{%Renew the annotation macro
\finentry
\iffieldundef{annotation}%
{}%
{\ifbool{bbx@annotation}%
{\begin{quotation}\noindent%Make the annotation look like a quotation and remove the indent
\printfield{annotation}%
\end{quotation}}%
{}}%
}
%End Annotation Section
% Formatting Section Headings
\def\section{\@startsection{section}{1}{\z@}{-5.25ex plus -1ex minus
-.2ex}{1.5ex plus .2ex}{\center}}
\def\thesection{\arabic{section}.}
% End Formatting Section Headings
%End Bibliography Commands
%remove parenthesis from bibliography
%\renewbibmacro*{issue+date}{%
% \setunit{\addcomma\space}% NEW
% \printtext[parens]{% DELETED
% \iffieldundef{issue}
% {\usebibmacro{date}}
% {\printfield{issue}%
% \setunit*{\addspace}%
% \usebibmacro{date}}}% DELETED
% \usebibmacro{date}}% NEW
% \newunit}
%end section
\geometry{top=1.0in,bottom=1.0in,left=1.0in,right=1.0in}
\usepackage{datetime}
\usepackage{fancyhdr}
\linespread{2}
\def\@firstname{ }
\newcommand{\firstname}[1]{
\def\@firstname{#1}
}
\def\@lastname{ }
\newcommand{\lastname}[1]{
\def\@lastname{#1}
}
\newcommand{\professor}[1]{
\def\@professor{#1}
}
\newcommand{\class}[1]{
\def\@class{#1}
}
\pagestyle{empty}
\pagestyle{fancy}
\fancyhf{}
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}
\rhead{\@lastname\ \thepage}
\newdateformat{datef}{\THEDAY\ \monthname[\THEMONTH] \THEYEAR}
\renewcommand{\maketitle}
{\begin{nospacecenter}
\@title
\end{nospacecenter}}
\newcommand*{\makeheader}
{\begingroup
\rmfamily
\fontsize{12}{2}
\noindent \@firstname\ \@lastname\\
\@professor\\
\@class\\
\datef\@date
\endgroup}
\newcommand*{\makeworkscited}
{\addcontentsline{toc}{section}{Works Cited}
\begingroup
\pagebreak
\begin{center}
Works Cited
\end{center}
\printbibliography[heading=apa]
\endgroup}
\newcommand*{\maketitlepage}
{\begingroup
\pagebreak
\linespread{1}\vspace*{3in}\centering\huge\@title\normalsize \\
\vspace{4in} \centering {\@firstname\ \@lastname} \\
\@professor \\
\@class \\
\datef\@date \\
\endgroup}
% Make abstract add itself to the table of contents.
\renewenvironment{abstract}
{\addcontentsline{toc}{section}{Abstract}
\small
\begin{center}
\bfseries \abstractname\vspace{-.5em}\vspace{0pt}
\end{center}
\quotation}
{\endquotation}

98
mla-template/references.bib Executable file
View File

@@ -0,0 +1,98 @@
@misc{unWater,
organization={United Nations},
title="We Can End Poverty 2015",
year="2010",
month=oct,
}
@Article{planetArk,
author={{Planet Ark}},
title={Greywater: The Basics},
year={2007},
annotation={Work baby work}
}
@Article{pacificInst2010,
author={Allen, Lucy},
organization={Pacific Institute},
title={Overview of Greywater Reuse: The potential of Greywater Systems to Aid Sustainable Water Management},
month=nov,
year={2010},
annotation = {Will this work like a charm or will it not?}
}
@Article{usaToday2012,
author={Keen, Judy},
publisher={USA Today},
title={Midwest drought and heat increase water supply worries},
month=jul,
year={2012},
}
@Article{mcgill2008,
author={Finley, Sara},
publisher={McGill University},
title={Reuse of Domestic Greywater for the Irrigation of Food Crops},
month=aug,
year={2008},
}
@Article{twente2011,
author={Ercin, Ertug and Aldaya, Maite and Hoekstra, Arjen},
publisher={United Nations Environment Programme},
title={The water footprint of soy milk and soy burger and equivalent animal products},
month=dec,
year={2011},
}
@Article{inspect2012,
author={Gromicko, Nick and London, Elise},
publisher={International Association of Certified Home Inspectors},
title={Greywater Inspection},
year={2012},
}
@Article{sustainLaw2011,
author={Unger, Lysan},
publisher={Lewis & Clark Law School},
title={Greywater is Great Water for your Plants},
year={2011},
month=apr,
}
@Article{ucdavis,
author={Reschke, Erin},
publisher={UC Davis},
title={Greywater Systems - Benefits, Drawbacks and Uses of greywater},
year={2003},
}
@Article{graywaterguide,
author={Little, Val},
publisher={Water Conservation Alliance},
title={Gray Water Guide},
year={2004},
}
@Article{newTimes,
author={Johnston, Kathy},
publisher={New Times Los Angeles},
title={From laundry to landscaping},
year={2009},
month=jul,
}
@Article{worldWaterCouncil,
organization={World Water Council},
title={Water Crisis},
year={2012},
}
@Article{nytimes,
author={Marlow, Jeffery},
publisher={The New York Times},
title={The Pursuit of Cost-Effective Desalination},
year={2009},
month=sep,
}
@Article{epa,
author={McGovern, Cheryl},
publisher={Environmental Protection Agency},
title={Water Recycling and Reuse: The Environmental Benefits},
year={2011},
month=sep,
}
@Article{rcap,
author={Adams, Randolph},
publisher={Rural Community Assistance Partnership},
title={Still Living Without the Basics in the 21st Century},
year={2009},
}

BIN
mme-essay/Documentation.pdf Executable file

Binary file not shown.

20
mme-essay/document.bbl Normal file
View File

@@ -0,0 +1,20 @@
% $ biblatex auxiliary file $
% $ biblatex bbl format version 3.3 $
% Do not modify the above lines!
%
% This is an auxiliary file used by the 'biblatex' package.
% This file may safely be deleted. It will be recreated by
% biber as required.
%
\begingroup
\makeatletter
\@ifundefined{ver@biblatex.sty}
{\@latex@error
{Missing 'biblatex' package}
{The bibliography requires the 'biblatex' package.}
\aftergroup\endinput}
{}
\endgroup
\endinput

2821
mme-essay/document.bcf Normal file

File diff suppressed because it is too large Load Diff

18
mme-essay/document.blg Normal file
View File

@@ -0,0 +1,18 @@
[0] Config.pm:328> INFO - This is Biber 2.21
[0] Config.pm:331> INFO - Logfile is 'document.blg'
[34] biber:342> INFO - === Sat Sep 13, 2025, 13:58:46
[44] Biber.pm:421> INFO - Reading 'document.bcf'
[80] Biber.pm:1002> INFO - Found 2 citekeys in bib section 0
[88] Biber.pm:4487> INFO - Processing section 0
[92] Biber.pm:4678> INFO - Looking for bibtex file 'references.bib' for section 0
[93] bibtex.pm:1713> INFO - LaTeX decoding ...
[97] bibtex.pm:1519> INFO - Found BibTeX data source 'references.bib'
[100] UCollate.pm:68> INFO - Overriding locale 'en-US' defaults 'variable = shifted' with 'variable = non-ignorable'
[100] UCollate.pm:68> INFO - Overriding locale 'en-US' defaults 'normalization = NFD' with 'normalization = prenormalized'
[100] Biber.pm:4307> INFO - Sorting list 'nty/global//global/global/global' of type 'entry' with template 'nty' and locale 'en-US'
[100] Biber.pm:4313> INFO - No sort tailoring available for locale 'en-US'
[101] bbl.pm:676> INFO - Writing 'document.bbl' with encoding 'UTF-8'
[101] bbl.pm:779> INFO - Output to document.bbl
[101] Biber.pm:132> WARN - I didn't find a database entry for 'Kavanaugh1976' (section 0)
[101] Biber.pm:132> WARN - I didn't find a database entry for 'Saussure1995' (section 0)
[101] Biber.pm:134> INFO - WARNINGS: 2

BIN
mme-essay/document.pdf Normal file

Binary file not shown.

View File

@@ -0,0 +1,91 @@
<?xml version="1.0" standalone="yes"?>
<!-- logreq request file -->
<!-- logreq version 1.0 / dtd version 1.0 -->
<!-- Do not edit this file! -->
<!DOCTYPE requests [
<!ELEMENT requests (internal | external)*>
<!ELEMENT internal (generic, (provides | requires)*)>
<!ELEMENT external (generic, cmdline?, input?, output?, (provides | requires)*)>
<!ELEMENT cmdline (binary, (option | infile | outfile)*)>
<!ELEMENT input (file)+>
<!ELEMENT output (file)+>
<!ELEMENT provides (file)+>
<!ELEMENT requires (file)+>
<!ELEMENT generic (#PCDATA)>
<!ELEMENT binary (#PCDATA)>
<!ELEMENT option (#PCDATA)>
<!ELEMENT infile (#PCDATA)>
<!ELEMENT outfile (#PCDATA)>
<!ELEMENT file (#PCDATA)>
<!ATTLIST requests
version CDATA #REQUIRED
>
<!ATTLIST internal
package CDATA #REQUIRED
priority (9) #REQUIRED
active (0 | 1) #REQUIRED
>
<!ATTLIST external
package CDATA #REQUIRED
priority (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8) #REQUIRED
active (0 | 1) #REQUIRED
>
<!ATTLIST provides
type (static | dynamic | editable) #REQUIRED
>
<!ATTLIST requires
type (static | dynamic | editable) #REQUIRED
>
<!ATTLIST file
type CDATA #IMPLIED
>
]>
<requests version="1.0">
<internal package="biblatex" priority="9" active="1">
<generic>latex</generic>
<provides type="dynamic">
<file>document.bcf</file>
</provides>
<requires type="dynamic">
<file>document.bbl</file>
</requires>
<requires type="static">
<file>blx-dm.def</file>
<file>mla.dbx</file>
<file>blx-compat.def</file>
<file>biblatex.def</file>
<file>standard.bbx</file>
<file>mla-strict.bbx</file>
<file>mla.bbx</file>
<file>mla-footnotes.cbx</file>
<file>mla.cbx</file>
<file>biblatex.cfg</file>
<file>english.lbx</file>
<file>english-mla.lbx</file>
<file>american.lbx</file>
<file>american-mla.lbx</file>
</requires>
</internal>
<external package="biblatex" priority="5" active="1">
<generic>biber</generic>
<cmdline>
<binary>biber</binary>
<infile>document</infile>
</cmdline>
<input>
<file>document.bcf</file>
</input>
<output>
<file>document.bbl</file>
</output>
<provides type="dynamic">
<file>document.bbl</file>
</provides>
<requires type="dynamic">
<file>document.bcf</file>
</requires>
<requires type="editable">
<file>references.bib</file>
</requires>
</external>
</requests>

48
mme-essay/document.tex Normal file
View File

@@ -0,0 +1,48 @@
\documentclass{article}
\usepackage{mla13}
% ========== Note to users =========
% Remove these two packages after
% you remove the example text.
\usepackage{blindtext}
\usepackage{lipsum}
\usepackage{amsmath}
\title{Example Paper Title} % Title for the paper
\firstname{John} % Author's first name
\lastname{Smith} % Author's last name
\professor{Dr. Doctore} % Last Name of the professor
\class{Example Class} % Name of the class
%\date{10 April 2017} % Uncomment to change due-date
\sources{references.bib} % File holding all the sources
\begin{document}
% First create the title page on its own.
\maketitlepage
\newpage
% Then create the table of contents on its own.
\tableofcontents
\newpage
% Finally create the abstract on its own.
\begin{abstract}
\blindtext[3] % Replace this line with the abstract.
\end{abstract}
\newpage
% Paper content begins here.
\makeheader % Adds the MLA-Style information
\maketitle % Redefined to use MLA-Style
% Put paper here.
% Begin example text.
This is here just so I can cite this thingy \cite{Kavanaugh1976} and also this thingy \cite{Saussure1995} so there can be some examples of bibliography and such. Usually this is where you'd put your introduction or something.
\blinddocument
% End example text.
% Put the works-cited on a separate page.
\newpage
\makeworkscited
\end{document}

14
mme-essay/document.toc Normal file
View File

@@ -0,0 +1,14 @@
\babel@toc {american}{}\relax
\contentsline {section}{Abstract}{3}{}%
\contentsline {section}{\numberline {1.}Heading on level\xspace 1 (section)}{4}{}%
\contentsline {subsection}{\numberline {1.1}Heading on level\xspace 2 (subsection)}{4}{}%
\contentsline {subsubsection}{\numberline {1.1.1}Heading on level\xspace 3 (subsubsection)}{4}{}%
\contentsline {paragraph}{Heading on level\xspace 4 (paragraph)}{5}{}%
\contentsline {section}{\numberline {2.}Lists}{5}{}%
\contentsline {subsection}{\numberline {2.1}Example for list\xspace (itemize)}{5}{}%
\contentsline {subsubsection}{\numberline {2.1.1}Example for list\xspace (4*itemize)}{5}{}%
\contentsline {subsection}{\numberline {2.2}Example for list\xspace (enumerate)}{6}{}%
\contentsline {subsubsection}{\numberline {2.2.1}Example for list\xspace (4*enumerate)}{6}{}%
\contentsline {subsection}{\numberline {2.3}Example for list\xspace (description)}{6}{}%
\contentsline {subsubsection}{\numberline {2.3.1}Example for list\xspace (4*description)}{7}{}%
\contentsline {section}{Works Cited}{8}{}%

191
mme-essay/mla13.sty Normal file
View File

@@ -0,0 +1,191 @@
\ProvidesPackage{mla13}
%\usepackage{fullpage}
\usepackage[letterpaper]{geometry}
%\usepackage[style=mla,backend=biber]{biblatex}
%\usepackage{biblatex}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage{setspace}
\setlength{\parindent}{0.5in}
\usepackage[style=mla,mladraft=true,annotation=true,hyperref=false]{biblatex}
\usepackage{color}
\newcommand{\sources}[1]{
\def\@sources{#1}
\bibliography{#1}
}
%removes the space added to the center enviornment
\newenvironment{nospacecenter}{\parskip=0pt\par\nopagebreak\centering}{\par\noindent\ignorespacesafterend}
%Formatting Commands
\renewcommand \thesection {\@arabic\c@section.}
\renewcommand\thesubsection {\thesection\@arabic\c@subsection}
\renewcommand\section{\@startsection{section}{1}{\z@}%
{\z@}%
{\lineskip}%
{\normalfont}}
\renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
{\z@}%
{\lineskip}%
{\normalfont}}
\renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
{\z@}%
{\lineskip}%
{\normalfont}}
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
{\z@}%
{\lineskip}%
{\normalfont}}
\renewcommand\subparagraph{\@startsection{subparagraph}{5}{\parindent}%
{\z@}%
{\lineskip}%
{\normalfont}}
%Bibliography Commands
\DeclareFieldFormat{ibidpostnote}{#1}%
\renewbibmacro*{cite:idem}{%
\ifsingletitle%
{\iffieldundef{postnote}%
{\usebibmacro{cite:name}}%
{\unspace\global\boolfalse{cbx@named}}}%
{\addspace\global\boolfalse{cbx@named}}}
\renewbibmacro*{cite:mla:title:internal}{% 0.7.1 new internal macro
\ifbool{cbx@named}%
{\unspace\addcomma\addspace}%
{}%
\iffieldundef{title}%
{\iffieldequalstr{entrytype}{review}%
{\printtext[bibhyperref]{\printtext{\bibstring{reviewof}%
\addspace\printfield{booktitle}}}}%
{\ifthenelse{\iffieldequalstr{entrytype}{suppbook}% 0.7.1
\OR\iffieldequalstr{entrytype}{suppcollection}}%
{\printtext[bibhyperref]{%
\printfield[mla:capital]{entrysubtype}}}%
{}}}%
{\printtext[bibhyperref]{%
\printfield[citetitle:\strfield{entrytype}]{labeltitle}}}}%
\renewbibmacro*{cite:mla:title}{% 0.7.1 tidied up
\unspace%
\ifnameundef{labelname}%
{\unspace%
\printtext[bibhyperref]{%
\printfield[citetitle:\strfield{entrytype}]{labeltitle}}%
\iffieldundef{postnote}%
{}%
{\addspace}}%
{\ifsingletitle%
{}%
{\usebibmacro{cite:mla:title:internal}\addspace}}%
\ifthenelse{\iffieldequalstr{entrytype}{review}%
\and\ifnameundef{author}%
\and\iffieldundef{title}}%
{\printtext[bibhyperref]%
{\unspace\printtext{\bibcpstring{reviewof}%
\addspace\printfield{booktitle}}}}%
{}}%
\DeclareCiteCommand{\cite}[\mkbibparens]
{\usebibmacro{prenote}}%
{\usebibmacro{citeindex}%
\usebibmacro{cite:mla}}{}
{\usebibmacro{postnote}}
\defbibheading{apa}[\refname]{}
%Annotations for the Bibliography
\renewbibmacro{finentry}{%Renew the annotation macro
\finentry
\iffieldundef{annotation}%
{}%
{\ifbool{bbx@annotation}%
{\begin{quotation}\noindent%Make the annotation look like a quotation and remove the indent
\printfield{annotation}%
\end{quotation}}%
{}}%
}
%End Annotation Section
% Formatting Section Headings
\def\section{\@startsection{section}{1}{\z@}{-5.25ex plus -1ex minus
-.2ex}{1.5ex plus .2ex}{\center}}
\def\thesection{\arabic{section}.}
% End Formatting Section Headings
%End Bibliography Commands
%remove parenthesis from bibliography
%\renewbibmacro*{issue+date}{%
% \setunit{\addcomma\space}% NEW
% \printtext[parens]{% DELETED
% \iffieldundef{issue}
% {\usebibmacro{date}}
% {\printfield{issue}%
% \setunit*{\addspace}%
% \usebibmacro{date}}}% DELETED
% \usebibmacro{date}}% NEW
% \newunit}
%end section
\geometry{top=1.0in,bottom=1.0in,left=1.0in,right=1.0in}
\usepackage{datetime}
\usepackage{fancyhdr}
\linespread{2}
\def\@firstname{ }
\newcommand{\firstname}[1]{
\def\@firstname{#1}
}
\def\@lastname{ }
\newcommand{\lastname}[1]{
\def\@lastname{#1}
}
\newcommand{\professor}[1]{
\def\@professor{#1}
}
\newcommand{\class}[1]{
\def\@class{#1}
}
\pagestyle{empty}
\pagestyle{fancy}
\fancyhf{}
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}
\rhead{\@lastname\ \thepage}
\newdateformat{datef}{\THEDAY\ \monthname[\THEMONTH] \THEYEAR}
\renewcommand{\maketitle}
{\begin{nospacecenter}
\@title
\end{nospacecenter}}
\newcommand*{\makeheader}
{\begingroup
\rmfamily
\fontsize{12}{2}
\noindent \@firstname\ \@lastname\\
\@professor\\
\@class\\
\datef\@date
\endgroup}
\newcommand*{\makeworkscited}
{\addcontentsline{toc}{section}{Works Cited}
\begingroup
\pagebreak
\begin{center}
Works Cited
\end{center}
\printbibliography[heading=apa]
\endgroup}
\newcommand*{\maketitlepage}
{\begingroup
\pagebreak
\linespread{1}\vspace*{3in}\centering\huge\@title\normalsize \\
\vspace{4in} \centering {\@firstname\ \@lastname} \\
\@professor \\
\@class \\
\datef\@date \\
\endgroup}
% Make abstract add itself to the table of contents.
\renewenvironment{abstract}
{\addcontentsline{toc}{section}{Abstract}
\small
\begin{center}
\bfseries \abstractname\vspace{-.5em}\vspace{0pt}
\end{center}
\quotation}
{\endquotation}

98
mme-essay/references.bib Executable file
View File

@@ -0,0 +1,98 @@
@misc{unWater,
organization={United Nations},
title="We Can End Poverty 2015",
year="2010",
month=oct,
}
@Article{planetArk,
author={{Planet Ark}},
title={Greywater: The Basics},
year={2007},
annotation={Work baby work}
}
@Article{pacificInst2010,
author={Allen, Lucy},
organization={Pacific Institute},
title={Overview of Greywater Reuse: The potential of Greywater Systems to Aid Sustainable Water Management},
month=nov,
year={2010},
annotation = {Will this work like a charm or will it not?}
}
@Article{usaToday2012,
author={Keen, Judy},
publisher={USA Today},
title={Midwest drought and heat increase water supply worries},
month=jul,
year={2012},
}
@Article{mcgill2008,
author={Finley, Sara},
publisher={McGill University},
title={Reuse of Domestic Greywater for the Irrigation of Food Crops},
month=aug,
year={2008},
}
@Article{twente2011,
author={Ercin, Ertug and Aldaya, Maite and Hoekstra, Arjen},
publisher={United Nations Environment Programme},
title={The water footprint of soy milk and soy burger and equivalent animal products},
month=dec,
year={2011},
}
@Article{inspect2012,
author={Gromicko, Nick and London, Elise},
publisher={International Association of Certified Home Inspectors},
title={Greywater Inspection},
year={2012},
}
@Article{sustainLaw2011,
author={Unger, Lysan},
publisher={Lewis & Clark Law School},
title={Greywater is Great Water for your Plants},
year={2011},
month=apr,
}
@Article{ucdavis,
author={Reschke, Erin},
publisher={UC Davis},
title={Greywater Systems - Benefits, Drawbacks and Uses of greywater},
year={2003},
}
@Article{graywaterguide,
author={Little, Val},
publisher={Water Conservation Alliance},
title={Gray Water Guide},
year={2004},
}
@Article{newTimes,
author={Johnston, Kathy},
publisher={New Times Los Angeles},
title={From laundry to landscaping},
year={2009},
month=jul,
}
@Article{worldWaterCouncil,
organization={World Water Council},
title={Water Crisis},
year={2012},
}
@Article{nytimes,
author={Marlow, Jeffery},
publisher={The New York Times},
title={The Pursuit of Cost-Effective Desalination},
year={2009},
month=sep,
}
@Article{epa,
author={McGovern, Cheryl},
publisher={Environmental Protection Agency},
title={Water Recycling and Reuse: The Environmental Benefits},
year={2011},
month=sep,
}
@Article{rcap,
author={Adams, Randolph},
publisher={Rural Community Assistance Partnership},
title={Still Living Without the Basics in the 21st Century},
year={2009},
}