How to include LaTeX expressions in yaml #11556
-
DescriptionIn LaTeX using beamer you can include expressions for example in the title: \documentclass{beamer}
\title{Your First \LaTeX{} Presentation}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
Hello, Beamer!
\end{frame}
\end{document} In the case of Quarto how can you include this aspect? ---
title: "Your First \LaTeX{} Presentation"
date: today
format: beamer
---
#
Hello, Beamer!
|
Beta Was this translation helpful? Give feedback.
Answered by
luifrancgom
Nov 28, 2024
Replies: 1 comment
-
Ups. Sorry I forget the escape character and that is why it was not working. ---
title: "Your First \\LaTeX{} Presentation"
date: today
format: beamer
---
#
Hello, Beamer! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
luifrancgom
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ups. Sorry I forget the escape character and that is why it was not working.