BibTeX, biblatex and biberGet LaTeX logo in bibliography

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
bertieboy7
Posts: 1
Joined: Sat Nov 27, 2010 1:20 pm

Get LaTeX logo in bibliography

Post by bertieboy7 »

I've tried putting \LaTeX\ and \LaTeX{} in my .bib file, but he doesn't want to show it.

So how would i put the latex logo in the bibliography ?

Recommended reading 2024:

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

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Get LaTeX logo in bibliography

Post by localghost »

I have no problems. See below for an example from my archives.

Code: Select all

\begin{filecontents*}{\jobname.bib}
@BOOK{knuth84,
  author={Donald Ervin Knuth},
  title={The \TeX book},
  year={1984},
  publisher={Addison-Wesley}
}
@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{mitgoo04,
  author={Frank Mittelbach and Michel Goossens},
  title={The \LaTeX\ Companion},
  year={2004},
  publisher={Addison-Wesley},
  edition={Second}
}
@BOOK{goomit07,
  author={Michel Goossens and Frank Mittelbach and Sebastian Rahtz and Denis Roegel and Herbert Voss},
  title={The \LaTeX\ Graphics Companion},
  year={2007},
  publisher={Addison-Wesley},
  edition={Second}
}
\end{filecontents*}
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[round]{natbib}

\begin{document}
  First reference: \cite{knuth84}

  Second reference: \cite{lamport94}

  Third reference: \cite{mitgoo04}

  Fourth reference: \cite{goomit07}
  \bibliographystyle{plainnat}
  \bibliography{\jobname}
\end{document}
And by the way, if something doesn't work, specific information like error messages could be helpful.


Best regards and welcome to the board
Thorsten
Post Reply