Guest User

Untitled

a guest
Feb 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage[style=alphabetic-verb]{biblatex}
  4.  
  5. usepackage{filecontents}
  6.  
  7. begin{filecontents}{myerratum.bib}
  8. @article{wrongarticle,
  9. author={{S}hakespeare, {W}illiam},
  10. title={Taming of the shrew},
  11. journal={POWS},
  12. year={1600},
  13. pages={1-10},
  14. addendum={Erratum-ibid. Textcite{erratumarticle}},
  15. }
  16.  
  17. @article{erratumarticle,
  18. author={{S}hakespeare, {W}illiam},
  19. title={Taming of the shrew -- Erratum},
  20. journal={POWS -- Addendum},
  21. year={1601},
  22. pages={200-205},
  23. }
  24.  
  25.  
  26. end{filecontents}
  27.  
  28. addbibresource{myerratum.bib}
  29.  
  30. begin{document}
  31.  
  32. nocite{wrongarticle}
  33.  
  34. printbibliography
  35.  
  36. end{document}
  37.  
  38. documentclass{article}
  39. usepackage[style=authoryear-ibid, autocite=footnote]{biblatex}
  40. usepackage{hyperref}
  41. usepackage{filecontents}
  42. begin{filecontents}{myerratum.bib}
  43. @article{gani-1955,
  44. author = {Gani, J.},
  45. title = {Some Theorems and Sufficiency Conditions for the Maximum-Likelihood Estimator of an Unknown Parameter in a Simple {Markov} Chain},
  46. journal = {Biometrika},
  47. date = {1955-12-01},
  48. volume = {42},
  49. issue = {3/4},
  50. pages = {342--359},
  51. doi = {https://doi.org/10.1093/biomet/42.3-4.342},
  52.  
  53. related = {gani-corrigenda-1955},
  54. relatedstring={Corrected in},
  55. }
  56.  
  57. @article{gani-corrigenda-1955,
  58. author = {Gani, J.},
  59. title = {Corrigenda},
  60. journal = {Biometrika},
  61. date = {1956-12-01},
  62. volume = {43},
  63. issue = {3/4},
  64. pages = {497--498},
  65. doi = {10.1093/biomet/43.3-4.497},
  66. }
  67. end{filecontents}
  68. addbibresource{myerratum.bib}
  69. begin{document}
  70. nocite{gani-1955}
  71. printbibliography
  72. end{document}
Add Comment
Please, Sign In to add comment