Guest User

Untitled

a guest
Oct 18th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. documentclass{article}
  2. usepackage[utf8]{inputenc}
  3. usepackage[english]{babel}
  4.  
  5. usepackage[style=nejm, backend=biber]{biblatex}
  6. addbibresource{sample.bib}
  7.  
  8. begin{document}
  9. Let's cite! The Einstein's journal paper cite{einstein} and the Dirac's
  10. book cite{dirac} are physics related items.
  11.  
  12. printbibliography
  13.  
  14. end{document}
  15.  
  16. @article{einstein,
  17. author = "Albert Einstein",
  18. title = "{Zur Elektrodynamik bewegter K{"o}rper}. ({German})
  19. [{On} the electrodynamics of moving bodies]",
  20. journal = "Annalen der Physik",
  21. volume = "322",
  22. number = "10",
  23. pages = "891--921",
  24. year = "1905",
  25. DOI = "http://dx.doi.org/10.1002/andp.19053221004",
  26. keywords = "physics"
  27. }
  28.  
  29. @book{dirac,
  30. title={The Principles of Quantum Mechanics},
  31. author={Paul Adrien Maurice Dirac},
  32. isbn={9780198520115},
  33. series={International series of monographs on physics},
  34. year={1981},
  35. publisher={Clarendon Press},
  36. keywords = {physics}
  37. }
Add Comment
Please, Sign In to add comment