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
5
votes
1 answer

publishing website with quarto in Rstudio

I am following instructions here and trying to publish a website developed with quarto in Rstudio. I used Build tab -> Render Website and then use terminal with quarto publish gh-pages. It all goes smoothly until it is stuck at Deploying gh-pages…
m45ha
  • 399
  • 1
  • 9
5
votes
1 answer

Quarto Book: make body content Wider

Love love quarto. So well developed! Thanks again. I'm using the book output format and it looks great. However I know the screen sizes it will be used on and would really like the main content (id=quarto-document-content) to be wider, pushing the…
Sapsi
  • 711
  • 5
  • 16
5
votes
2 answers

Specifying parameters in yml file for Quarto

I am creating a quarto book project in RStudio to render an html document. I need to specify some parameters in the yml file but the qmd file returns "object 'params' not found". Using knitR. I use the default yml file where I have added params…
Philip
  • 335
  • 3
  • 11
5
votes
1 answer

Vertical Align of images in Quarto Presentations

I am using quarto presentations with revealjs format. I have no problem setting images to be horizontally centered like so ![](img/path_to_img.svg){fig-align="center" height="200"} I am trying to get the figure vertically aligned to center but I…
Matias Andina
  • 4,029
  • 4
  • 26
  • 58
5
votes
2 answers

How to change text color in Quarto slides?

After adding CSS style colour as green The editor is making Heading 1 green but in the RStudio slide Preview, the text followed by Heading 1 is green but not the Heading 1. qmd file looks like this: --- format: revealjs --- I wanted to change the…
koliii
  • 109
  • 1
  • 8
4
votes
0 answers

Can't use/install a Quarto extension (created by myself) from Github

I am relatively new to Quarto ans GitHub and I am having a problem in using/installing a Quarto extension I have developed. It is a Revealjs template. To create it, I have followed the instructions provided in the Quarto official documentation. I…
4
votes
0 answers

R Studio Quarto Markdown Error - OS Error 2 - "The system cannot find the file specified" - after update to R Studio

I recently updated R and R Studio, and started getting an error message on Quarto Markdown documents, rendering to HTML. This is happening on brand-new "test" documents as well as actual HTML reports. I have uninstalled and re-installed R Studio and…
4
votes
1 answer

Custom date for Quarto YAML header pdf document

The custom date works in RMarkdown-pdf but I noticed Quarto doesn't. How can I use custom date in Quarto YAML? --- title: "Some pdf document" author: "me" date: "Spring 2022" <- I would like to use this format: pdf ---- --- title: "Some pdf…
Matthew Son
  • 1,109
  • 8
  • 27
4
votes
2 answers

Quarto Not Rendering

My quarto documents have stopped rendering suddenly. I have reinstalled RStudio and the quarto package, but this issue persists. When I open a new quarto document, I no longer see the boilerplate material in the new document. The document is empty…
kputschko
  • 766
  • 1
  • 7
  • 21
4
votes
1 answer

How to make a quarto html document use the full screen 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. How can I tell quarto to use the full window? Here is a very…
Phil Smith
  • 430
  • 2
  • 12
4
votes
1 answer

How to highlight specific code lines in a .qmd html file

Has someone found a way to highlight specific code lines in quarto html documents (similar to the reveal.js code highlighting option?). For instance, in the following example I would like to highlight the newly added group_by() code…
Julian
  • 6,586
  • 2
  • 9
  • 33
4
votes
2 answers

How to add URL access date in Quarto pdf references

I am trying to add a last accessed field to web references in a Quarto PDF. Here is a minimal example of a qmd file: --- title: "How to cite a URL with access date" format: pdf bibliography: references.bib --- I am using @stackoverflow1,…
SamR
  • 8,826
  • 3
  • 11
  • 33
4
votes
2 answers

how do you find the version of quarto being run inside rstudio

I have rstudio 2022.12, and I'm wondering what version of quarto comes with it. quarto_path() and quarto_version() Don't work
pluke
  • 3,832
  • 5
  • 45
  • 68
4
votes
0 answers

How to Publish Quarto HTML book in Microsoft Sharepoint

I rendered a Quarto HTML book with several pages and trying to host the Quarto HTML book in Microsoft sharepoint / Teams. But clueless on how to publish it in Microsoft sharepoint. Because the requirements for Sharepoint is .aspx and Quarto files…
MAS
  • 41
  • 1
4
votes
1 answer

Define a new callout in quarto

What the best call way to define a new callout in quarto? I can modify default callout like so: --- format: html: theme: - custom.scss --- ::: {.callout-tip appearance="minimal"} Some wild callout ::: and then a .scss file like…
boshek
  • 4,100
  • 1
  • 31
  • 55