在 xaringan 演示文稿中呈现乳胶表

Render latex tables in xaringan presentation

提问人:flâneur 提问时间:11/15/2023 最后编辑:stefanflâneur 更新时间:11/15/2023 访问量:18

问:

我正在尝试在我的 xaringan 演示文稿中包含一个 Latex 表,该表内置于 rmarkdown 中。但是,该表不会呈现。我的代码如下,取自显示如何将 Latex 与 r (https://bookdown.org/yihui/rmarkdown-cookbook/raw-latex.html) 连接的在线示例。

我的文档是这样设置的:

---
title: "Presentation"
subtitle: ""
author: "author"
institute: "institute"
date: "`r Sys.Date()`"
output:
  
  xaringan::moon_reader:
    lib_dir: libs
    nature:
      highlightStyle: github
      highlightLines: true
      countIncrementalSlides: false
      keep_tex: yes
    css: xaringan-themer.css
    
---

```{r setup, include=FALSE}
options(htmltools.dir.version = FALSE)
```


```{r xaringan-themer, include=FALSE, warning=FALSE}
library(xaringanthemer)
style_mono_accent(
  base_color = "blue",
  header_font_google = google_font("Lato"),
  text_font_google   = google_font("Lato", "300", "300i"),
  code_font_google   = google_font("Lato")
)

library(ggplot2)
library(tidyverse)
library(dplyr)
```

然后,我要创建的表将包含在以下块中:

\begin{tabular}{ll}
A & B \\
A & B \\
\end{tabular}

然而,当我查看无限月亮阅读器或针织品时,乳胶代码没有呈现。相反,它如下所示:

enter image description here

为什么这不呈现,我该如何修复它,以便表格呈现在我的 xaringan 演示文稿的幻灯片上?我是否误解了 Markdown 的工作原理?或者我是否需要对 bookdown 做更多的事情才能渲染乳胶?

LaTeX R-Markdown Bookdown Xaringan

评论


答: 暂无答案