Guest User

Untitled

a guest
Oct 11th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage[style=reading,
  4. entryhead=true,
  5. entrykey=false,
  6. natbib,
  7. hyperref=false,
  8. url=false,
  9. doi=false,
  10. %style=apa,
  11. sorting=nyt,
  12. isbn=false,
  13. %backref=true,
  14. firstinits=true,
  15. minnames=13,
  16. maxnames=35,
  17. minbibnames=10,
  18. maxbibnames=100,
  19. parentracker=true,
  20. defernumbers=true,
  21. backend=biber]{biblatex}
  22.  
  23. DeclareSourcemap{
  24. maps[datatype=bibtex]{
  25. map{
  26. step[notfield=annotation,entrynull=true]
  27. }
  28. }
  29. }
  30.  
  31. begin{filecontents}{jobname.bib}
  32. @inproceedings{ABCDFG,
  33. annote = {This is a very nice paper.},
  34. author = {GGPB},
  35. booktitle = {BOEUS},
  36. keywords = {clipping},
  37. title = {NOAP},
  38. volume = {0},
  39. year = {2005},
  40. }
  41. @inproceedings{XXXXXX,
  42. author = {PQR},
  43. booktitle = {BBC},
  44. keywords = {LLM},
  45. title = {ARP},
  46. year = {2010},
  47. }
  48. end{filecontents}
  49.  
  50. addbibresource{jobname.bib}
  51.  
  52. begin{document}
  53.  
  54. nocite{*}
  55.  
  56. printbibliography
  57.  
  58. end{document}
Add Comment
Please, Sign In to add comment