Guest User

Untitled

a guest
Jan 18th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage{filecontents}
  4. begin{filecontents*}{jobname.bib}
  5. @Set{A,
  6. entryset = {A:V1,A:V2,A:V3,A:V4},
  7. }
  8.  
  9. @ARTICLE{A:V1,
  10. author = {{Riess}, Adam G. and {Filippenko}, Alexei V. and {Challis}, Peter and {Clocchiatti}, Alejandro and {Diercks}, Alan and {Garnavich}, Peter M. and {Gilliland}, Ron L. and {Hogan}, Craig J. and {Jha}, Saurabh and {Kirshner}, Robert P. and {Leibundgut}, B. and {Phillips}, M.~M. and {Reiss}, David and {Schmidt}, Brian P. and {Schommer}, Robert A. and {Smith}, R. Chris and {Spyromilio}, J. and {Stubbs}, Christopher and {Suntzeff}, Nicholas B. and {Tonry}, John},
  11. title = "{Observational Evidence from Supernovae for an Accelerating Universe and a Cosmological Constant}",
  12. journal = {Astron. J.},
  13. year = 1998,
  14. month = Sep,
  15. volume = {116},
  16. pages = {1009-1038},
  17. doi = {10.1086/300499},
  18. archivePrefix = {arXiv},
  19. eprint = {astro-ph/9805201},
  20. primaryClass = {astro-ph},
  21. }
  22.  
  23. @ARTICLE{A:V2,
  24. author = {{Bahcall}, N.~A. and {Ostriker}, J.~P. and {Perlmutter}, S. and {Steinhardt}, P.~J.},
  25. title = "{The Cosmic Triangle: Revealing the State of the Universe}",
  26. journal = {Science},
  27. year = 1999,
  28. month = May,
  29. volume = {284},
  30. pages = {1481},
  31. doi = {10.1126/science.284.5419.1481},
  32. archivePrefix = {arXiv},
  33. eprint = {astro-ph/9906463},
  34. primaryClass = {astro-ph},
  35. }
  36.  
  37. @ARTICLE{A:V3,
  38. author = {{Perlmutter}, S. and {Aldering}, G. and {Goldhaber}, G. and {Knop}, R.~A. and {Nugent}, P. and {Castro}, P.~G. and {Deustua}, S. and {Fabbro}, S. and {Goobar}, A. and {Groom}, D.~E. and {Hook}, I.~M. and {Kim}, A.~G. and {Kim}, M.~Y. and {Lee}, J.~C. and {Nunes}, N.~J. and {Pain}, R. and {Pennypacker}, C.~R. and {Quimby}, R. and {Lidman}, C. and {Ellis}, R.~S. and {Irwin}, M. and {McMahon}, R.~G. and {Ruiz-Lapuente}, P. and {Walton}, N. and {Schaefer}, B. and {Boyle}, B.~J. and {Filippenko}, A.~V. and {Matheson}, T. and {Fruchter}, A.~S. and {Panagia}, N. and {Newberg}, H.~J.~M. and {Couch}, W.~J. and {Project}, The Supernova Cosmology},
  39. title = "{Measurements of {ensuremath{Omega}} and {ensuremath{Lambda}} from 42 High-Redshift Supernovae}",
  40. journal = {Astrophys. J.},
  41. year = 1999,
  42. month = Jun,
  43. volume = {517},
  44. pages = {565-586},
  45. doi = {10.1086/307221},
  46. archivePrefix = {arXiv},
  47. eprint = {astro-ph/9812133},
  48. primaryClass = {astro-ph},
  49. }
  50.  
  51. @ARTICLE{A:V4,
  52. author = {{Bennett}, C.~L. and {Halpern}, M. and {Hinshaw}, G. and {Jarosik}, N. and {Kogut}, A. and {Limon}, M. and {Meyer}, S.~S. and {Page}, L. and {Spergel}, D.~N. and {Tucker}, G.~S. and {Wollack}, E. and {Wright}, E.~L. and {Barnes}, C. and {Greason}, M.~R. and {Hill}, R.~S. and {Komatsu}, E. and {Nolta}, M.~R. and {Odegard}, N. and {Peiris}, H.~V. and {Verde}, L. and {Weiland}, J.~L.},
  53. title = "{First-Year Wilkinson Microwave Anisotropy Probe (WMAP) Observations: Preliminary Maps and Basic Results}",
  54. journal = {Astrophys. J. Suppl. Ser. },
  55. year = 2003,
  56. month = Sep,
  57. volume = {148},
  58. pages = {1-27},
  59. doi = {10.1086/377253},
  60. archivePrefix = {arXiv},
  61. eprint = {astro-ph/0302207},
  62. primaryClass = {astro-ph},
  63. }
  64.  
  65.  
  66.  
  67.  
  68.  
  69. end{filecontents*}
  70.  
  71. usepackage[
  72. subentry,
  73. style=numeric-comp,
  74. doi=false,
  75. maxbibnames=8,
  76. minbibnames=1,
  77. alldates=year,
  78. eprint=false
  79. ]{biblatex}
  80.  
  81. DeclareFieldFormat{bibentrysetcount}{hspace*{-0.3em}}
  82.  
  83. renewbibmacro{in:}{}
  84.  
  85. DeclareFieldFormat{pages}{#1}
  86.  
  87. DeclareSourcemap{
  88. maps[datatype=bibtex]{
  89. map{
  90. step[fieldset=title, null]
  91. }
  92. }
  93. }
  94.  
  95. addbibresource{jobname.bib}
  96.  
  97. begin{document}
  98.  
  99. cite{A}
  100.  
  101. printbibliography
  102.  
  103. end{document}
Add Comment
Please, Sign In to add comment