有没有办法 link 到 rmarkdown 中的选项卡式部分?

Is there a way to link to a tabbed section in rmarkdown?

我想在我的 rmarkdown 文档中创建一个内部 link 部分,但该部分是一个选项卡,标准的 linking 方法似乎不起作用。

标准方法是:

---
title: "Untitled"
output: html_document
---

# Section to link to

text and more 

# Next section

See [this section](#section-to-link-to)

Works!

在我的例子中,我想要 link 到的部分是标签集的一部分:

---
title: "Untitled"
output: html_document
---

# Section {.tabset}

## Subsection to link to

text and more 

## Next subsection

text and more

# Next section

See [this section](#subsection-to-link-to)

Doesn't work :(

编辑:要明确——我的问题不是如何创建标签集,或如何创建内部 link/anchor,而是交叉点:如何创建内部 link 到选项卡部分。输出应如下所示:

我已经尝试了一些替代锚点方法(比如将部分命名为 link,并在 link 中使用该名称)。但是没有快乐。 link 在输出中突出显示,表明它应该工作,但在单击时不起作用。

我还没有找到任何说你 不能 link 标签部分的东西,所以我在这里问问是否有办法,或者只是没办法。

谢谢!

我刚刚关注了 。如果你想 link 更大的部分 (Section),你可以使用这个:#section.

代码:

---
title: "Untitled"
output: html_document
---

# Section {.tabset}

## Subsection to link to

text and more 

## Next subsection

text and more

# Next section

See [this section](#section)

This seems to work

到 link 小节,正如你提到的,你可以使用这个:[this section](#subsection-to-link-to).

代码:

---
title: "Untitled"
output: html_document
---

# Section {.tabset}

## Subsection to link to

text and more 

## Next subsection

text and more

# Next section

See [this section](#subsection-to-link-to)

This seems to work

这似乎是一个标记为无法修复的错误。设计不支持,请看issue on GitHub.