BibTeX, biblatex and biberChicago Manual Style Papers

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
professorbell
Posts: 7
Joined: Fri Apr 12, 2013 4:46 am

Chicago Manual Style Papers

Post by professorbell »

I have tried very had, and cannot for the life of me find a single working example of a Chicago formatted paper anywhere on the internet. I read through most of the documentation for biblatex-chicago, and still don't understand how to actually implement the format... I realize that most people don't try to write history papers with Latex but I'm determined to try.

What I am most desperate to find is an example .tex document containing all of the code neccessary to format just the bibliography of a Chicago style paper (without the brackets and indexing information that most of the default bibtex citation formats include) and the corresponding .bib file.

I am seriously annoyed at this problem right now, so any help would be greatly appreciated.

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Chicago Manual Style Papers

Post by cgnieder »

Hi professorbell,

Welcome to the LaTeX community!

I don't have many experiences with it and I don't know the Chicago Manual Style, but these are the packages I found with a quick search:
  • biblatex-chicago

    Code: Select all

    \documentclass{article}
    \usepackage[backend=biber,authordate]{biblatex-chicago}
    \addbibresource{biblatex-examples.bib}
    \begin{document}
    
    Foo~\cite{companion} bar baz~\cite{knuth:ct:a}
    
    \printbibliography
    
    \end{document}
  • natbib

    Code: Select all

    \documentclass{article}
    \usepackage{natbib}
    \begin{document}
    
    Foo~\cite{companion} bar baz~\cite{knuth:ct:a}
    
    \bibliographystyle{chicago}
    \bibliography{biblatex-examples.bib}
    
    \end{document}
  • chicago

    Code: Select all

    \documentclass{article}
    \usepackage{chicago}
    \begin{document}
    
    Foo~\cite{companion} bar baz~\cite{knuth:ct:a}
    
    \bibliographystyle{chicago}
    \bibliography{biblatex-examples.bib}
    
    \end{document}
  • achicago

    Code: Select all

    \documentclass{article}
    \usepackage{achicago}
    \begin{document}
    
    Foo~\cite{companion} bar baz~\cite{knuth:ct:a}
    
    \bibliographystyle{achicago}
    \bibliography{biblatex-examples.bib}
    
    \end{document}
All of these solutions seem to offer possibilities for customization, further citation commands for other appearances etc.

Regards
site moderator & package author
professorbell
Posts: 7
Joined: Fri Apr 12, 2013 4:46 am

Re: Chicago Manual Style Papers

Post by professorbell »

First, Thankyou!

Second, I had found most of these before, but they didn't seem to order citations quite right. I'll take your advice and try to customize the one that comes closest (probably achicago).

Third, I'd still like to find somebody who has written a Chicago style paper with latex, but if such a person doesn't stumble across this thread in a couple of days, I'll mark your post as the answer.

Again, Thankyou!!
professorbell
Posts: 7
Joined: Fri Apr 12, 2013 4:46 am

Chicago Manual Style Papers

Post by professorbell »

For reference, here is a simple approximation of a Chicago Style paper done in \LaTeX:
Paper-Nikitenko.tex
(14.11 KiB) Downloaded 4726 times
bibfile.bib
(1.3 KiB) Downloaded 3196 times
title.tex
(1.05 KiB) Downloaded 3361 times
Result:
Paper-Nikitenko.pdf
(140.47 KiB) Downloaded 4616 times
Post Reply