Questions tagged [quarto]

Quarto is an open-source scientific and technical publishing system built on Pandoc

Quarto is an open-source scientific and technical publishing system built on Pandoc

  • Create dynamic content with Python, R, Julia, and Observable.
  • Author documents as plain text markdown or Jupyter notebooks.
  • Publish high-quality articles, reports, presentations, websites, blogs, and books in HTML, PDF, MS Word, ePub, and more.
  • Author with scientific markdown, including equations, citations, crossrefs, figure panels, callouts, advanced layout, and more.

Website: https://quarto.org/

813 questions
6
votes
2 answers

Rendering md from quarto in Github

I have a markdown created using the (new) RStudio quarto engine. I want to upload the .md in a Github repo. However, few elements render properly. For instance, many tables do not render, some markdown code renders as is (e.g.…
Thomas Speidel
  • 1,369
  • 1
  • 14
  • 26
6
votes
0 answers

RStudio Quarto document not displaying in View pane

Environment: Windows 10 Enterprise RStudio 2022.02.3 Build 492 Quarto 0.9.629 When I try to render any Quarto html file (include the default file) with the "Preview in Viewer Pane" option selected, the viewer pane returns the message "Internal…
fhc-cbp
  • 63
  • 4
6
votes
1 answer

Passing data from one qmd file to another in a Quarto book template?

Could I ask advice for best practice on passing data from one quarto file to another in the RStudio Quarto book template? The default book template looks like this (_quarto.yml) project: type: book book: title: "TestTest" author: "Jane Doe" …
Philip
  • 335
  • 3
  • 11
5
votes
1 answer

Increase width of box for data frame printing quarto revealjs

The data frame is not being printed over the width of the (assumed) box, but the last column is being cut and printed below. This happens with (see example picture) or without {.smaller} class. How can I change the width of the box that is used for…
tjebo
  • 21,977
  • 7
  • 58
  • 94
5
votes
1 answer

Interactive plots from Quarto docs not rendering inside R Shiny using iframe, How to render Quarto ".qmd" files within R Shiny app?

Goal I want to render multiple Quarto files (.qmd) inside existing one R Shiny App Current Solution My current solution is to render Quarto files into html and disply html files inside R Shiny App, however this does not work for interactive plots. I…
Pawan Rama Mali
  • 526
  • 2
  • 9
5
votes
2 answers

Create self contained HTML file with Quarto

It should be possible to create a self-contained HTML file with Quarto using format: html: embed-resources: true as documented here: https://quarto.org/docs/output-formats/html-basics.html#self-contained, yet when I try to email the resulting…
dpel
  • 1,954
  • 1
  • 21
  • 31
5
votes
2 answers

Quarto cross-references: persistent cross-references when text changes

I am creating a long PDF report using Quarto. I want to include two formats of cross-reference: To the section/figure number, e.g. As discussed in Section 3.1 To the section/figure title, e.g. As discussed in My awesome section. It is…
SamR
  • 8,826
  • 3
  • 11
  • 33
5
votes
1 answer

Making quarto html documents use the full window width

I am creating a quarto html document using R and publishing it to the web at rpubs.com. The document uses only the middle third of the window and leaves the left and right thirds blank. I am showing a table but it is not started on the far left side…
Phil Smith
  • 430
  • 2
  • 12
5
votes
2 answers

Why do affiliations not show up anywhere in the pdf output of quarto?

In the yaml of a quarto document I have: --- title: "Hey!" author: - name: Birdy Bird affiliations: - University of Birds - University of Hummingbirds format: pdf editor: visual --- When I render this file using Rstudio IDE, I…
bird
  • 2,938
  • 1
  • 6
  • 27
5
votes
1 answer

Equivalent to `code-line-numbers` for output in Quarto for revealjs slides

I am using Quarto to produce some revealjs slides using RStudio and have been using the code-line-numbers option to selectively highlight lines of code. For instance: ```{r, echo = TRUE} #| code-line-numbers: "1|3" x <- 1 y <- 2 x + y x *…
user2728808
  • 560
  • 3
  • 18
5
votes
1 answer

Error in loadNamespace(x) : there is no package called ‘JuliaCall’

I just started to learn Julia in Quarto but when I run the following code in a Julia chunk in Quarto: --- title: "Julia in Quarto" editor: visual format: html --- ```{julia} # generating vectors # x-axis x = 1:10 # y-axis y = rand(10) # simple…
Quinten
  • 35,235
  • 5
  • 20
  • 53
5
votes
2 answers

Using quarto and revealjs how can I have one word appear on a line on a slide?

I would like to have a word appear in a slide rendered with quarto in revealjs format. I know I can have a word appear on the next line like this: --- title: "Thoughts on Quarto" format: revealjs --- ## Why do I use Quarto? Because Excel…
itsMeInMiami
  • 2,324
  • 1
  • 13
  • 34
5
votes
1 answer

How to make figure bigger than body column width in Quarto

According to the Quarto docs, the figure below should be screen-width but instead it is just positioned at the left-hand side of the screen. How can I make it bigger? Adding #| layout-ncol: 1 doesn't help either. --- title: "Test" format:…
dufei
  • 2,166
  • 1
  • 7
  • 18
5
votes
1 answer

Rescaling a figure in quarto

I'm using quarto to prepare some slides (i.e., revealjs output), and I can't find a way to scale an embedded image (e.g., from Wikipedia). It seems the "width" parameters should do but neither a…
manu
  • 1,333
  • 2
  • 11
  • 24
5
votes
1 answer

Quarto: Parsing an expression to chunk labels

I am trying to pass an expression to a YAML chunk label in Quarto using R. I know how to do this for knitr chunk options in R Markdown (and I also know that this works well in Quarto). However, I would like to know if this is possible using the…
BroVic
  • 979
  • 9
  • 26
1 2
3
54 55