Como adicionar pacotes Latex ao markdown?

Como adicionar pacotes Latex ao markdown?

Estou escrevendo um texto com Markdown no notebook Jupyter. Mas não consigo importar alguns pacotes Latex para o notebook. Eu tentei seguirComo incluir o pacote LaTeX no R Markdown?. Tentei incluir o mathtoolspacote, mas não funcionou.

Com

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

Ainda não consigo chamar comandos como $\xrightarrow[\text{sample text}]$no notebook Jupyter.

Responder1

Bem-vindo ao TeX.SE. Não use colchetes []em sua expressão matemática. Use {}apenas aparelho. Você escreveu: $\xrightarrow[\text{sample text}]$. Deveria ser: $\xrightarrow{\text{sample text}}$.

Editar: Atualizado para mostrar o uso \Bracketdo \Setpacote braket.

insira a descrição da imagem aqui

---
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
```

informação relacionada