Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. documentclass{scrartcl}
  2.  
  3. usepackage[english]{babel}
  4. usepackage[utf8]{inputenc}
  5.  
  6. usepackage[round]{natbib}
  7. usepackage[hidelinks]{hyperref}
  8.  
  9. begin{document}
  10.  
  11. % this produces a warning, but no letters are cut off
  12. subsection{Some text: citet{wilks} abcde}
  13.  
  14. % this does not, but the a is missing
  15. subsection{Some text: texorpdfstring{citet{wilks}} abcde}
  16.  
  17. % same here
  18. subsection{Some text: texorpdfstring{citet{wilks} } abcde}
  19.  
  20. begin{thebibliography}{99}
  21. bibitem[Wilks, 2011]{wilks} Wilks DS. 2011.
  22. {em Statistical Methods in the Atmospheric Sciences/} (3rd ed.).
  23. Elsevier: Amsterdam.
  24. end{thebibliography}
  25.  
  26. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement