Archive for the ‘LaTeX’ Category

Capital letters in references using BibTeX / Mayúsculas en citas usando BibTeX

The other day I tried to cite one article in one of my papers which contained the acronym “RANSAC” inside its title. I added the BibtTeX reference to the references’ file:

El otro día intenté citar en uno de mis artículos un paper que contenía el acrónimo “RANSAC” en su título. En mi fichero de referencias BibTeX añadí la siguiente entrada:

@InProceedings{ref01,
   AUTHOR = { xxx },
   booktitle = {xxx},
   TITLE = {xxx RANSAC BibTeX xxx},
   year = {2010},
}

After compiling the file I was surprised that in the pdf file the acronym appeared with lower case letters instead of capital letters. The solution to this problem consists in telling the LaTeX compiler to write the acronym as it is written in the bib file. In order to do this we just need to put the word (or letters) within additional braces.

Cuando compilé me sorprendió que en el pdf el acrónimo apareciera en letras minúsculas en lugar de en mayúsculas, como yo lo había escrito en el fichero de referencias. Para evitar este problema hay que decirle al compilador de LaTeX que escriba el título textualmente. Esto lo hacemos poniendo entre llaves adicionales la palabra que queremos que escriba en mayúsculas.

@InProceedings{ref01,
   AUTHOR = { xxx },
   booktitle = {xxx},
   TITLE = {xxx {RANSAC} {B}ib{T}e{X} xxx},
   year = {2010},
}

Para más consultas de BibTeX, un tutorial (en español) de gran calidad se puede consultar en
http://www.ctan.org/pub/tex-archive/info/spanish/guia-bibtex/guia-bibtex.pdf

Buscar
Anunciarse / Advertise

Póngase en contacto conmigo utilizando el formulario de contacto

Gracias por sus consejos y sugerencias ;)
_______________________

You can contact me using the contact form

Thanks for all your tips & suggestions ;)




Bookmark!
Bookmark and Share