Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. \documentclass[12pt,a4paper]{article}
  2.  
  3. \usepackage[utf8]{inputenc}
  4. \usepackage[T1]{fontenc}
  5. \usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
  6.  
  7. \usepackage[onehalfspacing]{setspace}
  8.  
  9. \usepackage[authoryear]{natbib}
  10. \bibliographystyle{humannat}
  11.  
  12. \usepackage{filecontents}
  13.  
  14. \begin{filecontents*}{general.bib}
  15. @book{A01,
  16. title={Introduction to Information Retrieval},
  17. author={Manning, Christopher D. and Raghavan, Prabhakar and Sch{\"u}tze, Hinrich and others},
  18. year={2008},
  19. publisher={Cambridge University Press Cambridge}
  20. }
  21. \end{filecontents*}
  22.  
  23.  
  24. \begin{document}
  25.  
  26. This is just a text\footnote{\citealp[cf.][Pp.~94-23]{A01}}.
  27.  
  28. \bibliography{general.bib}
  29.  
  30. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement