Guest User

Untitled

a guest
Jan 19th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. documentclass{book}
  2.  
  3. usepackage[utf8]{inputenc}
  4. usepackage[T1]{fontenc}
  5.  
  6. usepackage{filecontent}
  7.  
  8. begin{filecontents}{biblio.bib}
  9. @book{Yvon_1935,
  10. title = {La Th'eorie Statistique Des Fluides et l''equation d''etat},
  11. series = {Actualit'es Scientifiques et Industrielles ; {{Th'eories}} M'ecaniques (Hydrodynamique-Acoustique)},
  12. publisher = {{Hermann & cie}},
  13. date = {1935},
  14. author = {Yvon, Jacques},
  15. lccn = {37018772}
  16. }
  17.  
  18. @article{Born_1946,
  19. title = {A General Kinetic Theory of Liquids {{I}}. {{The}} Molecular Distribution Functions},
  20. volume = {188},
  21. issn = {2053-9169},
  22. doi = {10.1098/rspa.1946.0093},
  23. number = {1012},
  24. journaltitle = {Proceedings of the Royal Society of London. Series A. Mathematical and Physical Sciences},
  25. date = {1946-12-31},
  26. pages = {10-18},
  27. author = {Born, Max and Green, Herbert Sydney},
  28. }
  29.  
  30. @article{Kirkwood_1946,
  31. title = {The {{Statistical Mechanical Theory}} of {{Transport Processes I}}. {{General Theory}}},
  32. volume = {14},
  33. issn = {0021-9606, 1089-7690},
  34. url = {http://aip.scitation.org/doi/10.1063/1.1724117},
  35. doi = {10.1063/1.1724117},
  36. number = {3},
  37. journaltitle = {The Journal of Chemical Physics},
  38. urldate = {2019-01-16},
  39. date = {1946-03},
  40. pages = {180-201},
  41. author = {Kirkwood, John Gamble},
  42. }
  43.  
  44. @article{Bogolioubov_1945,
  45. title = {Kinetic {{Equations}}},
  46. volume = {10},
  47. number = {3},
  48. journaltitle = {Journal of Physics USSR},
  49. date = {1945},
  50. pages = {265-274},
  51. author = {Bogolioubov, Nikola"i Nikola"ievitch}
  52. }
  53.  
  54. @article{Boncella_1984,
  55. author = {Boncella, James M. and Andersen, Richard A.},
  56. journal = {Inorg. Chem.},
  57. pages = {432--437},
  58. volume = {23},
  59. year = {1984}
  60. }
  61.  
  62. end{filecontents}
  63.  
  64. usepackage[citestyle=alphabetic, %
  65. bibstyle=alphabetic, %
  66. mcite=true, %
  67. subentry, %
  68. maxcitenames=3, %
  69. backend=biber %
  70. ]{biblatex}
  71.  
  72. addbibresource[datatype=bibtex]{biblio.bib}
  73.  
  74. begin{document}
  75. A first citation~cite{Boncella_1984}.
  76. And another that I want to cite as a set BBGKY45~mcite{setBBGKY, *Yvon_1935,*Bogolioubov_1945,*Born_1946,*Kirkwood_1946}.
  77.  
  78. printbibliography
  79. end{document}
Add Comment
Please, Sign In to add comment