Replies: 1 comment
-
If you intend to use raw LaTeX, then see the documentation: https://quarto.org/docs/authoring/markdown-basics.html#raw-content More generally see the documentation about Quarto and the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
I am working on a Quarto Beamer presentation in Jupyter Notebook and would like to implement slide-to-slide navigation using hyperlinks and buttons. In LaTeX, this can be done using:
\label{identifiable-name-of-slide}
\hyperlink{appendix-label}{\beamerbutton{Button}}
Additionally, I want to ensure that the appendix slides do not affect the total slide count, which in LaTeX can be handled with:
\usepackasge{appendixnumberbeamer}
However, when trying to implement this in Quarto Beamer within Jupyter Notebook, the hyperlinks don't seem to work correctly, and the appendix slides still contribute to the total slide count.
Questions:
How can I correctly label and link slides using \hyperlink{} in Quarto Beamer?
How can I exclude appendix slides from the total slide count in Quarto?
Is there an alternative approach in Quarto to create interactive navigation buttons within a Beamer presentation?
Any guidance on implementing this in Quarto inside Jupyter Notebook would be greatly appreciated. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions