Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. begin{filecontents*}{sample.bib}
  2. @article{wu2019method,
  3. title={A method to identify weak points of interconnection of renewable energy resources},
  4. author={Wu, Di and Aldaoudeyeh, Al~Motasem and Javadi, Milad and Ma, Feng and Tan, Jin and Jiang, John N and others},
  5. journal={International Journal of Electrical Power & Energy Systems},
  6. volume={110},
  7. pages={72--82},
  8. year={2019},
  9. publisher={Elsevier}
  10. }
  11. end{filecontents*}
  12.  
  13.  
  14. documentclass{book}
  15.  
  16. usepackage[x11names]{xcolor}
  17.  
  18. usepackage{hyperref}
  19. hypersetup{citecolor=DodgerBlue3, citebordercolor=DodgerBlue3, colorlinks=true}
  20.  
  21. usepackage[style=ext-authoryear,refsection=chapter,backref=true]{biblatex}
  22. addbibresource{sample.bib}
  23. DeclareInnerCiteDelims{cite}{bibopenbracket}{bibclosebracket}
  24. DeclareOuterCiteDelims{cite}{bibopenparen}{bibcloseparen}
  25.  
  26.  
  27.  
  28. begin{document}
  29.  
  30. cite{wu2019method}
  31.  
  32. textcite[see][pages 15-28]{wu2019method}
  33.  
  34. (see [Wu et al. 2019], pages 15-28)
  35.  
  36. printbibliography
  37.  
  38. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement