How can I print months in French with BibTeX?
@Misc{url-site,
key = {site},
title = {\textit{site}},
month = jun,
year = {2012},
howpublished = {URL: \texttt{http://www. a web site.com/}}
}
It displays June, but I'd like Juin
bibliographiesbibtexdatetime
How can I print months in French with BibTeX?
@Misc{url-site,
key = {site},
title = {\textit{site}},
month = jun,
year = {2012},
howpublished = {URL: \texttt{http://www. a web site.com/}}
}
It displays June, but I'd like Juin
Best Answer
You don't indicate which bibliography style file you use, so I'll assume that it's the "default" file, viz.,
plain.bst
. If so, the problem you're facing is that this file contains the instructionThus, the string "jun" in your bib file will be typeset as "June" unless there's an explicit override. You can provide this override by inserting the instruction
at the top of your bib file.
Separately, I'd also recommend that you change the line
to
and load the
url
package (which provides the command\url
). The advantage of taking this approach is that theurl
package can (almost) always choose a suitable line break for long and complicated url strings, letting you avoid massively underfull or overfull lines.Taking these observations together, your
.bib
file (called, say, urlcite.bib) should contain:A full MWE might then look like this: