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
0
votes
0 answers

Create reveal.js stacks using quarto without level 1 headings

Slide stacks are being created if level 1 headings are used for the horizontal axis and level 2 headings for the vertical axis: --- title: "Presentation" format: revealjs: navigation-mode: vertical --- # Slide 1 ## Slide…
jwarz
  • 481
  • 2
  • 9
0
votes
1 answer

Quarto inline math not displaying

I am writing a quarto file with docx as output. I would like to insert inline math in the text. When I am using the visual editor it doesn't get displayed. Looking at the source, it is there, also in the output file it is rendered correctly. Does…
0
votes
0 answers

How to use SASS functions in quarto / reveal.js plugins

My custom plugin creates a button in a reveal.js presentation. It is similar to the menu & chalkboard buttons that come with quarto and is created by the css background-image property. I want it to have the fill attribute from the $link-color…
jwarz
  • 481
  • 2
  • 9
0
votes
0 answers

How to remove table background in gtsummary or flextable?

So I'm trying to report some results with Quarto and rendering it to MSword. I want to remove the background of my tables output. Here is an example: ```{r} #| echo: false #| warning: false #| error: false #| label: tbl-coef #| tbl-cap: "Coeficiente…
0
votes
0 answers

Can the sidebar show separate names for groups of jupyter notebooks located in the same directory?

Hi quarto users and developers if I'm lucky who can help me out with this, I have groups of jupyter notebooks located in a directory called notebooks like this: notebooks - dataset*.ipynb - methods*.ipynb - results*.ipynb My…
user345394
  • 111
  • 3
0
votes
0 answers

Cross-reference Author in Blog

I have a quarto blog and would like to add a link to the author for a post that forwards one to the author page with more author information, e.g. this works when I add the full url: example_post.qmd --- title: Example Post author: - name: Max…
Julian
  • 6,586
  • 2
  • 9
  • 33
0
votes
1 answer

With R Markdown or Quarto can I embed a comment in HTML output?

I would like to add "hidden" text (the GitHub repo and code file name) to a report that is rendered to HTML with R Markdown (or Quarto). Is there an easy way to save some text information so it will show up when I inspect a document in a browser…
itsMeInMiami
  • 2,324
  • 1
  • 13
  • 34
0
votes
2 answers

Is there a way to fold tables side by side in RMarkdown or quarto?

Is there a way to wrap a single table in RMarkdown or quarto? I often work with time series data and need to list them. I use HTML as the output format. As an example, let's say I have one temperature measurement each day from January 1, 2022 to…
ryoto
  • 361
  • 1
  • 10
0
votes
1 answer

Align Text in Table

I have a table in quarto like this: library(tidyverse) library(gt) Variables<-c("x", "y", "z", ) Description<-c("a", "b", "c") Expectation<-c("Positive sign", "Negative sign", "Negative sign") Expectation<-tibble( Variables, Description, …
0
votes
0 answers

Is it possible to use PowerPoint Themes as Reveal Theme in Quarto?

I was wondering if it is possible to use a PowerPoint theme as a Reveal theme in a revealjs presentation? Here is an example of a built-in theme in PowerPoint: So is it possible to use this in a Revealjs presentation as the theme?
Quinten
  • 35,235
  • 5
  • 20
  • 53
0
votes
1 answer

fig-width has no effect in a quarto document

Consider the following code: --- title: "Untitled" format: pdf --- ```{python} #| echo: false #| fig-align: center #| fig-width: 1cm import matplotlib.pyplot as plt x = [1, 2] y = [2, 3] plt.plot(x,y) ``` The parameter fig-width has no effect…
PaulS
  • 21,159
  • 2
  • 9
  • 26
0
votes
1 answer

Formatting abstract in a twocolumn article PDF

I'm writing a PDF article using a twocolumn classoption in Quarto and the PDF produced has all content including the abstract laid out in two columns. I'd like the abstract to be displayed across the length of the page without the columns and the…
aqollo
  • 13
  • 3
0
votes
0 answers

ERROR: Cannot determine the Quarto source path. This script must be run from the bin or common folder

While attempting to use Quarto on JupyterNotebook, Quarto gives the following error on quarto render yippee.ipynb --to html: /usr/local/bin/quarto: line 7: dirname: command not found /usr/local/bin/quarto: line 8: readlink: command not…
Number Basher
  • 109
  • 2
  • 10
0
votes
1 answer

Quarto: .content-visible div dependent on params?

Using quarto, I'd like to do something like: --- params: show_private_info: true --- ::: {.content-visible } Some private information ::: Is that feasible? Clearly something can be whipped up using…
balin
  • 1,554
  • 1
  • 12
  • 26
0
votes
1 answer

How to add more spaces between two rows of images in Quarto for PDF output?

I have three images aligned in three rows. In the same block layout, I have to use :::{layout="[[1], [-1], [1], [-1], [1]]"} ![](iamge1) ![](image2) ![](image3) ::: to increase the space between them. But the space is still small. If I put them…
Fred
  • 579
  • 2
  • 4
  • 13