Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/formats/pdf/pandoc/graphics.tex
12923 views
1
$--
2
$-- graphics
3
$--
4
$if(graphics)$
5
\usepackage{graphicx}
6
\makeatletter
7
\newsavebox\pandoc@box
8
\newcommand*\pandocbounded[1]{% scales image to fit in text height/width
9
\sbox\pandoc@box{#1}%
10
\Gscale@div\@tempa{\textheight}{\dimexpr\ht\pandoc@box+\dp\pandoc@box\relax}%
11
\Gscale@div\@tempb{\linewidth}{\wd\pandoc@box}%
12
\ifdim\@tempb\p@<\@tempa\p@\let\@tempa\@tempb\fi% select the smaller of both
13
\ifdim\@tempa\p@<\p@\scalebox{\@tempa}{\usebox\pandoc@box}%
14
\else\usebox{\pandoc@box}%
15
\fi%
16
}
17
% Set default figure placement to htbp
18
\def\fps@figure{htbp}
19
\makeatother
20
$endif$
21
22