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
4
votes
3 answers

LaTeX table displayed in HTML

I have the following LateX table that renders as expected when format: pdf: --- title: "Test Table" format: pdf --- \begin{center} \begin{tabular}{|l|l|l|} \hline Var & Class & Description\\ \hline $x $ & numeric & …
Julian
  • 6,586
  • 2
  • 9
  • 33
4
votes
1 answer

Quarto RevealJS Header on all slides

I am unable to create a Header on the top left corner of all slides, including the Title slide. I am using format: revealjs for the slides. When using purely revealjs, without Quarto, I am able to embed custom div class header inside the div…
fobik35911
  • 109
  • 7
4
votes
1 answer

How can I get the name of the current Quarto file?

I would like to add the name of the currently executing Quarto file to a report without hard coding it. I am working with R inside of the RStudio IDE. Both `r scriptName::current_filename()`and `r commandArgs()` return…
itsMeInMiami
  • 2,324
  • 1
  • 13
  • 34
4
votes
1 answer

How to justify text in Quarto?

I would like to justify the text in a Quarto document. This means that it should automatically add text between words so that both edges of each line of text are aligned with both margins. In a word-document this would be the following highlighted…
Quinten
  • 35,235
  • 5
  • 20
  • 53
4
votes
1 answer

Quarto: show and evaluate markdown chunk

Is it possible to show and evaluate a markdown text in Quarto / Rmarkdown? I need to show both the raw markdown script and its compiled (evaluated) form, one after another. In Quarto, I can use the following code to show/format a markdown code, but…
Ahmed El-Gabbas
  • 398
  • 3
  • 10
4
votes
2 answers

Frame number in Quarto beamer presentation

I am preparing a Quarto presentation using beamer and would like to add the frame number at the bottom of each slide (analogous to the slide-number option in revealjs). Could anybody tell me how I can do this? I already figured out that the…
Max
  • 53
  • 4
4
votes
1 answer

Quarto - unable to put captions above figure (docx format)

I need to get Quarto to put figure captions above the figure, rather than the default (below). Following the documentation I used this: --- title: "Test title" format: docx fig-cap-location: top --- ```{r} #| label: fig-test #| fig-cap: This…
Andrea M
  • 2,314
  • 1
  • 9
  • 27
4
votes
1 answer

Links between pages in quarto website with qmd files in different subfolders

I am creating a website with quarto (using RStudio). I want to have links between pages on my site, which usually works as described here in the quarto documentation. However, I have saved the .qmd files for my pages within separate subfolders…
Paul Schmidt
  • 1,072
  • 10
  • 23
4
votes
1 answer

Render quarto to HTML specifying output location lacks plots and style

I am trying to render a .qmd file to HTML specifying an output file. I am compiling it from a Quarto Project from RStudio on MacOS 12.6. I also have a bootstrap theme in the YAML header. --- title: "quarto_output_experiment" format: html: …
Álvaro
  • 564
  • 5
  • 13
4
votes
1 answer

Is it possible to underline text without HTML syntax in Quarto?

I was wondering if it is possible to underline text without HTML syntax in Quarto? You can strikethrough the text using ~~ syntax like this: ~~mytext~~ Output: So I was wondering if it is possible to underline your text with somehow similar syntax…
Quinten
  • 35,235
  • 5
  • 20
  • 53
4
votes
1 answer

Slide Background using images is not working in Quarto Reveal JS presentation

Problem Statement Using Rstudio to create a RevealJS presentation, I can not get it to change the background to an image no matter what I do. What Works and Doesn't Work ## title {background-image = "URL or file.extension"…
4
votes
2 answers

Make "Figure" text bold in quarto figure captions

By default, when producing html, quarto adds the caption to a figure to the automatically generated text "Figure NN. ", where NN is the number of the figure. For example: the following R chunk ```{r} #| label: myFirstFigure #| fig-cap: A…
January
  • 16,320
  • 6
  • 52
  • 74
4
votes
1 answer

How to hide a Graph with button in Quarto?

I was wondering if it is possible to hide a graph with a button like you can do this with a code chunk using code-fold: true. Is there a similar way for graphs? Here is a reproducible example: --- title: "How to hide graph by button" format: …
Quinten
  • 35,235
  • 5
  • 20
  • 53
4
votes
1 answer

Adding a logo at top-left corner for all slides in quarto presentation

I'm trying to create a slideshow using rstudio's implementation of quarto, and I'd like to have a common icon in the top left of all non-title-slides in the show. (I'd also like it to be on the title slide, but that I've got figured out!) On a…
Matt
  • 126
  • 10
4
votes
1 answer

How to resize figures in Quarto (PDF output)?

I do not get the syntax for resizing graphics in Quarto, could you please give me a hint. The following has no effect. --- title: "resize image" format:…
ckluss
  • 1,477
  • 4
  • 21
  • 33