BibTeX, biblatex and biber ⇒ Bibliography with TeXnicCenter
Bibliography with TeXnicCenter
Thank you !
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Bibliography with TeXnicCenter
Code: Select all
\begin{filecontents*}{xmpl.bib}
@BOOK{lamport94,
author={Leslie Lamport},
title={\LaTeX\ - A Document Preparation System},
note={User's Guide and Reference Manual},
year={1994},
publisher={Addison-Wesley},
edition={Second}
}
@BOOK{knuth84,
author={Donald Ervin Knuth},
title={The \TeX book},
year={1984},
publisher={Addison-Wesley}
}
\end{filecontents*}
\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[margin=2cm]{geometry}
\usepackage{lmodern}
\begin{document}
\nocite{*} % All bibliography items appear without citation in the text
\bibliographystyle{unsrt}
\bibliography{xmpl}
\end{document}
As you already did some reading, the "Tame the Beast" document might help you in this issue if you haven't taken a look at it yet. The CTAN Catalogue has much more information about creating bibliographies with BibTeX and different bibliography styles [1].
More explanations and description are not possible in this place. All is said in these manuals which should help you in getting things work.
[1] The TeX Catalogue Online, Topic Index - Bibliography
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Bibliography with TeXnicCenter
Eglucon.