Bug description
Dear Quarto Team,
I encountered an annoying bug in Quarto.
To reproduce this bug:
- create a book with
quarto create project book
- put an R chunk producing a figure in one of the chapters
- set fig-width: 3 and out-width: "85%" in pdf section of format in _quarto.yaml
- render project
Hope this reports helps to make the software even better :)

Quarto 1.2.269 on Windows 10 (command line)
issue persists after installing Version 1.3.11
project:
type: book
book:
title: "repex"
author: "Jane Doe"
date: "18/11/2022"
chapters:
- index.qmd
- intro.qmd
- summary.qmd
- references.qmd
bibliography: references.bib
format:
html:
theme: cosmo
pdf:
documentclass: scrreprt
fig-width: 3
out-width: "85%"
# Introduction
This is a book created from markdown and executable code.
See @knuth84 for additional discussion of literate programming.
```{r}
#| label: fig-test
#| fig-cap: This is a test
#| echo: false
library(ggplot2)
ggplot(mtcars, aes(x = cyl, y = mpg)) +
geom_violin(aes(group = cyl, colour = factor(cyl)))
```
Checklist
Bug description
Dear Quarto Team,
I encountered an annoying bug in Quarto.
To reproduce this bug:
quarto create project bookHope this reports helps to make the software even better :)
Quarto 1.2.269 on Windows 10 (command line)
issue persists after installing Version 1.3.11
Checklist