如何在 Latex 中添加我的共享路径作为 href

如何在 Latex 中添加我的共享路径作为 href

我想在 Windows 的 Latex 中向共享路径( \\LEUMWORK\Users\asadi\Desktop\examples )添加超级引用。有什么想法吗?

诸如“请看这里!”和“这里”之类的内容是蓝色的,表示共享路径。

\begin{frame}{}{}

\begin{itemize}
\item All examples can be found \href{\LEUMWOR\Users\hasadi\Desktop\examples}{here}. 
\item Feel free to add more!
\end{itemize}

\end{frame}

答案1

我想你想要这样的东西:

\documentclass{article}
\usepackage{hyperref}

\begin{document}
\href{\LEUMWORK\Users\asadi\Desktop\examples}{here is a link to a local file}.
\end{document}

你可以看看这一页了解有关 tex 文档中的超链接的更多信息。

相关内容