-
Notifications
You must be signed in to change notification settings - Fork 42
LaTeX
Péter Fankhauser edited this page Nov 3, 2014
·
1 revision
Currently, exporting a Web Page reference type from Mendeley to BibTeX results in adding the the URL to the BibTeX field url. However, the URL is not visible in the bibliography as this field is ignored the standard BibTeX/LaTeX.
An easy workaround is to add all online resources manually to a separate .bib-file. Your bibliography_websites.bib
should for example look like this:
@MISC{www:asimo,
author = {Honda},
title = {ASIMO},
month = November,
year = {2012},
howpublished={\url{http://asimo.honda.com}}
}
@MISC{www:petman,
author = {Boston Dynamics},
title = {PETMAN - BigDog gets a Big Brother},
month = November,
year = {2012},
howpublished={\url{http://www.bostondynamics.com/robot_petman.html}}
}
Include the new bibliography_websites.bib
file to your report with
\bibliography{bibliography_websites,bibliography}