在 LaTeX-beamer 演示文稿中包含 HTML 文件

在 LaTeX-beamer 演示文稿中包含 HTML 文件

我有一个 HTML 文件,可从以下 URL 访问:

http://khamphouj.iiens.net/ENSIIE/ENSTA/Plot%201.html

我想将它放入我的 Beamer 演示文稿中。我不希望它像 .png 或 .jpg 图片那样是静态的,我希望在我的演示过程中(以及在我的 pdf 中,正如您所理解的)能够将鼠标悬停在数据上并查看 html 文档的所有功能:我希望当我将鼠标放在图表上时此功能能够正常工作:

\documentclass[fleqn,xcolor=dvipsnames]{beamer}
\usepackage[frenchb]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
% What Packages should I add ?
\begin{document}
    \begin{frame}{Julia performances}
    % What code should I use ?
    \end{frame}
\end{document}

答案1

解决方法:

包含静态图像作为预览,并链接到网站

\documentclass{beamer}

\begin{document}

\begin{frame}
    \href{http://khamphouj.iiens.net/ENSIIE/ENSTA/Plot 1.html}{\includegraphics[height=.99\textheight]{newplot}}
\end{frame} 

\end{document}

相关内容