Reputation: 365
I would like to include a pdf Figure in my Quarto Document and render everything to docx. This is my general setup:
---
title: "My Title"
author: "A"
format:
docx:
reference-doc: "config/template_word.docx"
---
Please see @fig-over for an interesting overview.
{#fig-over}
Now the this works like charm. However, I also want to change the width of the Figure. And I don't know how to combine the labeling and customizing the figure width. For exmaple, this does not work:
{ #fig-over, width=250px}
Any ideas? Thank you!
Upvotes: 2
Views: 998
Reputation: 9320
You can try
{#fig-over width='250px'}
or
{#fig-over width=250px}
Note: Be careful with whitespaces, e.g. {#fig-over width= '250px'}
does not work.
Upvotes: 2