Commit 0e16366b authored by Crawford, Sam's avatar Crawford, Sam
Browse files

Fixed a bunch of problems. Namely, got Chicago style citations and footnotes...

Fixed a bunch of problems. Namely, got Chicago style citations and footnotes working again. The previous template was using some whacky footnote definition that didn't play well with standard LaTeX footnotes and citations. It has been replaced with the standard footnote command.
parent 4c49de40
Loading
Loading
Loading
Loading
+11 −7
Original line number Diff line number Diff line
@@ -104,10 +104,6 @@ Material after the Contents, List of Figures, List of Tables, and the Acronym li
	
	Each section of the front material begins on an odd-numbered page. The abstract, if very brief, may begin on page 1 inserted above the introduction section.
	
	\def\thefootnote{\fnsymbol{ctr}}
	\long\def\symbolfootnote[#1]#2{\begingroup
		\def\thefootnote{\fnsymbol{footnote}}\footnote[#1]{#2}\endgroup}
	
	\bigskip
	\phantomsection
	\addcontentsline{toc}{section}{GENERAL INFORMATION}
@@ -117,7 +113,7 @@ Material after the Contents, List of Figures, List of Tables, and the Acronym li
	
	Document margins are 1 in. all around.
	
	Text footnotes are 9 pt., TNR with no space between notes.\symbolfootnote[1]{Footnotes are 9pt., TNR with no space between notes. Footnotes are 9 pt., TNR with no space between notes.} Footnote indicators in text are superscript symbols and should appear in the following order: $\ast$, $\dagger$, $\ddagger$, $\S$, $\ast\ast$, $\dagger\dagger$, $\ddagger\ddagger$. Symbols {\underline {are not}} used as table footnote indicators (see page 4).
	Text footnotes are 9 pt., TNR with no space between notes. \footnote{Footnotes are 9pt., TNR with no space between notes.} Footnote indicators in text are superscript symbols and should appear in the following order: $\ast$, $\dagger$, $\ddagger$, $\S$, $\ast\ast$, $\dagger\dagger$, $\ddagger\ddagger$. Symbols {\underline {are not}} used as table footnote indicators (see page 4).
	
	Footnotes may be used in addition to the author-date citation method, in which case, the footnotes provide additional information to the text, not bibliographic citations.
	
@@ -190,7 +186,7 @@ document?''
Insert figures after the text callout but as close to the call out as possible. (They always have a caption describing them and they
are always numbered . LaTeX automatically floats Tables and Figures, depending on how much space is left on the page at
the point that they are processed. If there is not enough room on the current page, the float is moved to the top of the next
page.) Figures are numbered consecutively (i.e., Figure 1, Figure 2) except in large reports, where they may be numbered consecutively by section (i.e., Figure 1.1, Figure 1.2). \cite{Baker1993}
page.) Figures are numbered consecutively (i.e., Figure 1, Figure 2) except in large reports, where they may be numbered consecutively by section (i.e., Figure 1.1, Figure 1.2).

All figures are pulled in from source files that should be placed in a directory to which the author can link in the LaTeX file.
In this template, the image files for the figures are in the same directory as the main LaTeX document, but it is common practice
@@ -328,7 +324,15 @@ the better control over changes and merges the author(s) will have. These breaks
\section{Citations}

\subsection{Using in-text citations}
\cite{Baker1993}, \cite{NCRPM1989}
For the ORNL TM reports, \textit{Chicago Manual of Style} references and citations are preferred. Of these, you can choose 
between author-date + references cited list or footnote + references cited.

Since you are using a references cited page, abbreviated footnotes on the page of the citation are all that is required, like so, using the autocite command \autocite{NCRPM1989}. However, you can also push full citations into the footnotes using a footcite 
command.

For the rest of this document, however, we will use the abbreviated footnotes and the autocite command, like this \autocite{Adams2001}.

These styles are defined in the class file of this LaTeX template (ornltm.cls), in the section labeled ``Bibliography.''


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+37 −5
Original line number Diff line number Diff line
@@ -12,9 +12,41 @@
@TechReport{NCRPM1989,
  author      = {{National Council on Radiation Protection and Measurements}},
  title       = {1989 Exposure of the US Population from Diagnostic Medical Radiation},
  institution = {{}},
  year        = {1989},
  number      = {NCRP Report No. 100},
  address     = {Bethesda, MD},
}

@TechReport{Adams2001,
  author      = {J. W. Adams and B. S. Bowman and P. D. Kalb},
  title       = {Sulfur Polymer Stabilization/Solidification (SPSS) Treatability of Simulated Mixed-Waste Mercury-Contaminated Sludge},
  institution = {Brookhaven National Laboratory},
  year        = {2001},
}

@TechReport{ATGTG1998,
  author      = {{ATG (Allied Technology Group)}},
  title       = {Demonstration of the Stabilization Process for Treatment of Radioactively Contaminated Wastes Containing <260 ppm Mercury},
  institution = {{}},
  year        = {1998},
  type        = {MER02 Final Report: Report to the Mercury Working Group, Mixed Waste Focus Area},
}

@Conference{Conley1998,
  author    = {T. B. Conley and M. I. Morris and I. W. Osborne-Lee and G. A. Hulet},
  title     = {Mixed Waste Focus Area Mercury Working Group: An Integrated Approach to Mercury Waste Treatment and Disposal},
  booktitle = {Waste Management '98},
  year      = {1998},
  address   = {Tucson, AZ},
}

@Conference{Davis1998,
  author    = {J. D. Davis},
  title     = {Mercury Mixed Waste Treatment},
  booktitle = {Annual Meeting of the American Institute of Chemical Engineers},
  year      = {1998},
  address   = {New Orleans, LA},
}

@Comment{jabref-meta: databaseType:bibtex;}
+6 −1
Original line number Diff line number Diff line
@@ -392,7 +392,12 @@ under contract DE-AC05-00OR22725
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% If you have trouble building with the biber backend, set the backend to bibtex.
\usepackage[backend=biber,style=ieee]{biblatex}

%Use the command below for footnote style w/reference list.
%\usepackage[backend=biber,notes]{biblatex-chicago}

%Use the command below for author-date style w/reference list.
\usepackage[authordate,strict,backend=biber,autolang=other,bibencoding=inputenc]{biblatex-chicago}