BibTeX, biblatex and biberHow to abbreviate Author name in citation

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
HypnosiS
Posts: 20
Joined: Sun Sep 21, 2008 2:58 pm

How to abbreviate Author name in citation

Post by HypnosiS »

This is my citation and .bib file:

Code: Select all

\citep{bas09}:

Code: Select all

@techreport{bas09,
	institution = "Bank for International Settlements",
	title = "Range of practices and issues in economic capital frameworks",
	author = "{Basel Committee on Banking Supervision}",
	year = "2009"
}
and pdf view:
(Basel Committee on Banking Supervision, 2009)
I dont want to change my reference appereance but in the text is it possible to do citation in a short form? Such as:
(BCBS, 2009)

Recommended reading 2024:

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

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

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

How to abbreviate Author name in citation

Post by kaiserkarl13 »

If you're using natbib, you might try \defcitealias combined with \citealias or \citepalias. Anywhere in the input file, issue \defcitealias{bas09}{BCBS, 2009}. Then in the text, \citepalias{bas09}

See http://merkel.zoneo.net/Latex/natbib.php for a good Natbib reference sheet.
HypnosiS
Posts: 20
Joined: Sun Sep 21, 2008 2:58 pm

Re: How to abbreviate Author name in citation

Post by HypnosiS »

I'm using natbib. Thank you very much. You helped a lot.
Post Reply