Convert BibTeX to PDF

Upload a BibTeX-file and generate a PDF file containing a nicely formatted list of references

Description

This website allows you to convert a BibTex (*.bib) file to a nicely formatted PDF. It will include the bibliography in a rudimentary LaTeX file, using pdflatex to generate the output. It might come in handy, if you don't have a LaTeX environment or can't be bothered to compile the file on your own right now. Just enter your BibTeX file below and click submit to receive a PDF shortly.

If you find this website useful, I'd love to hear about it. Feel free to drop me a mail or leave a comment on the related blogpost.

If you have come here in error and have no idea what this site is about, you can check Wikipedia for further information on LaTeX and BibTeX.

Enter data

It's really just two easy steps:

  1. Select a file:
  2. Upload:
  3. Three! It's three easy steps! "Select a file", "Upload", and "Wait a moment for compilation to finish". ;)
Advanced settings BibTeX Style:

The LaTeX framework behind this

For your reference, here is the LaTeX file used by the script. If you have a LaTeX installation available, you can also use this file to tailor the result according to your needs. Just copy the text below into a LaTeX file and replace $YOUR_FILE with the name of your BibTeX file.

\documentclass{amsart}
\begin{document}
\nocite{*}
\bibliographystyle{amsplain}
\bibliography{$YOUR_FILE}
\end{document}