BibTeX, biblatex and biber ⇒ Author Name Formatting
-
- Posts: 5
- Joined: Thu Jan 20, 2011 12:04 am
Author Name Formatting
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!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Author Name Formatting
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
-
- Posts: 5
- Joined: Thu Jan 20, 2011 12:04 am
Author Name Formatting
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}
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}}
First Nation Self Government, W. Westbank First Nation Self-Government Annual Report 2006. Westbank, BC, Canada: 2006.
Thanks again!
Author Name Formatting
Code: Select all
author = {{Westbank First Nation Self-Government}},
-
- Posts: 5
- Joined: Thu Jan 20, 2011 12:04 am