Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. myfile.tex
  2. mybib.bib
  3. /build [all copiled files go here, including myfile.aux and myfile-blx.bib]
  4.  
  5. addbibresource{mybib.bib}
  6.  
  7. bibdata{myfile-blx,mybib}
  8.  
  9. bibtex8 --wolfgang build/%
  10.  
  11. bibdata{build/myfile-blx,mybib}
  12.  
  13. documentclass[a4paper, fontsize=12pt]{scrartcl}
  14. usepackage{filecontents}
  15. begin{filecontents}{mybib.bib}
  16. % This file was created with JabRef 2.8.1.
  17. % Encoding: ISO8859_1
  18.  
  19. @ARTICLE{author2010,
  20. author = {Some Author},
  21. title = {Fancy Title},
  22. journal = {Another Journal},
  23. year = {2010},
  24. volume = {91},
  25. pages = {229-261},
  26. number = {2},
  27. timestamp = {2012.09.01}
  28. }
  29.  
  30. @comment{jabref-meta: selector_review:}
  31.  
  32. @comment{jabref-meta: selector_publisher:}
  33.  
  34. @comment{jabref-meta: selector_author:}
  35.  
  36. @comment{jabref-meta: selector_journal:}
  37.  
  38. @comment{jabref-meta: selector_keywords:}
  39. end{filecontents}
  40.  
  41. usepackage[T1]{fontenc}
  42. usepackage[utf8]{inputenc}
  43. usepackage[ngerman]{babel}
  44.  
  45. usepackage{csquotes}
  46. usepackage[backend=bibtex8,bibencoding=latin1]{biblatex}
  47. addbibresource{mybib.bib}
  48.  
  49. begin{document}
  50.  
  51. section{Section}
  52. Lots of text.
  53. footnote[111]{cite[S.~250--255]{author2010}}
  54.  
  55. printbibliography
  56.  
  57. end{document}
  58.  
  59. The 8-bit codepage and sorting file: 88591lat.csf
  60. The top-level auxiliary file: build/myfile.aux
  61. The style file: biblatex.bst
  62. I couldn't open database file myfile-blx.bib
  63. ---line 4 of file build/myfile.aux
  64. : bibdata{myfile-blx
  65. : ,mybib}
  66. I'm skipping whatever remains of this command
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement