BibTeX, biblatex and biber ⇒ Setting Bibliography Styles
Setting Bibliography Styles
I'm using TexnicCenter to write up my Master's thesis. Practically ALL of my friends use LYX (boo!). They tell me that bibtex can specify bibliography styles like Chicago (which I need). That they simply have to enter the necessary info (in whatever order they feel like) and it comes out the way Chicago Style wants.
Does anyone know how to do this in TexnicCenter?
Thanks in advance,
lns
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Setting Bibliography Styles
\bibliographystyle{chicago}
If you're going to an author-date system like Chicago, though you'll probably also want to learn about natbib and/or biblatex (and perhaps the biblatex-chicago package).
Re: Setting Bibliography Styles
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@book{tinkham1,
author = "`Micheal Tinkham"',
title = "`{Introduction to Superconductivity"',
publisher = {McGraw-Hill Inc.},
year = 1996}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
My problem is that I can't find where exactly I'm supposed to write this

I read up online where I can create and include a .bib file the same way I add a new .tex file to my main document. The code relevant to the bibliography is written below:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{chicago}
\begin{document}
%blah blah chapters and the like
\bibliographystyle{chicago}
\bibliography{bibfile}
\input{biblio}
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
I haven't even tried citing as yet, since TexnicCenter obviously isn't understanding what I'm trying to do.
Help?
ps. Thanks for your help so far...*grateful smiley*
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Setting Bibliography Styles
Your bibliography entries contain erroneously control sequences for quotation marks that actually are for correct typesetting. But they are placed wrong for grouping in the database file. The below example works flawlessly.
Code: Select all
\begin{filecontents*}{\jobname.bib}
@book{tinkham:96,
author = {Michael Tinkham},
title = {Introduction to Superconductivity},
publisher = {McGraw-Hill Inc.},
year = 1996
}
\end{filecontents*}
\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{chicago}
\begin{document}
\nocite{*}
\bibliographystyle{chicago}
\bibliography{\jobname}
\end{document}
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Setting Bibliography Styles

lnsam22
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Setting Bibliography Styles
It's sufficient to mark the initial post. The others have no effect.lnsam22 wrote:[…] Did I mark them correctly now? […]
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10