BibTeX, biblatex and biberforce author name

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Scorpion
Posts: 12
Joined: Sun May 05, 2013 10:37 pm

force author name

Post by Scorpion »

Hey,
the author of one book/manual is a company "XXX AG" and I want that it is displayed like this. Now it looks like: "AG, XXX". How can i change that?


Best
Johannes

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

User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

force author name

Post by cgnieder »

Wild guess: you're talking about a bibliography entry, i.e. something like

Code: Select all

@book{someid,
  author = {XXX Ag},
  title  = ...
}
If my guess is right then XXX is taken as first name and Ag as last name which is why you're getting “Ag, XXX”. You can trick BibTeX (or biblatex/biber) by declaring this a single (i.e. last) name with another pair of braces:

Code: Select all

@book{someid,
  author = {{XXX Ag}},
  title  = ...
}
Regards
site moderator & package author
Scorpion
Posts: 12
Joined: Sun May 05, 2013 10:37 pm

Re: force author name

Post by Scorpion »

yes, thats exactly what i want!!!

Thank you soo much!!!
Post Reply