Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. LeNet [ label=<LeNetcite{lecun1990handwritten}> ]
  2.  
  3. ./example.tex:30:Use of Gin@ii doesn't match its definition }
  4.  
  5. documentclass[a4paper,10pt]{article}
  6. usepackage[psfrag]{graphviz}
  7. begin{document}
  8.  
  9. Some text with a citation~cite{book1}.
  10.  
  11. psfrag{lenetref}[cc][cc]{Lenetcite{book1}}
  12. psfrag{neocognitronref}[cc][cc]{NeoCognitroncite{misc1}}
  13. psfrag{backproprefabcdef}[cc][cc]{BackPropagationcite{article1}}
  14. Large
  15. digraph{bibliography}{
  16. {
  17. /* Timeline */
  18. node[shape=plaintext, fontsize=15];
  19. 1980 -> 1985 -> 1990;
  20. }
  21.  
  22. /* Papers */
  23. {
  24. node[shape=plaintext, fontsize=13];
  25. NeoCognitron [ label=<neocognitronref> ]
  26. BackPropagation [ label=<backproprefabcdef> ]
  27. LeNet [ label=<lenetref> ]
  28. }
  29.  
  30. /* Year-paper relation */
  31. { rank=same; 1980; NeoCognitron; }
  32. { rank=same; 1985; BackPropagation; }
  33. { rank=same; 1990; LeNet; }
  34.  
  35. /* Paper-to-paper influence */
  36. BackPropagation -> LeNet
  37. NeoCognitron -> LeNet
  38. }
  39.  
  40. bibliographystyle{plain}
  41. bibliography{sample1}
  42. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement