Guest User

Untitled

a guest
Jun 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. documentclass[14pt]{article}
  2.  
  3. usepackage{fancyhdr}
  4. pagestyle{fancy}
  5.  
  6. usepackage[T1]{fontenc}
  7. usepackage[utf8]{inputenc}
  8. usepackage{lmodern}
  9. usepackage{graphicx}
  10. usepackage{textcomp}
  11. usepackage[american,italian]{babel}
  12. usepackage[babel,italian=guillemets]{csquotes}
  13. usepackage{hyperref}
  14. usepackage{ifthen}
  15. usepackage{datetime}
  16.  
  17. usepackage[style=philosophy-modern,hyperref,defernumbers=true,annotation=true,sorting=nyvt]{biblatex}
  18. %usepackage[style=apa,hyperref,sorting=nyvt]{biblatex} % not better than above
  19. addbibresource{test.bib}
  20.  
  21. begin{document}
  22. author{myself}
  23. title{main bib}
  24. maketitle
  25.  
  26. noindent
  27. nocite{*}
  28.  
  29. defbibheading{Main}{section{Main Section}}
  30. defbibnote{A}{nice books}
  31.  
  32. newrefcontext[labelprefix={A-}]
  33. printbibliography[heading=Main, prenote={A}, keyword=A]
  34.  
  35. end{document}
  36.  
  37. @Booklet{AAA,
  38. author = {name surname},
  39. label = {Ab},
  40. title = {main title A, also as parencite{BBB},
  41. pag.1-99, parencite{CCC}, {parencite{DDD}}, pp. 100-199},
  42. howpublished = {Ok},
  43. year = {2014},
  44. location = {MyTown},
  45. annotation = {also as parencite{BBB}, pag.1-99, parencite{CCC}, {parencite{DDD}}, pp. 1-99},
  46. keywords = {A}
  47. }
  48.  
  49. @Book{BBB,
  50. author = {alpha beta},
  51. title = {Main Book B},
  52. publisher = {editor},
  53. year = {2015},
  54. keywords = {A}
  55. }
  56.  
  57. @Book{CCC,
  58. author = {aaa BBB},
  59. title = {Main Book C},
  60. publisher = {editor},
  61. year = {2016},
  62. keywords = {A}
  63. }
  64.  
  65. @Book{DDD,
  66. author = {{NML} {IJK}},
  67. title = {Main Book D},
  68. publisher = {editor},
  69. year = {2017},
  70. keywords = {A}
  71. }
Add Comment
Please, Sign In to add comment