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

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
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