问题描述
我知道不可能直接将有光泽的应用程序直接放入pdf乳胶中,但是我听说过( HubertL的答案),可以通过以下方式绑定它:关联.有人可以帮我吗?我还没有发现任何东西.我正在使用Beamer Madrid(如果重要的话,请使用Idk).
I know that it's impossible to put shiny app in pdf latex directly, but I've heard (How to embed an interactive shiny plot in a pdf / presentation? (via knitR maybe) HubertL's answer) it's possible to bind it via link. Can someone help me with that? I haven't found anything about this. I'm using beamer Madrid (Idk if it's important).
推荐答案
您必须首先发布Shiny应用程序.一旦获得了在线应用程序的URL,就可以使用knitr::include_url()
以非HTML输出格式包括该应用程序的自动屏幕截图.参见 https://bookdown.org/yihui/bookdown/web -pages-and-shiny-apps.html 了解更多信息.
You have to publish the Shiny app first. Once you have got the URL to the online app, you can use knitr::include_url()
to include an automatic screenshot of the app in non-HTML output formats. See https://bookdown.org/yihui/bookdown/web-pages-and-shiny-apps.html for more information.
请注意,此功能当前需要 webshot 软件包和PhantomJS:
Note that this feature currently requires the webshot package and PhantomJS:
install.packages("webshot")
webshot::install_phantomjs()
这篇关于在pdf乳胶(R knitr)中嵌入闪亮的应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!