Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. %GPL License
  2. \documentclass{article}
  3.  
  4. \makeatletter
  5. %\explicitLabel{labelName}{pageref text}{ref text}
  6. \newcommand{\explicitLabel}[3]{
  7.     \@bsphack
  8.         \protected@write\@auxout{}{%
  9.             \string\newlabel{#1}%
  10.                 {%
  11.                     {#3}%
  12.                     {#2}
  13.                 }%
  14.             }%
  15.     \@esphack
  16.     }
  17. \makeatother
  18.  
  19. \begin{document}
  20.  
  21. \explicitLabel{x}{2}{LABEL}
  22.  
  23. Label \ref{x} is at page \pageref{x}.
  24.  
  25. \end{document}