Guest User

Untitled

a guest
Nov 15th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. Undefined control sequence.<argument> datecircaprint mkbibdateapalongextra {labelyear}{labelmonth}{la... l.78 end{frame}
  2. Package biblatex Warning: Bibliography string 'retrieved' undefined at entry 'some-3' on input line 78.
  3. Package biblatex Warning: Bibliography string 'from' undefined at entry 'some-3' on input line 78.
  4.  
  5. usepackage[polish]{babel}
  6. DeclareLanguageMapping{polish}{polish-apa}
  7.  
  8. documentclass[10pt, compress, xcolor={usenames, dvipsnames}]{beamer}
  9. usepackage{appendixnumberbeamer}
  10. usepackage[export]{adjustbox}
  11. mode<presentation> {
  12. usetheme{Warsaw}
  13. setbeamertemplate{headline}{}
  14. usepackage[backend=biber,style=apa,citestyle=authoryear, natbib=true]{biblatex}
  15. DefineBibliographyStrings{english}{andothers={i inni},and={i}} %% Mentioned strings are in polish, not english.
  16.  
  17. % According to: https://tex.stackexchange.com/questions/202988/beamer-patching-footnotes-warning-patching-footnotes-failed-footnote-detectio
  18. % Filter warnings issued by package biblatex starting with "Patching footnotes failed"
  19. usepackage{silence,lmodern}
  20. WarningFilter{biblatex}{Patching footnotes failed}
  21. addbibresource{bibliografia.bib}
  22. setbeamertemplate{navigation symbols}{}
  23. }
  24. usepackage{graphicx}
  25. usepackage{polski}
  26. uselanguage{polish}
  27. languagepath{polish}
  28. usepackage[utf8]{inputenc}
  29. usepackage{multirow}
  30.  
  31. %%%%%%%%%%%%%%%%%%%%%%
  32. % TITLE PAGE definition
  33. logo{%
  34. includegraphics[scale=0.15]{smiley.pdf}~%
  35. }
  36.  
  37. title[Short title]{This is a long title displayed only on the title page}
  38. subtitle{Subtitle}
  39.  
  40. author[short author]{Autor: I am an authorbreak{small co-author: this is coauthor}}
  41.  
  42. institute[some]
  43. {
  44. setlengthtabcolsep{0.7pt} % default value: 6pt
  45. begin{table}[]
  46. centering
  47. label{tab:Tabelka}
  48. begin{tabular}{cl}
  49. includegraphics[width=0.08linewidth, valign=c]{smiley-orange.pdf} & My University \[.2cm] %scale=0.05,
  50. multirow{2}{*}{includegraphics[width=0.05linewidth, valign=c]{smiley-green.pdf}} & My Faculty, \
  51. & in two lines \[.2cm]
  52. includegraphics[width=0.04linewidth, valign=c]{smiley.pdf} & My department %scale=0.1
  53. end{tabular}
  54. end{table}
  55. setlengthtabcolsep{6pt} % default value: 6pt
  56. }
  57.  
  58. date{15.11.2017}
  59. %%%%%%%%%%%%%%%%%%%%%%
  60.  
  61.  
  62. begin{document}
  63.  
  64. begin{frame}
  65. titlepage
  66. end{frame}
  67.  
  68. section{Introduction}
  69.  
  70. %------------------------------------------------
  71. begin{frame}
  72. frametitle{Some information}
  73.  
  74. Thus I will cite: citep{some-1, some-2}.
  75.  
  76. I would like to cite citep{some-3} as well.
  77. end{frame}
  78.  
  79. section*{}
  80. appendix
  81.  
  82. begin{frame}[t,allowframebreaks]
  83. frametitle{References}
  84. {footnotesize printbibliography}
  85. end{frame}
  86.  
  87. end{document}
  88.  
  89. @article{some-3,
  90. author = "XYW, Cl{'e}ment and T{"u}ger, Andrew",
  91. hal_id = "hydro-004455129",
  92. hal_version = "v1",
  93. journal = "{some Journal}",
  94. month = dec,
  95. pages = "1323--1337",
  96. pdf = "https://no-such-page/test.pdf",
  97. publisher = "{LaTeX Publications}",
  98. title = "{From LaTeX to PDF}",
  99. url = "https://no-such-page/2wtr-003e4329",
  100. volume = "2",
  101. year = "2009"
  102. }
  103.  
  104. @article{some-1,
  105. title = "LaTeX in space",
  106. journal = "TeX Journal ",
  107. volume = "17(1)",
  108. pages = "113--122",
  109. year = "2015",
  110. doi = "",
  111. author = "Thomas Key"
  112. }
  113.  
  114. @ARTICLE{some-2,
  115. author={RtV, Y. and ODW, P. and Tom, J.-P.},
  116. journal={Proceedings of the TeX},
  117. title={{The} {LaTeX} {Mission}},
  118. year={2014},
  119. volume={980},
  120. number={5},
  121. pages={66-67},
  122. abstract={Long text here},
  123. keywords={keyword 1; keyword 2; keyword 3},
  124. doi={10.999999/e434EXW},
  125. ISSN={0112-5319},
  126. month={05},
  127. }
Add Comment
Please, Sign In to add comment