ifacconf 文档标题中的 hyperref 已禁用

ifacconf 文档标题中的 hyperref 已禁用

我想在作者列表中超链接一个小符号(OCRID),但显然在前言中超链接被禁用了ifacconf风格。(我想结合邮政)

知道我的假设是否正确以及如何欺骗它吗?

%===============================================================================
% $Id: ifacconf.tex 19 2011-10-27 09:32:13Z jpuente $  
% Template for IFAC meeting papers
% Copyright (c) 2007-2008 International Federation of Automatic Control
%===============================================================================
\documentclass{ifacconf}


\usepackage{natbib}
\usepackage{hyperref}
%===============================================================================
\begin{document}
\begin{frontmatter}
    \title{The hard of gold}        

    \author[AAA] {Zaphod Beeblebrox\href{https://www.duckduckgo.com}{CLICK ME}}
    \author[Earth]{Arthur Dent}
    \author[AAA] {Ford Perfect}

    \address[AAA]{\href{https://www.openstreetmaps.org}{CLICK ME}}
    \address[Earth]{....}
\end{frontmatter}
test
\end{document}

IFAC 模板可以下载这里(来自本网站https://www.ifac-control.org/events/authors-guide)——其中包括配置文件

答案1

我在这里找到了一个解决方案:

https://github.com/forgi86/sysid-transfer-functions-pytorch/blob/main/doc/paper/ms.tex

\documentclass{ifacconf}

...

\usepackage{url}            % simple URL typesetting

...

\begin{document}

...

The linear dynamical operator has been implemented in the  \emph{PyTorch} deep learning framework
   and the software is available for download at  \url{https://github.com/forgi86/sysid-transfer-functions-pytorch}.

...

\end{document}

(感谢 Marco Forgione 等人公开其论文的 Latex 文档。)

相关内容