BibTeX, biblatex and biber ⇒ force author name
force author name
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
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
force author name
Code: Select all
@book{someid,
author = {XXX Ag},
title = ...
}
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 = ...
}
Re: force author name
Thank you soo much!!!