Showing posts with label caps. Show all posts
Showing posts with label caps. Show all posts

Sunday, July 19, 2009

LaTeX: Keeping capitals in bibliography

The bibtex was removing capital letters from paper reference that I wanted to keep. It took me a little bit to figure out a solution. But I think it might be useful, so I post it below. First I present the original bibtex entry:

@INPROCEEDINGS{
(...)
TITLE = "ION Framework - A Simulation Environment for Worlds with Virtual Agent",
(...)
}

The result was:
(...) Ion framework - A simulation environment for worlds with virtual agents (...)

The solution was to add brackets to the field as shown below:

@INPROCEEDINGS{
(...)
TITLE = "{ION Framework - A Simulation Environment for Worlds with Virtual Agent}",
(...)
}

And it worked fine:
(...) ION framework - A simulation environment for worlds with virtual agents (...)