Skip to content

Commit 79ebf31

Browse files
committed
add white paper content
1 parent b2431a2 commit 79ebf31

File tree

12 files changed

+80
-1
lines changed

12 files changed

+80
-1
lines changed

.github/workflows/publish-quarto.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,18 @@ jobs:
3030
# uncomment below and fill to pin a version
3131
# version: SPECIFIC-QUARTO-VERSION-HERE
3232

33-
- name: Render Quarto Project
33+
- name: Render Quarto Project 1
3434
uses: quarto-dev/quarto-actions/render@v2
3535
with:
3636
to: html # If set, it will be equivalent to `quarto render --to html`
3737
path: site
3838

39+
- name: Render Quarto Project 2
40+
uses: quarto-dev/quarto-actions/render@v2
41+
with:
42+
to: html # If set, it will be equivalent to `quarto render --to html`
43+
path: white-paper
44+
3945
- name: Upload static files as artifact
4046
id: deployment
4147
uses: actions/upload-pages-artifact@v3

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
.Rhistory
33
.RData
44
.Ruserdata
5+
docs

white-paper/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.quarto/

white-paper/_quarto.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
project:
2+
type: book
3+
output-dir: ../docs/white-paper
4+
book:
5+
title: "Git in Statistical Programming"
6+
author: "Kieran Martin"
7+
date: "5/22/2025"
8+
chapters:
9+
- index.qmd
10+
- intro.qmd
11+
- summary.qmd
12+
- references.qmd
13+
14+
bibliography: references.bib
15+
16+
format:
17+
html:
18+
theme: cosmo
19+
pdf:
20+
documentclass: scrreprt
21+
22+
23+

white-paper/cover.png

50 KB
Loading

white-paper/index.qmd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Preface {.unnumbered}
2+
3+
This is a draft of the white paper for the phuse working group Git in Statistical Programming
4+

white-paper/intro.qmd

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Introduction
2+
3+
This is a book created from markdown and executable code.
4+
5+
See @knuth84 for additional discussion of literate programming.

white-paper/phuselogo.png

27.6 KB
Loading

white-paper/references.bib

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
@article{knuth84,
2+
author = {Knuth, Donald E.},
3+
title = {Literate Programming},
4+
year = {1984},
5+
issue_date = {May 1984},
6+
publisher = {Oxford University Press, Inc.},
7+
address = {USA},
8+
volume = {27},
9+
number = {2},
10+
issn = {0010-4620},
11+
url = {https://doi.org/10.1093/comjnl/27.2.97},
12+
doi = {10.1093/comjnl/27.2.97},
13+
journal = {Comput. J.},
14+
month = may,
15+
pages = {97–111},
16+
numpages = {15}
17+
}
18+
19+

white-paper/references.qmd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# References {.unnumbered}
2+
3+
::: {#refs}
4+
:::

0 commit comments

Comments
 (0)