Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. @book{ kowalska1,
  2. author = {J. Kowalska},
  3. title = {Jeden},
  4. location = {Warszawa},
  5. year = {2003}
  6. }
  7. @book{ kowalska2,
  8. author = {J. Kowalska},
  9. title = {Dwa},
  10. location = {Kraków},
  11. year = {2008}
  12. }
  13.  
  14. documentclass{article}
  15. RequirePackage[hidelinks]{hyperref}
  16. RequirePackage{csquotes}
  17. DeclareQuoteStyle[quotes]{polish}
  18. {quotedblbase}
  19. {textquotedblright}
  20. [0.05em]
  21. {quotesinglbase}
  22. {fixligaturestextquoteright}
  23. DeclareQuoteAlias[quotes]{polish}{polish}
  24. usepackage{fontspec}
  25. usepackage{polyglossia}
  26. setmainlanguage{polish}
  27. setotherlanguage{russian}
  28. defaultfontfeatures{Mapping=tex-text, Scale=MatchLowercase, Ligatures=TeX}
  29. setmainfont{Linux Libertine O}
  30. newfontfamilyrussianfont[Script=Cyrillic]{Linux Libertine O}
  31. usepackage[
  32. style=verbose-trad1, % numeric, alphabetic, authoryear, ect.
  33. sorting=nty,
  34. isbn=false,
  35. backend=biber]{biblatex}
  36. addbibresource{bibliografia.bib}
  37. begin{document}
  38. Lorem footcite{kowalska1}
  39. ipsum footcite{kowalska2}.
  40. Lorem footcite{kowalska1}
  41. ipsum footcite{kowalska2}.
  42. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement