- The problem: one source, many uses. Journal style requirements.
- Software: a database
- Integration with your writing system
- Importing PDF and PDF metadata
- Different bibliography styles
- Reference Management Software
Free
- JabRef - works with LaTeX, LibreOffice and OpenOffice. JSTOR lookup.
- Many others (see Comparison below), and
- gPapers
- I Librarian (x-platform)
- Referencer
Commercial
Different idea, but very useful
LaTeX and BibTeX
- the BibTeX database format:
@article{wuja-note,
author="Dominik Wujastyk",
title = "The Paper I Wrote",
journal = "Journal of Daft Ideas",
year = "2012",
volume= 33,
part ="2",
pages = "99-199"
}
\documentclass{article}
\usepackage{natbib}
\begin{document}
This is the case \citep{wuja-note}
\bibliographystyle{JRAS}
\bibliography{biblio-file}
\end{document}
>
This is the case (Wujastyk 2012).
References
Wujastyk 2012. "The Paper I Wrote," Journal of Daft Ideas 33(2): 99-199.- New: BibLaTeX (biber program)
\documentclass{article}
\usepackage{biblatex}
\usepackage[style=authoryear,
language=auto,
backend=biber,
natbib=true]{biblatex}
\addbibresource[datatype=bibtex]{biblio-file.bib}
\begin{document}
This is the case \citep{wuja-note}.
\printbibliography
\end{document}
>
This is the case (Wujastyk 2012).
References
Wujastyk 2012. "The Paper I Wrote," Journal of Daft Ideas 33(2): 99-199.
No comments:
Post a Comment