Advertisement
Guest User

Untitled

a guest
Jan 4th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.75 KB | None | 0 0
  1. \documentclass{article}
  2.  
  3. \usepackage{filecontents}
  4. \begin{filecontents*}{references.bib}
  5. @article{glashow,
  6.  author       = {Glashow, Sheldon},
  7.  title        = {Partial Symmetries of Weak Interactions},
  8.  journaltitle = {Nucl.~Phys.},
  9.  date         = 1961,
  10.  volume       = 22,
  11.  pages        = {579-588},
  12. }
  13. @article{weinberg,
  14.  author       = {Weinberg, Steven},
  15.  title        = {A Model of Leptons},
  16.  journaltitle = {Phys.~Rev.~Lett.},
  17.  date         = 1967,
  18.  volume       = 19,
  19.  pages        = {1264-1266},
  20. }
  21. \end{filecontents*}
  22.  
  23. \usepackage[
  24.  backend = biber,
  25.  style = numeric,
  26.  citestyle = numeric
  27. ]{biblatex}
  28.  
  29. \addbibresource{references.bib}
  30.  
  31. \begin{document}
  32.  
  33. \cite{glashow}
  34.  
  35. \printbibliography
  36.  
  37. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement