2

My question is as the title suggests.

\documentclass{article}
\usepackage{pdfcomment,xcolor}
\begin{document}
\pdfmarkupcomment[markup=Underline,color=blue!1,timezone=+08’00’]
           {Department}
           {name\\ Tel:123456}
\end{document}
lyl
  • 2,727

1 Answers1

4

hyperref defines \textCR for this:

\documentclass{article}
\usepackage{pdfcomment,xcolor}
\begin{document}
\pdfmarkupcomment[markup=Underline,color=blue!1,timezone=+08’00’]
           {Department}
           {name\textCR Tel:123456}
\end{document}

enter image description here

Ulrike Fischer
  • 327,261