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 (...)

2 comments:

Pedro Lopes said...

Thanks.
This was helpfull just now... I was trying to understand how the hell it latex changed the capital letters in the bibliography.

rontgen said...

Thanks,

worked like a charm