Draft:Quarto (software)
Review waiting, please be patient.
This may take 7 weeks or more, since drafts are reviewed in no specific order. There are 1,218 pending submissions waiting for review.
Where to get help
How to improve a draft
You can also browse Wikipedia:Featured articles and Wikipedia:Good articles to find examples of Wikipedia's best writing on topics similar to your proposed article. Improving your odds of a speedy review To improve your odds of a faster review, tag your draft with relevant WikiProject tags using the button below. This will let reviewers know a new draft has been submitted in their area of interest. For instance, if you wrote about a female astronomer, you would want to add the Biography, Astronomy, and Women scientists tags. Editor resources
Reviewer tools
|
Submission declined on 24 April 2024 by DoubleGrazing (talk).
Where to get help
How to improve a draft
You can also browse Wikipedia:Featured articles and Wikipedia:Good articles to find examples of Wikipedia's best writing on topics similar to your proposed article. Improving your odds of a speedy review To improve your odds of a faster review, tag your draft with relevant WikiProject tags using the button below. This will let reviewers know a new draft has been submitted in their area of interest. For instance, if you wrote about a female astronomer, you would want to add the Biography, Astronomy, and Women scientists tags. Editor resources
This draft has been resubmitted and is currently awaiting re-review. |
Submission declined on 8 April 2024 by DoubleGrazing (talk). This draft's references do not show that the subject qualifies for a Wikipedia article. In summary, the draft needs multiple published sources that are: Declined by DoubleGrazing 7 months ago.
|
- Comment: Zero evidence of notability per WP:GNG. I declined this earlier for the same reason, and nothing has been done to address that issue. Minor copy editing isn't going to cut it, we need to see multiple secondary sources that meet the GNG standard. DoubleGrazing (talk) 08:40, 24 April 2024 (UTC)
Developer(s) | Posit PBC |
---|---|
Written in | TypeScript, JavaScript, Lua, etc.[1][2] |
Operating system | Linux, MacOS, Microsoft Windows[3] |
License | MIT License (since v1.4), GPLv2 (until v1.3)[4] |
Website | quarto |
Filename extension | .qmd |
---|---|
Type of format | Markdown variant[5] |
Quarto is a free and open-source scientific and technical publishing system[6][7][8] developed by Posit PBC, the developer of RStudio and Tidyverse.[9]
Quarto converts a Quarto document into HTML, PDF, or other document formats, using Pandoc as the core alongside other software such as Jupyter.[10]
Syntax and features
[edit]Quarto extends RMarkdown's features[11] and adds native support for Python and Julia, in addition to R. [7][8]
Headers
[edit]A header in Quarto is a YAML data block at the top of a .qmd
file, bracketed by ---
.
It is used to control the formats, themes, executable options, and others of the document.[12]
The example below is a Quarto header: [12][13]
---
title: "Quarto (software)"
author: "Wikipedia"
abstract: "This is the abstract."
format: pdf
date: format(Sys.time(), "%d %B %Y")
date-modified: last-modified
params:
data: "./data.csv"
---
Titles
[edit]Titles in Quarto follows the syntax of Markdown, with hashtags #
leading the title text delimited with one or multiple spaces. The example shows four different levels of titles compared to normal text:
# Header 1
## Header 2
### Header 3
#### Header 4
Normal text
Italic and bold fonts
[edit]Same as Markdown, a piece of italic text is in a single pair of asterisks *
or underscores _
, while a piece of bold text is in a pair of **
or __
:[14]
Text to be _italicized_ goes inside _a single set of underscores_ or *asterisks*.
Text to be **boldfaced** goes inside a __double set of underscores__ or **asterisks**.
Code blocks
[edit]The declaration of a code block in Quarto is similar to that in the original Markdown, but with a pair of curly brackets around the language name. The example declares a code block in Quarto:
```{julia}
function sum_of_squares(n::Int)
sum = 0
for i in 1:n
sum += i^2
end
return sum
end
```
References
[edit]- ^ "quarto-dev/quarto-cli". GitHub.
- ^ "quarto-dev/quarto". GitHub.
- ^ "Releases of quarto-dev/quarto-cli". GitHub.
- ^ "quarto-dev/quarto-web/license.qmd". GitHub.
- ^ "Quarto - Markdown Basics".
- ^ "Quarto".
- ^ a b Machlis, Sharon (28 July 2022). "What is Quarto? RStudio rolls out next-generation R Markdown". InfoWorld.
- ^ a b Machlis, Sharon (6 October 2022). "A beginner's guide to using Observable JavaScript, R, and Python with Quarto". InfoWorld.
- ^ "Posit".
- ^ "Quarto - About".
- ^ NCEAS Open Science Synthesis (June 2023). "Literate analysis with Quarto". learning.nceas.ucsb.edu. National Center for Ecological Analysis and Synthesis, University of California, Santa Barbara.
- ^ a b BTEP Coding Club (24 January 2024). "Documenting your data analysis with Quarto". bioinformatics.ccr.cancer.gov. Bioinformatics Training and Education Program, Center for Cancer Research, National Cancer Institute.
- ^ Alexander, Rohan (2023). "Reproducible workflows: Quarto". Telling Stories with Data: With Applications in R. Chapman & Hall/CRC Data Science Series. Boca Raton, FL: CRC Press. pp. 53–62. ISBN 9781032134772. OCLC 1356722977.
- ^ Jiang, Shiguo (26 January 2024). "Introduction to Quarto and Markdown – Reproducible research and effective teaching using R, Python, Quarto, and Jupyter". www.albany.edu. Spatial Analysis Laboratory, University at Albany, SUNY.
Further reading
[edit]- Erickson, Richard A.; Archer, Althea A.; Fienen, Michael N. (24 June 2024). "A reproducible manuscript workflow with a Quarto template". Journal of Fish and Wildlife Management. doi:10.3996/JFWM-24-003.
- Wickham, Hadley; Çetinkaya-Rundel, Mine; Grolemund, Garrett (2023). "Communicate: Quarto". R for Data Science: Import, Tidy, Transform, Visualize, and Model Data (2nd ed.). Beijing; Sebastopol, CA: O'Reilly. pp. 505–538. ISBN 9781492097402. OCLC 1390607935.
- in-depth (not just passing mentions about the subject)
- reliable
- secondary
- independent of the subject
Make sure you add references that meet these criteria before resubmitting. Learn about mistakes to avoid when addressing this issue. If no additional references exist, the subject is not suitable for Wikipedia.