\在\href內輸入

\在\href內輸入

我有很多論文的封面上都包含我的電子郵件,並且需要\input使用 找到我的電子郵件地址的解決方案\href。這樣我就可以編輯一次電子郵件,然後在每次編譯文件時獲得所有論文中最新的電子郵件地址。

可以做這樣的事情嗎?

\href{mailto:{\input{/Path/to/my/file/with/my/email/address.txt}\unskip}}{{\input{/Path/to/my/file/with/my/email/address.txt}\unskip}}

多謝你們。

答案1

該解決方案使用普通的 TeX I/O 命令。

\begin{filecontents}{address.txt}
[email protected]
\end{filecontents}
%
\documentclass{article}
\usepackage{hyperref}

\newread\fid

\newcommand{\readfile}[1]% #1 = filename
{\bgroup
  \endlinechar=-1
  \openin\fid=#1
  \read\fid to\filetext
  \loop\ifx\empty\filetext\relax% skip over comments
    \read\fid to\filetext
  \repeat
  \closein\fid
  \global\let\filetext=\filetext
\egroup}

\begin{document}
\readfile{address.txt}
\href{mailto:\filetext}{\filetext}
\end{document}

答案2

透過套件將郵件地址從檔案取得到巨集的解決方案catchfile

\begin{filecontents}{address.txt}
[email protected]
\end{filecontents}

\documentclass{article}
\usepackage{catchfile}
\usepackage[colorlinks]{hyperref}

\CatchFileDef\TheMailAddress{address.txt}{\endlinechar=-1}
% \endlinechar=-1 suppresses spaces by line ends

\begin{document}
\href{mailto:\TheMailAddress}{John Doe $\langle$\TheMailAddress$\rangle$}
\end{document}

結果

相關內容