Guest User

Untitled

a guest
Feb 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. % arara: pdflatex: { shell: yes }
  2. % arara: biber
  3. % arara: pdflatex: { shell: yes }
  4. % arara: pdflatex: { shell: yes }
  5. documentclass{article}
  6. usepackage{filecontents}
  7. begin{filecontents}{jobname.bib}
  8. @book{ALEXANDER1977apl,
  9. Address = {USA},
  10. Author = {Alexander, Christopher and Ishikawa, Sara and Silverstein, Murray},
  11. Date-Added = {2010-02-24 11:14:54 +1100},
  12. Date-Modified = {2010-06-01 12:10:48 +1000},
  13. Publisher = {{Oxford University Press}},
  14. Title = {{A Pattern Language: Towns, Buildings, Construction}},
  15. Year = {1977}}
  16. end{filecontents}
  17. usepackage[indexing=cite,style=authoryear,citestyle=authoryear,sorting=none,maxnames=1]{biblatex}
  18. makeatletter
  19. AtEveryCite{%
  20. %letparentext=parentexttrack%
  21. letbibopenparen=bibopenbracket%
  22. letbibcloseparen=bibclosebracket}
  23. makeatother
  24. addbibresource{jobname.bib}
  25. begin{document}
  26. textcite[pp 45]{ALEXANDER1977apl}
  27. end{document}
  28.  
  29. renewcommand{mkbibnamelast}[1]{mkbibemph{#1}}
  30.  
  31. documentclass{article}
  32. usepackage{filecontents}
  33. begin{filecontents}{jobname.bib}
  34. @book{ALEXANDER1977apl,
  35. Address = {USA},
  36. Author = {Alexander, Christopher and Ishikawa, Sara and Silverstein, Murray},
  37. Date-Added = {2010-02-24 11:14:54 +1100},
  38. Date-Modified = {2010-06-01 12:10:48 +1000},
  39. Publisher = {{Oxford University Press}},
  40. Title = {{A Pattern Language: Towns, Buildings, Construction}},
  41. Year = {1977}}
  42. end{filecontents}
  43. usepackage[backend=bibtex,indexing=cite,style=authoryear,citestyle=authoryear,sorting=none,maxnames=1]{biblatex}
  44. makeatletter
  45. AtEveryCite{%
  46. letbibopenparen=bibopenbracket%
  47. letbibcloseparen=bibclosebracket}
  48. makeatother
  49. addbibresource{jobname.bib}
  50.  
  51. % Renew formatting of the last name to add emphasis
  52. renewcommand{mkbibnamelast}[1]{mkbibemph{#1}}
  53. % Revert formatting of the last name for bibliography
  54. AtBeginBibliography{renewcommand{mkbibnamelast}[1]{#1}}
  55.  
  56. begin{document}
  57.  
  58.  
  59. noindent Text citation: textcite[pp 45]{ALEXANDER1977apl}
  60.  
  61. printbibliography
  62.  
  63. end{document}
Add Comment
Please, Sign In to add comment