我正在 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
和\Set
來自braket
包的使用。
---
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
```