Guest User

Untitled

a guest
Jul 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. documentclass[11pt]{book}
  2. usepackage[backend=biber,style=authoryear,autolang=other]{biblatex}
  3. usepackage[pdftex,colorlinks=true,linkcolor=blue,citecolor=red,urlcolor=magenta,pdfview={XYZ 0 null null}]{hyperref}
  4. usepackage[utf8]{inputenc}
  5. usepackage[T1]{fontenc}
  6.  
  7. usepackage{filecontents}
  8. begin{filecontents}{bibwithshort.bib}
  9. @book{lagrange_uvres_1867,
  10. author = {Lagrange, Joseph-Louis},
  11. editor = {Serret, Joseph-Alfred},
  12. title = {Œuvres},
  13. publisher = {Gauthier-Villars},
  14. location = {Paris},
  15. date = {1867/1892},
  16. volumes = {14},
  17. shorthand = {OL}
  18. }
  19. @article{fraser_joseph_1987,
  20. title = {Joseph Louis Lagrange's Algebraic Vision of the Calculus},
  21. volume = {14},
  22. journaltitle = {Historia Mathematica},
  23. year = {1987},
  24. pages = {38--53},
  25. author = {Fraser, Craig G.},
  26. }
  27. end{filecontents}
  28. addbibresource{bibwithshort.bib}
  29.  
  30.  
  31. begin{document}
  32.  
  33. textcite{fraser_joseph_1987} mentions that in textcite[vol. VII, p. …]{lagrange_uvres_1867}…
  34.  
  35. %% Shorthands
  36. printbiblist{shorthand}
  37.  
  38. %% Bibliography
  39. printbibliography
  40.  
  41. end{document}
  42.  
  43. documentclass[11pt]{book}
  44. usepackage[backend=biber,style=authoryear,autolang=other]{biblatex}
  45. usepackage[pdftex,colorlinks=true,linkcolor=blue,citecolor=red,urlcolor=magenta,pdfview={XYZ 0 null null}]{hyperref}
  46. usepackage[utf8]{inputenc}
  47. usepackage[T1]{fontenc}
  48.  
  49. usepackage{filecontents}
  50. begin{filecontents}{bibwithshort.bib}
  51. @book{lagrange_uvres_1867,
  52. author = {Lagrange, Joseph-Louis},
  53. editor = {Serret, Joseph-Alfred},
  54. title = {Œuvres},
  55. publisher = {Gauthier-Villars},
  56. location = {Paris},
  57. date = {1867/1892},
  58. volumes = {14},
  59. shorthand = {OL}
  60. }
  61. @article{fraser_joseph_1987,
  62. title = {Joseph Louis Lagrange's Algebraic Vision of the Calculus},
  63. volume = {14},
  64. journaltitle = {Historia Mathematica},
  65. year = {1987},
  66. pages = {38--53},
  67. author = {Fraser, Craig G.},
  68. }
  69. end{filecontents}
  70. addbibresource{bibwithshort.bib}
  71.  
  72.  
  73. begin{document}
  74.  
  75. textcite{fraser_joseph_1987} mentions that in textcite[vol. VII, p. …]{lagrange_uvres_1867}…
  76.  
  77. %% Shorthands
  78. printbiblist{shorthand}
  79.  
  80. %% Bibliography
  81. defbibcheck{noshorthand}{%
  82. iffieldundef{shorthand}{}{skipentry}%
  83. }
  84. printbibliography[check=noshorthand]
  85.  
  86. end{document}
Add Comment
Please, Sign In to add comment