[Tex/LaTex] Best practice: define BibLateX/BibTeX entry with title in native language and in English

biblatexbibliographiesbibtexlanguages

I am preparing a paper. Some of the documents are written in Portuguese. My supervised suggested me to include in the bibliography the title translated to English and the title in Portuguese as well, and mention at the end the native language of the document. Is there a good way to do this, using biblatex or bibtex? A general entry for biblatex is below.

@misc{author1:year,
author={Author 1 and Author 2},
title={Title in english, Title in Portuguese},
howpublished={Institution},
month=dec,
year=2010,
url={some_place_internet.pdf},
urldate={2013-05},
note={Document in Portuguese},
}

Best Answer

Based on the answer above and comments, what I used was this:

@misc{author1:year,
author={Author 1 and Author 2},
title={Title in Portuguese [Title in english]},
howpublished={Institution},
month={December},
year={2010},
url={some_place_internet.pdf},
urldate={2013-05},
note={Original document in Portuguese},
}
Related Question