Guest User

Untitled

a guest
Jun 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. documentclass[a4paper,12pt]{report}
  2. usepackage[pdfborder=false]{hyperref}
  3. usepackage[czech]{babel}
  4.  
  5. begin{filecontents}{jobname.bib}
  6. @book{foo2018,
  7. title = "Filosofie hodnot: problémy lidské existence, poznání a hodnocení",
  8. author = "Soňa Dorotíková",
  9. isbn = "80-86039-79-X",
  10. year = "1998",
  11. publisher = "Pedagogická fakulta Univerzity Karlovy"
  12. }
  13. end{filecontents}
  14. usepackage[citestyle=verbose,backend=biber]{biblatex}
  15. addbibresource{jobname.bib}
  16.  
  17. begin{document}
  18.  
  19. Full description, not clickable:
  20. footcite[1]{foo2018}
  21.  
  22. Short description, but link to previous footcite, which I don't want:
  23. footcite[164]{foo2018}.
  24.  
  25. This should be clickable
  26. url{http://kernel.org}
  27.  
  28. printbibliography
  29. end{document}
  30.  
  31. documentclass[a4paper,12pt]{report}
  32. usepackage{hyperref}
  33. usepackage[czech]{babel}
  34.  
  35. begin{filecontents}{jobname.bib}
  36. @book{foo2018,
  37. title = "Filosofie hodnot: problémy lidské existence, poznání a hodnocení",
  38. author = "Soňa Dorotíková",
  39. isbn = "80-86039-79-X",
  40. year = "1998",
  41. publisher = "Pedagogická fakulta Univerzity Karlovy",
  42. }
  43.  
  44. @online{bar2017,
  45. author = {Baz},
  46. title = {Title},
  47. date = {2017},
  48. url = {http://kernel.org},
  49. }
  50. end{filecontents}
  51. usepackage[citestyle=verbose,backend=biber,hyperref=false]{biblatex}
  52. addbibresource{jobname.bib}
  53.  
  54. begin{document}
  55.  
  56. Full description, not clickable:
  57. footcite[1]{foo2018}
  58.  
  59. Short description, but link to previous footcite, which I don't want:
  60. footcite[164]{foo2018}.
  61.  
  62. footcite{bar2017}.
  63.  
  64. This should be clickable
  65. url{http://kernel.org}
  66.  
  67. printbibliography
  68. end{document}
Add Comment
Please, Sign In to add comment