Added all the files.

Need to write a Makefile instead of ./comp.
This commit is contained in:
2025-02-18 21:37:00 -05:00
commit 424cd23e8f
6 changed files with 1750 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@@ -0,0 +1,6 @@
*.aux
*.bbl
*.blg
*.log
*.out
*.pdf

50
bibliography.bib Normal file
View File

@@ -0,0 +1,50 @@
@incollection {AdamsMemBiog08,
author = {Adams, G. M.},
booktitle = {Memorial Biographies of the New England Historic Genealogical Society},
title = {Eben Norton Horsford},
editor = {New England Historic Genealogical Society},
year = {1908},
publisher = {New England Historic Genealogical Society},
address = {Boston, MA},
volume = {9},
pages = {103--105},
}
% https://doi.org/10.1086/ahr/100.4.1061
@article{FlemPicHist95,
author = {Fleming, Robin},
title = {Picturesque History and the Medieval in Nineteenth-Century America},
journal = {The American Historical Review},
volume = {100},
number = {4},
pages = {1061-1094},
year = {1995},
month = {10},
issn = {0002-8762},
doi = {10.1086/ahr/100.4.1061},
url = {https://doi.org/10.1086/ahr/100.4.1061},
eprint = {https://academic.oup.com/ahr/article-pdf/100/4/1061/49007/100-4-1061.pdf},
}
% https://www.jstor.org/stable/20020530
@article{JackHors92,
ISSN = {01999818},
URL = {http://www.jstor.org/stable/20020530},
author = {Charles L. Jackson},
journal = {Proceedings of the American Academy of Arts and Sciences},
pages = {340--346},
publisher = {American Academy of Arts & Sciences},
title = {Eben Norton Horsford},
urldate = {2025-02-14},
volume = {28},
year = {1892}
}
% https://archive.org/details/these-truths/mode/2up
@book{LeporeThese18,
author = {Lepore, Jill},
title = {These Truths: A History of the United States},
year = {2018},
publisher = {W. W. Norton & Company, Inc.},
address = {New York, N.Y.}
}

1653
chicago.bst Normal file

File diff suppressed because it is too large Load Diff

6
comp Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
pdflatex $1.tex
bibtex $1
pdflatex $1.tex
pdflatex $1.tex

35
notes.tex Normal file
View File

@@ -0,0 +1,35 @@
\documentclass[letterpaper,12pt]{article}
\usepackage[utf8]{inputenc} % For UTF8 character encoding.
\usepackage{hyperref} % For hyperlinks.
\usepackage{natbib} % For bibliography and citations.
% Set hyperlink colors to black and remove boxes.
\hypersetup{
colorlinks=true,
citecolor=black,
filecolor=black
}
\begin{document}
\section*{Research Question}
To whom and why was the myth of Norumbega attractive?
\section*{Origins of the Legend}
\section*{Proponents of the Legend}
\subsection*{Horsford}
\cite{AdamsMemBiog08}
\cite{FlemPicHist95}
\cite{JackHors92}
\cite{LeporeThese18}
\newpage
\bibliographystyle{chicago}
\bibliography{bibliography}
\end{document}

0
outline.tex Normal file
View File