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 ?
BibTeX, biblatex and biber ⇒ Get LaTeX logo in bibliography
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
I have no problems. See below for an example from my archives.
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
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}
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10