我希望我已经正确标记了这一点 - 我想在R Studio中使用Markdown创建一个HTML演示文稿.我想要做的是创建超链接,点击时将跳转到指定页面,而不是大多数演示文稿的直线性进展.例如:
---
title: "Presentation"
output: ioslides_presentation
---
## Slide 1
This is the first slide. I'd like to be able to insert hyperlinks to a different page within the slide. For example:
[Slide 2](hyperlink to slide 2) - clicking this would jump to slide 2
[Slide 3](hyperlink to slide 3) - clicking this would jump to slide 3
[Slide 4](hyperlink to slide 4) - clicking this would jump to slide 4
## Slide 2
Text for slide …Run Code Online (Sandbox Code Playgroud)