BibTeX, biblatex and biberAuthor Name Formatting

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
jimstehrman
Posts: 5
Joined: Thu Jan 20, 2011 12:04 am

Author Name Formatting

Post by jimstehrman »

Hey,

I have a report I need to put into my reference page, where the author is an organization, so I can't have "Westbank First Nation Government" become "First Nation Government W."
How can I do this? Is there a formatting override in the source code?
I'm using JabRef.

Bonus question: How can I change the title of my bibliography page from "Bibliography" to "Reference"?

Thanks!

Recommended reading 2024:

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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10320
Joined: Mon Mar 10, 2008 9:44 pm

Author Name Formatting

Post by Stefan Kottwitz »

Hi,

perhaps use curly braces around the author name. Or tell us the bibliography style you are using - Jabref is a front-end.

Regarding the other question, redefine the macro \bibname or \refname, depending on your document class. If you use babel, use \addto for it.

There's no code yet because you did not post code and there are too many options. It would be easier if you tell us document class, bibliography style, used packages etc. - the best is a minimal working example.

Stefan
LaTeX.org admin
jimstehrman
Posts: 5
Joined: Thu Jan 20, 2011 12:04 am

Author Name Formatting

Post by jimstehrman »

Ok, sorry for being vague, I've been trying to fix this for hours, hahaha.
Here is an MWE

Code: Select all

\documentclass[a4paper,12pt]{report}
\usepackage{apalike}
\begin{document}

%Title Page + Essay
\cite{Westbank2006}
%more stuff

\bibliographystyle{apalike}
\bibliography{mwe}
\end{document}
Where MWE refers to this source code from Bibtex (generated by Jabref)

Code: Select all

@BOOK{Westbank2006,
  title = {Westbank {F}irst {N}ation {S}elf-{G}overnment {A}nnual {R}eport 2006},
  publisher = {Westbank, BC, Canada: 2006},
  author = {Westbank {F}irst {N}ation {S}elf-{G}overnment},
  owner = {jkehrman},
  timestamp = {2011.06.05}
}
producing this output:
First Nation Self Government, W. Westbank First Nation Self-Government Annual Report 2006. Westbank, BC, Canada: 2006.

Thanks again!
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Author Name Formatting

Post by frabjous »

Try:

Code: Select all

author = {{Westbank First Nation Self-Government}},
jimstehrman
Posts: 5
Joined: Thu Jan 20, 2011 12:04 am

Re: Author Name Formatting

Post by jimstehrman »

Woa! Solved, thanks so much!
Post Reply