BibTeX, biblatex and bibercombination with endnotes and biblatex

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
sjkiss
Posts: 30
Joined: Tue Nov 15, 2011 12:23 am

combination with endnotes and biblatex

Post by sjkiss »

Hi: The following sample code produces text footnotes that I need, but the journal article needs text endnotes. for some reason, the second set of code, switching \footnote to \endnote does not work. I've read through the biblatex documentation, the endnote documentation and the biblatex-chicago documentation and can find now help on this. There are a whole set of different \mkbibendnote, \endnotecite commands and vague references to support from the endnote package but it is very unclear. Can any one suggest anything?

Code: Select all

@incollection{Sampert:2005we,
	Address = {Montreal},
	Annote = {Book, Section},
	Author = {Sampert, Shannon},
	Booktitle = {The Return of the Trojan Horse: Alberta and the New World (Dis)Order},
	Date-Added = {2010-06-01T09:58:53GMT+00:00},
	Date-Modified = {2012-02-20T22:48:53GMT+00:00},
	Editor = {Harrison, Trevor},
	Publisher = {Black Rose Press},
	Rating = {0},
	Title = {{King Ralph, the Ministry of Truth, and the Media}},
	Uri = {\url{papers2://publication/uuid/7E74D71A-EE4D-401D-822E-66DE85864044}},
	Year = {2005}}
Works Fine:

Code: Select all

\documentclass{article}
\usepackage[authordate]{biblatex-chicago}
\usepackage{endnotes}
\bibliography{/test_bib_file_from_record_above.bib}
\begin{document}
\section*{Abstract\footnote{Simon J. Kiss, PhD, Assistant Professor, Journalism, Wilfrid Laurier University, 73 George Street, Brantford, Ontario, Canada, N3T 2Y3}}
\section*{Introduction}

Some interesting Text\footnote{some interesting text including a citation  \footcitetext{Sampert:2005we}}.

\end{document}

But this code does not work.

Code: Select all

\documentclass{article}
\usepackage[authordate]{biblatex-chicago}
\usepackage{endnotes}
\bibliography{/test_bib_file_from_record_above.bib}
\begin{document}
\section*{Abstract\footnote{Simon J. Kiss, PhD, Assistant Professor, Journalism, Wilfrid Laurier University, 73 George Street, Brantford, Ontario, Canada, N3T 2Y3}}
\section*{Introduction}

Some interesting Text\endnote{some interesting text including a citation  \endnotecitetext{Sampert:2005we}}.

\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

sjkiss
Posts: 30
Joined: Tue Nov 15, 2011 12:23 am

Re: combination with endnotes and biblatex

Post by sjkiss »

Never mind. I did not realize one has to actually print the endnotes via \theendnote.
Moreover, even though there are all these references to different commands \endnotecitetext, etc. it appears you have to enclose citations within the endnote text as \protect{parencite{cite-key{}}
User avatar
Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Re: combination with endnotes and biblatex

Post by Stefan Kottwitz »

Thanks for telling us how you solved it! So I marked your last post as the solution.

Stefan
LaTeX.org admin
Post Reply