BibTeX, biblatex and biberAdd Stuff to Labels in Bibliography

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
manojg
Posts: 24
Joined: Thu Apr 28, 2011 3:20 am

Add Stuff to Labels in Bibliography

Post by manojg »

Hi,

I use

Code: Select all

\begin{thebibliography}{99}
    \bibitem{Hill:2011}
    ............
\end{thebibliography}
for my bibliography, and in the text it appears as [1], [2].... I want to insert a word "Exhibit:" so that it appears as [Exhibit: 1], [Exhibit: 2].
How can I do this? Any suggestion will be helpful.

Thanks.

Recommended reading 2024:

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

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

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Add Stuff to Labels in Bibliography

Post by kaiserkarl13 »

Code: Select all

\makeatletter
\def\@biblabel#1{[Exhibit: #1]}
\makeatother
manojg
Posts: 24
Joined: Thu Apr 28, 2011 3:20 am

Re: Add Stuff to Labels in Bibliography

Post by manojg »

Thanks.
Post Reply