我想知道是否有某种方法可以实现当您单击 Latex 文档中的某些文本时,该文本会立即被复制。我正在尝试为自己制作一个地址簿,如果我可以只单击电子邮件地址或邮政编码,而不必突出显示和复制,那就太好了,因为这可能相当麻烦。
\documentclass[12pt]{article}
\usepackage{geometry}
\usepackage[svgnames]{xcolor}
\usepackage[most]{tcolorbox}
\geometry{vmargin = 1cm, hmargin = 1cm}
\begin{document}
\begin{tcbitemize}[raster force size = false, raster columns =3, ,raster column skip = 4mm,
size=small,colframe=Silver,colback=yellow!10!white]
\tcbitem
\textbf{Example 1}\\
[email protected]
\vspace{5mm}
1234 Road Pkwy,\\
Moonview, ZZ\\
B4H 4H4
\tcbitem
\textbf{Example 2}\\
[email protected]
\vspace{5mm}
4321 RR Rd,\\
Sunview, ZZ\\
B5H 5H5
\tcbitem
\textbf{Example 3}\\
[email protected]
\vspace{5mm}
2143 Ave Blvd,\\
Retrograde, UV\\
54321
\end{tcbitemize}
\end{document}