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

Quarto presentation reveal.js for main presenter using multiplex

I am preparing a presentation with reveal.js. It is an in-person presentation and there will be a lot of people so I thought I could use multiplex with my phone on speaker mode and open on the desktop PC (available in the room, not sure whether or…
0
votes
3 answers

How can I include an external RMD file in a Quarto qmd script without evaluating the external script?

I'm creating a reference document with snippets of code from various Rmd files. For example, my first file looks like this: lm.Rmd: --- title: Linear Models --- # How to Run Linear Models ```{r} lm(am ~ cyl + mpg, data = mtcars) ``` ## Linear…
kputschko
  • 766
  • 1
  • 7
  • 21
0
votes
1 answer

Include Quarto rendering in kedro pipeline and pass it inputs/outputs

I am using kedro to make some comparative analysis. I am using the quarto python package providing a wrapper to the quarto cli through the render function. This function will take a qmd file as input and generate a html report from it while…
Oneira
  • 1,365
  • 1
  • 14
  • 28
0
votes
0 answers

Quarto website rendering, but Rstudio not previewing

I'm working on a quarto website started fresh in a project in Rstudio (2022.07.01 build 554). I've changed the head of my _quarto.yaml as follows project: type: website output-dir: docs When I render, while the site renders in docs, it still…
jebyrnes
  • 9,082
  • 5
  • 30
  • 33
0
votes
0 answers

index file with site entry not found

I have rendered a Quarto document successfully and wish to execute the publish command from the Console in RStudio but receive the above error when I try and publish the Quarto book. Reproducible steps: In RStudio File >> New project >> New…
Philip
  • 335
  • 3
  • 11
0
votes
0 answers

How to change the first slide in Quarto presentation?

I need to insert the title of my presentation in the first slide inside a textbox in such a way that the background does not compromise the reading of the text. Let me share my yml here.. --- title: "``Predictive Models``" subtitle: "``Last…
0
votes
2 answers

add return character(s) to a field in DT or gt table?

I am working with quarto to table some results from a qualitative data analysis, and present them in a {DT} or {gt} table. I have a placeholder character in the table I'm receiving from another data source, but cannot seem to replace that…
M. Wood
  • 450
  • 4
  • 13
0
votes
1 answer

RMarkdown - Is there a way to replace a plot view with datatable view and vice-versa?

UPDATE: Edited code to depict tabs already exist I have a Quarto qmd file with an R plotly figure rendered as html. I want to provide an option (button/link) for the user to change the view from plot to the data table, and vice versa. What is the…
apprunner2186
  • 217
  • 1
  • 6
0
votes
2 answers

Quarto: Use js-object defined in cell above

So I am creating an object in a cell in a quarto-file like this: ```{ojs} { { const persons = { mike: { age: 32, height: 180, }, anna: { age: 32, height: 175, }, }; } } ``` I then want to use it in…
Lenn
  • 1,283
  • 7
  • 20
0
votes
0 answers

How to make Quarto (.qmd) files appear like R markdown files (.rmd) in Visual Studio Code?

I am trying to apply a style/color theme for .qmd files, so that they appear like .rmd files in VS code. I have been able to change the style/color for .qmd files by entering the following code the settings.json file. "files.associations": { …
0
votes
1 answer

Python packages required to run RStudio Quarto files in VS Code

I have been trying to run RStudio Quarto script in a fresh Ubuntu 20.04 installation but got into some trouble. Some Python packages that are required to run the simple hello.qmd were not there. I was getting these errors: MoudleNotFoundError: No…
f0nzie
  • 1,086
  • 14
  • 17
0
votes
2 answers

Is it possible to add totals to observablehq inputs.Table

Is it possible to add a total row in inputs.Table from Observablehq? The idea is to have a column aggregate such as sum or mean. I searched through the inputs.Table documentation, but it does not seem to mention this option. In addition, I could not…
Jakub.Novotny
  • 2,912
  • 2
  • 6
  • 21
0
votes
1 answer

quarto file extension not recognized in rstudio

Trying to start using Quarto together with Rstudio. Followed the instructions here: https://quarto.org/docs/get-started/hello/rstudio.html When I run the following commands I obtain: > quarto_version() [1] ‘1.0.38’ > quarto_path() [1]…
Carl Alm
  • 3
  • 1
0
votes
1 answer

Quarto: How to search for bibliography files using `system(kpsewhich( ...))`

This is a follow-up to knitr/Rmarkdown/pandoc : How to set bibliography paths globally in .Rmd files where a solution that works with knitr/rmarkdown/pandoc does NOT work with Quarto. I have multiple .bib files in a system-wide localtexmf folder. I…
user101089
  • 3,756
  • 1
  • 26
  • 53
0
votes
1 answer

Problem with Quarto automated referencing of book sections

I am using Quarto on R Studio to create an HTML book for my thesis. The Insert -> @Citation function works great and is automatically integrated with Zotero, however, I am having some issues when referencing books/conference proceedings. The name of…
Roberto
  • 307
  • 2
  • 9