Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. documentclass[a4paper,12pt]{report}
  2. usepackage[T1]{fontenc}
  3. usepackage[round]{natbib}
  4. usepackage[spanish]{babel}
  5. usepackage[utf8]{inputenc}
  6. begin{document}
  7. citet{DIJKSTRA1959}
  8. bibliographystyle{plainnat}
  9. bibliography{mybib}
  10. end{document}
  11.  
  12. @article{DIJKSTRA1959,
  13. author = {Dijkstra, E. W.},
  14. title = {A note on two problems in connection with graphs},
  15. journal = {Numer. Math.},
  16. pages = {269-271}
  17. year = {1959},
  18. volume = 1
  19. }
  20.  
  21. pdflatex file
  22. bibtex file
  23.  
  24. The style file: plainnat.bst
  25. Database file #1: mybib.bib
  26. I was expecting a `,' or a `}'---line 6 of file mybib.bib
  27. :
  28. : year = {1959},
  29. (Error may have been on previous line)
  30. I'm skipping whatever remains of this entry
  31. Warning--empty year in DIJKSTRA1959
  32. Warning--empty year in DIJKSTRA1959
  33.  
  34. bibitem[Dijkstra()]{DIJKSTRA1959}
  35. E.~W. Dijkstra.
  36. newblock A note on two problems in connection with graphs.
  37. newblock emph{Numer. Math.}, pages 269--271.
  38.  
  39. @article{DIJKSTRA1959,
  40. author = {Dijkstra, E. W.},
  41. title = {A note on two problems in connection with graphs},
  42. journal = {Numer. Math.},
  43. pages = {269-271},
  44. year = {1959},
  45. volume = 1
  46. }
  47.  
  48. bibitem[Dijkstra(1959)]{DIJKSTRA1959}
  49. E.~W. Dijkstra.
  50. newblock A note on two problems in connection with graphs.
  51. newblock emph{Numer. Math.}, 1:penalty0 269--271, 1959.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement