This commit is contained in:
2025-02-24 13:42:25 -05:00
parent 424cd23e8f
commit 2c0aec7c4a
3 changed files with 25 additions and 13 deletions

View File

@@ -33,7 +33,7 @@
author = {Charles L. Jackson}, author = {Charles L. Jackson},
journal = {Proceedings of the American Academy of Arts and Sciences}, journal = {Proceedings of the American Academy of Arts and Sciences},
pages = {340--346}, pages = {340--346},
publisher = {American Academy of Arts & Sciences}, publisher = {American Academy of Arts \& Sciences},
title = {Eben Norton Horsford}, title = {Eben Norton Horsford},
urldate = {2025-02-14}, urldate = {2025-02-14},
volume = {28}, volume = {28},
@@ -45,6 +45,16 @@
author = {Lepore, Jill}, author = {Lepore, Jill},
title = {These Truths: A History of the United States}, title = {These Truths: A History of the United States},
year = {2018}, year = {2018},
publisher = {W. W. Norton & Company, Inc.}, publisher = {W. W. Norton \& Company, Inc.},
address = {New York, N.Y.} address = {New York, N.Y.}
} }
% https://openlibrary.org/books/OL6909322M
@book{WeiseDis84,
author = {Weise, Aurthur James},
title = {The Discoveries of America to the year 1525},
year = {1884},
publisher = {Richard Bently and Son},
address = {London},
annote = {A primary source contemporary to Horsford, which details the accepted narrative for the discovery of America at the time.}
}

1
comp
View File

@@ -1,5 +1,6 @@
#!/bin/sh #!/bin/sh
rm *.aux
pdflatex $1.tex pdflatex $1.tex
bibtex $1 bibtex $1
pdflatex $1.tex pdflatex $1.tex

View File

@@ -2,7 +2,7 @@
\usepackage[utf8]{inputenc} % For UTF8 character encoding. \usepackage[utf8]{inputenc} % For UTF8 character encoding.
\usepackage{hyperref} % For hyperlinks. \usepackage{hyperref} % For hyperlinks.
\usepackage{natbib} % For bibliography and citations. \usepackage[authoryear]{natbib}
% Set hyperlink colors to black and remove boxes. % Set hyperlink colors to black and remove boxes.
\hypersetup{ \hypersetup{
@@ -26,10 +26,11 @@ To whom and why was the myth of Norumbega attractive?
\cite{FlemPicHist95} \cite{FlemPicHist95}
\cite{JackHors92} \cite{JackHors92}
\cite{LeporeThese18} \cite{LeporeThese18}
\cite{WeiseDis84}
\newpage \newpage
\bibliographystyle{chicago} \bibliographystyle{chicago-annote}
\bibliography{bibliography} \bibliography{bibliography}
\end{document} \end{document}