Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage{cleveref}
  4.  
  5. newcounter{CommentCount}
  6. setcounter{CommentCount}{1}
  7. crefalias{CommentCount}{comments}
  8.  
  9. newenvironment{comment}[1][theCommentCount]
  10. {label[comments]{#1}textbf{Comment #theCommentCount:}itshape}
  11. {stepcounter{CommentCount}}
  12.  
  13. begin{document}
  14.  
  15. Some text
  16.  
  17. begin{comment}[wibble]
  18. more text
  19. end{comment}
  20.  
  21. See Comment~cref{comments}{wibble}.
  22.  
  23. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement