You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the Julia engine with quarto, certain chunk options, as with knitr, are not working. For example, centering a plot or changing its width are not working as it remains left-aligned:
```{julia}
#| echo: false
#| fig-width: 12
#| fig-align: center
using Plots
x = collect(1:50)
y = randn(50)
plot(x, y)
Is there an overview what chunk options are supported with the Julia engine?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Description
When using the Julia engine with quarto, certain chunk options, as with knitr, are not working. For example, centering a plot or changing its width are not working as it remains left-aligned:
Is there an overview what chunk options are supported with the Julia engine?
Beta Was this translation helpful? Give feedback.
All reactions