-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from NBISweden/devel
Lectures day 2 and 3
- Loading branch information
Showing
27 changed files
with
3,458 additions
and
1,288 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* SCSS custom modifications for NBIS presentations using quarto, revealjs and rmarkdown */ | ||
|
||
/*-- scss:defaults --*/ | ||
|
||
/*-- scss:rules --*/ | ||
|
||
.scroll-1000 { | ||
max-height: 1000px; | ||
overflow-y: auto; | ||
background-color: inherit; | ||
} | ||
.scroll-400 { | ||
max-height: 400px; | ||
overflow-y: auto; | ||
background-color: inherit; | ||
} | ||
.scroll-300 { | ||
max-height: 300px; | ||
overflow-y: auto; | ||
background-color: inherit; | ||
} | ||
.scroll-200 { | ||
max-height: 200px; | ||
overflow-y: auto; | ||
background-color: inherit; | ||
} | ||
|
||
pre.out { | ||
background-color: lightgreen; | ||
} | ||
pre.sourceCode.src { | ||
background-color: lightblue; | ||
} | ||
|
||
.green { color: #85be42; font-weight: bold } | ||
|
||
code.tree { | ||
line-height: 8px; | ||
font-size: 18px; | ||
} | ||
|
||
code.stree { | ||
line-height: 6.6px; | ||
font-size: 12px; | ||
} | ||
|
||
code.sstree { | ||
line-height: 5.6px; | ||
font-size: 10px; | ||
} | ||
|
||
|
||
code.large { | ||
font-size: 20px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
all: reproducibility-tools.html | ||
|
||
%.html: %.Rmd | ||
Rscript -e 'rmarkdown::render("$<")' | ||
|
||
# OPENSSL_CONF due to https://github.com/nodejs/node/issues/43132#issuecomment-1130503287 | ||
%.pdf: %.html | ||
OPENSSL_CONF=/dev/null Rscript -e 'library(webshot); webshot("$<", "$@")' |
Oops, something went wrong.