BibTeX, biblatex and biberupcase to lowercase

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
dagna
Posts: 16
Joined: Wed Mar 03, 2010 7:28 pm

upcase to lowercase

Post by dagna »

Hi!

In example:

Code: Select all

@MISC{url:acl,
TITLE = "POSIX Access Control Lists on Linux",
howpublished = "\url{http://www.suse.de/~agruen/acl/linux-acls/online/}"
}
I used uppercase "POSIX". In text output I have:
[3] Posix access control lists on linux. http://www.suse.de/~agruen/acl/
linux-acls/online/.
How can I change it?

Recommended reading 2024:

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

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

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: upcase to lowercase

Post by frabjous »

Put whatever you want to keep in uppercase inside braces, e.g.:

TITLE = "{POSIX} Access Control Lists on Linux",

or even

TITLE = "{POSIX} {A}ccess {C}ontrol {L}ists on {L}inux",
Post Reply