-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0576a2
commit 75e6e06
Showing
78 changed files
with
6,267 additions
and
0 deletions.
There are no files selected for viewing
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,4 @@ | ||
.Rproj.user | ||
.Rhistory | ||
.RData | ||
.Ruserdata |
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,25 @@ | ||
/*-- scss:defaults --*/ | ||
|
||
// fonts | ||
$font-family-sans-serif: "Times", "Abril Text"; | ||
$font-family-monospace: "Fira-code", "Arial"; | ||
|
||
// colors | ||
$body-bg: #1d1e26 !default; | ||
$body-color: #f8f8f2 !default; | ||
$link-color: $body-color; | ||
$link-color-hover: #8774e5 !default; | ||
$selection-bg: #868689 !default; | ||
|
||
$code-bg: #272a36 !default; | ||
$code-block-bg: $code-bg; | ||
$code-color: $body-color; | ||
$code-block-border-color: $body-bg; | ||
|
||
$tabset-border-color: $body-bg; | ||
|
||
// headings | ||
|
||
/*-- scss:rules --*/ | ||
|
||
|
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,76 @@ | ||
--- | ||
title: My Slide Show | ||
subtitle: '`r Sys.Date()`' | ||
author: "David Granjon, Novartis" | ||
format: | ||
revealjs: | ||
css: "styles/dracula-ui.css" | ||
theme: "dracula.scss" | ||
echo: true | ||
code-link: true | ||
footer: "Novartis, 2022" | ||
template-partials: | ||
- title-slide.html | ||
highlight-style: dracula | ||
--- | ||
|
||
```{r setup, include = FALSE} | ||
library(emo) | ||
``` | ||
|
||
## Program | ||
We're in for 2 hours of **fun**! | ||
|
||
- Grab a `r ji("coffee")` | ||
- Make yourself comfortable `r ji("couch")` or 🧘 | ||
- Ask questions `r ji("question")` | ||
|
||
1. Introduction __5 min__ | ||
2. Setup {shinyValidator} __45 min__ | ||
3. Analyse {shinyValidator} report __45 min__ | ||
4. Questions | ||
|
||
## Quarto | ||
|
||
<div class="drac-box drac-card drac-bg-purple drac-p-sm"> | ||
<span class="drac-text drac-line-height drac-text-black">Dracula</span> | ||
</div> | ||
|
||
:::: {.columns} | ||
|
||
::: {.column width="40%"} | ||
contents... | ||
::: | ||
|
||
::: {.column width="60%"} | ||
contents... | ||
::: | ||
|
||
:::: | ||
|
||
## Bullets | ||
|
||
::: {.panel-tabset} | ||
|
||
### Tab A | ||
|
||
[Preview](https://example.com){preview-link="true"} | ||
|
||
### Tab B | ||
|
||
Content for `Tab B` | ||
|
||
::: | ||
|
||
## Code | ||
|
||
When you click the **Render** button a presentation will be generated that includes both content and the output of embedded code. You can embed code like this: | ||
|
||
```{r} | ||
#| output-location: column-fragment | ||
#| code-line-numbers: "|2" | ||
library(ggplot2) | ||
1+1 | ||
``` |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
180 changes: 180 additions & 0 deletions
180
index_files/libs/quarto-html/quarto-syntax-highlighting-dark.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.