Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. documentclass{article}
  2. begin{document}
  3. section{BLA}label{bla}
  4. section{BOO}label{boo}
  5. In Section~ref{bla} we do something.
  6. end{document}
  7.  
  8. documentclass{article}
  9.  
  10. usepackage{refcheck}
  11.  
  12. begin{document}
  13.  
  14. begin{equation}label{eq:1}% Labelled and referred to
  15. 1+1=2
  16. end{equation}
  17.  
  18. ref{eq:1}
  19.  
  20. begin{equation}label{eq:2}% Labelled but not referred to
  21. 1-1=0
  22. end{equation}
  23.  
  24. begin{equation}% Not labelled nor referred to
  25. 1+1=0
  26. end{equation}
  27.  
  28. begin{table}[h]
  29. center
  30. begin{tabular}{cc}
  31. 1 & 2 \
  32. 3 & 4 \
  33. end{tabular}
  34. caption{Numbers}label{tab:1}% Labelled but not referred to
  35. end{table}
  36.  
  37. begin{figure}[h]label{fig:1}% Labelled but not referred to
  38. caption{Foo}
  39. end{figure}
  40.  
  41. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement