Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tests/smoke/render/render-latex-output.test.ts
12921 views
1
/*
2
* render.latex-output.test.ts
3
*
4
* Copyright (C) 2020-2022 Posit Software, PBC
5
*/
6
7
import { docs } from "../../utils.ts";
8
import { renderVerifyLatexOutput } from "./render.ts";
9
10
renderVerifyLatexOutput(docs("latex-output/captionless-margin-image.qmd"), [
11
/{\\marginnote{\\begin{footnotesize}\\pandocbounded{\\includegraphics\[keepaspectratio\]{/,
12
// /{\\marginnote{\\begin{footnotesize}\\pandocbounded{\\includegraphics{/,
13
]);
14
renderVerifyLatexOutput(docs("latex-output/figure-div.qmd"), [
15
/\\centering{/,
16
/\\caption{\\label{fig-foo}This is the figure}/,
17
/See Figure~\\ref{fig-foo} for more\./,
18
]);
19
20