如何将 Latex 包添加到 markdown?

如何将 Latex 包添加到 markdown?

我正在 Jupyter 笔记本上用 Markdown 写一些文本。但我无法将一些 Latex 包导入笔记本。我尝试按照如何在 R Markdown 中包含 LaTeX 包?。我尝试包含该mathtools包,但是没有用。

title: "Title"
author: "Me"
header-includes:
   - \usepackage{mathtools}
output:
    pdf_document

我仍然无法像$\xrightarrow[\text{sample text}]$在 Jupyter 笔记本上那样调用命令。

答案1

欢迎使用 TeX.SE。不要[]在数学表达式中使用方括号。{}仅使用大括号。您写道:$\xrightarrow[\text{sample text}]$。应为:$\xrightarrow{\text{sample text}}$

编辑:已更新以显示包的使用\Bracket情况。\Setbraket

在此处输入图片描述

---
title: "Title"
author: "Me"
header-includes:
  - \usepackage{array}
  - \usepackage{booktabs}
  - \usepackage{mathtools}
  - \usepackage{braket}
output:
  pdf_document:
    keep_tex: true
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

\hrule <!-- draw a horizontal line -->

We can _write_ in **markdown** and add content that uses ``LaTeX`` syntax and \LaTeX\ packages to format our document.

## Using ``mathtools`` package

$\xrightarrow{\text{sample text}}$

<br> <!-- add space, like \bigskip % - this is a comment -->

## Using ``array``, ``booktabs`` and ``braket`` packages

\begingroup
\renewcommand*{\arraystretch}{1.7}
\setlength{\tabcolsep}{10pt}
\begin{tabular}{@{}>{\footnotesize}r>{$\displaystyle}l<{$}@{}}
\toprule 
  \verb+\Braket{ \phi | \frac{\partial^2}{\partial t^2} | \psi }+ & \Braket{ \phi | \frac{\partial^2}{\partial t^2} | \psi } \\
  \verb+\Set{ x\in\mathbf{R}^2 | 0<{|x|}<5 }+                     & \Set{ x\in\mathbf{R}^2 | 0<{|x|}<5 }                    \\
\bottomrule
\end{tabular}
\endgroup

## We can do math

```{r math}
result <- 1 + 2
result
```

相关内容