Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. documentclass{article}
  2.  
  3.  
  4. usepackage{cleveref}
  5. usepackage{cases}
  6.  
  7.  
  8. begin{document}
  9.  
  10. section{Intro}
  11.  
  12. begin{numcases}{}
  13. a=b \
  14. c=d. label{c=d}
  15. end{numcases}
  16.  
  17. Cleveref produces a reference to the section: cref{c=d}
  18.  
  19. Regular ref produces a reference to the equation: ref{c=d}.
  20. end{document}
  21.  
  22. % arara: pdflatex
  23. % arara: pdflatex
  24.  
  25. documentclass{article}
  26. usepackage{empheq} % loading `mathtools` % loading `amsmath`
  27. usepackage{cleveref} % load this as very last package
  28.  
  29. begin{document}
  30. section{Intro}
  31. begin{empheq}[left={=empheqbiglbrace~}]{align}
  32. a&=b\
  33. c&=dlabel{eq:equation}
  34. end{empheq}
  35. Cleveref produces a reference to the section: cref{eq:equation}
  36.  
  37. Regular ref produces a reference to the equation: ref{eq:equation}.
  38. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement