-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
Showing
8 changed files
with
79 additions
and
39 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 |
---|---|---|
@@ -1 +1 @@ | ||
0cad1e99 | ||
a90a98e4 |
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
<link href="index_files/libs/quarto-html/light-border.css" rel="stylesheet"> | ||
<link href="index_files/libs/quarto-html/quarto-html.min.css" rel="stylesheet" data-mode="light"> | ||
<link href="index_files/libs/quarto-html/quarto-syntax-highlighting-dark.css" rel="stylesheet" id="quarto-text-highlighting-styles"><meta charset="utf-8"> | ||
<meta name="generator" content="quarto-1.3.450"> | ||
<meta name="generator" content="quarto-1.4.549"> | ||
|
||
<meta name="author" content="Mickaël Canouil, Ph.D."> | ||
<title>A Title</title> | ||
|
@@ -31,7 +31,7 @@ | |
} | ||
/* CSS for syntax highlighting */ | ||
pre > code.sourceCode { white-space: pre; position: relative; } | ||
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; } | ||
pre > code.sourceCode > span { line-height: 1.25; } | ||
pre > code.sourceCode > span:empty { height: 1.2em; } | ||
.sourceCode { overflow: visible; } | ||
code.sourceCode > span { color: inherit; text-decoration: inherit; } | ||
|
@@ -221,7 +221,8 @@ | |
} | ||
|
||
.callout.callout-titled .callout-body > .callout-content > :last-child { | ||
margin-bottom: 0.5rem; | ||
padding-bottom: 0.5rem; | ||
margin-bottom: 0; | ||
} | ||
|
||
.callout.callout-titled .callout-icon::before { | ||
|
@@ -405,23 +406,23 @@ <h1 class="title">A Title</h1> | |
</div> | ||
</div> | ||
|
||
<p class="date">Saturday, the 9<sup style="font-size:65%;font-style:italic;">th</sup> of December, 2023</p> | ||
<p class="date">Saturday, the 27<sup style="font-size:65%;font-style:italic;">th</sup> of January, 2024</p> | ||
</section> | ||
<section id="introduction" class="slide level2"> | ||
<h2>Introduction</h2> | ||
<h3 id="subtitle">Subtitle</h3> | ||
<p><code>some code</code> and some text.<br> | ||
A URL <a href="https://mickael.canouil.fr/">mickael.canouil.fr</a>.</p> | ||
<div class="cell"> | ||
<div class="sourceCode cell-code" id="cb1"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb1-1"><a href="#cb1-1"></a><span class="dv">1</span> <span class="sc">+</span> <span class="dv">1</span></span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div> | ||
<div class="sourceCode cell-code" id="cb1"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb1-1"><a href=""></a><span class="dv">1</span> <span class="sc">+</span> <span class="dv">1</span></span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div> | ||
<div class="cell-output cell-output-stdout"> | ||
<pre><code>[1] 2</code></pre> | ||
</div> | ||
</div> | ||
<div class="cell"> | ||
<div class="sourceCode cell-code" id="cb3"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb3-1"><a href="#cb3-1"></a>x <span class="ot"><-</span> <span class="dv">1</span></span> | ||
<span id="cb3-2"><a href="#cb3-2"></a>y <span class="ot"><-</span> x <span class="sc">+</span> <span class="dv">1</span></span> | ||
<span id="cb3-3"><a href="#cb3-3"></a>y</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div> | ||
<div class="sourceCode cell-code" id="cb3"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb3-1"><a href=""></a>x <span class="ot"><-</span> <span class="dv">1</span></span> | ||
<span id="cb3-2"><a href=""></a>y <span class="ot"><-</span> x <span class="sc">+</span> <span class="dv">1</span></span> | ||
<span id="cb3-3"><a href=""></a>y</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div> | ||
<div class="cell-output cell-output-stdout"> | ||
<pre><code>[1] 2</code></pre> | ||
</div> | ||
|
@@ -430,8 +431,8 @@ <h3 id="subtitle">Subtitle</h3> | |
<section id="ggplot2-with-code" class="slide level2"> | ||
<h2>GGPLOT2 With <code>code</code></h2> | ||
<div class="cell"> | ||
<div class="sourceCode cell-code" id="cb5"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb5-1"><a href="#cb5-1"></a><span class="fu">library</span>(ggplot2)</span> | ||
<span id="cb5-2"><a href="#cb5-2"></a><span class="fu">ggplot</span>(mtcars, <span class="fu">aes</span>(wt, mpg)) <span class="sc">+</span> <span class="fu">geom_point</span>()</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div> | ||
<div class="sourceCode cell-code" id="cb5"><pre class="sourceCode numberSource r number-lines code-with-copy"><code class="sourceCode r"><span id="cb5-1"><a href=""></a><span class="fu">library</span>(ggplot2)</span> | ||
<span id="cb5-2"><a href=""></a><span class="fu">ggplot</span>(mtcars, <span class="fu">aes</span>(wt, mpg)) <span class="sc">+</span> <span class="fu">geom_point</span>()</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div> | ||
|
||
</div> | ||
<img data-src="index_files/figure-revealjs/unnamed-chunk-4-1.png" width="960" class="r-stretch"></section> | ||
|
@@ -446,30 +447,32 @@ <h2>New slide</h2> | |
</section></section> | ||
<section id="about" class="title-slide slide level1 center"> | ||
<h1>About</h1> | ||
<div class="quarto-layout-panel"> | ||
<div class="quarto-layout-panel" data-layout="[0.38, -0.02, 0.60]"> | ||
<div class="quarto-layout-row quarto-layout-valign-center"> | ||
<div class="quarto-layout-cell" style="flex-basis: 38.0%;justify-content: center;"> | ||
<div class="quarto-layout-cell" style="flex-basis: 38.0%;justify-content: flex-start;"> | ||
<p><img src="https://github.com/mcanouil.png" class="picture"></p> | ||
</div> | ||
<div class="quarto-figure-spacer quarto-layout-cell" style="flex-basis: 2.0%;justify-content: center;"> | ||
<div class="quarto-figure-spacer quarto-layout-cell" style="flex-basis: 2.0%;justify-content: flex-start;"> | ||
<p> </p> | ||
</div> | ||
<div class="quarto-layout-cell" style="flex-basis: 60.0%;justify-content: center;"> | ||
<div class="quarto-layout-cell" style="flex-basis: 60.0%;justify-content: flex-start;"> | ||
<ul> | ||
<li><a href="https://mickael.canouil.fr/" style="text-decoration: none;"> mickael.canouil.fr</a></li> | ||
<li><a href="mailto:[email protected]" style="text-decoration: none;"> [email protected]</a></li> | ||
<li><a href="https://www.linkedin.com/in/mickaelcanouil/" style="text-decoration: none;"> mickaelcanouil</a></li> | ||
<li><a href="https://github.com/mcanouil/" style="text-decoration: none;"> @mcanouil</a></li> | ||
<li><a href="https://twitter.com/MickaelCanouil/" style="text-decoration: none;"> @MickaelCanouil</a></li> | ||
<li><a href="https://fosstodon.org/@MickaelCanouil/" style="text-decoration: none;"> @[email protected]</a></li> | ||
<li><a href="https://mickael.canouil.fr/" style="text-decoration: none;">{{< iconify fa6-solid house-chimney-user >}} mickael.canouil.fr</a></li> | ||
<li><a href="mailto:[email protected]" style="text-decoration: none;">{{< iconify fa6-solid envelope >}} [email protected]</a></li> | ||
<li><a href="https://www.linkedin.com/in/mickaelcanouil/" style="text-decoration: none;">{{< iconify fa6-brands linkedin >}} mickaelcanouil</a></li> | ||
<li><a href="https://github.com/mcanouil/" style="text-decoration: none;">{{< iconify fa6-brands github >}} @mcanouil</a></li> | ||
<li><a href="https://twitter.com/MickaelCanouil/" style="text-decoration: none;">{{< iconify fa6-brands twitter >}} @MickaelCanouil</a></li> | ||
<li><a href="https://fosstodon.org/@MickaelCanouil/" style="text-decoration: none;">{{< iconify fa6-brands mastodon >}} @[email protected]</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="quarto-auto-generated-content"> | ||
<p><img src="_extensions/mcanouil/coeos/coeos.svg" class="slide-logo"></p> | ||
<div class="footer footer-default"> | ||
<p><a href="https://mickael.canouil.fr/">mickael.canouil.fr</a> | <a href="https://creativecommons.org/licenses/by-sa/4.0/">License: CC-BY-SA-4.0</a></p> | ||
</div> | ||
</div> | ||
</section> | ||
</div> | ||
</div> | ||
|
@@ -497,7 +500,6 @@ <h1>About</h1> | |
Reveal.initialize({ | ||
'controlsAuto': true, | ||
'previewLinksAuto': false, | ||
'smaller': false, | ||
'pdfSeparateFragments': false, | ||
'autoAnimateEasing': "ease", | ||
'autoAnimateDuration': 1, | ||
|
@@ -796,10 +798,9 @@ <h1>About</h1> | |
// clear code selection | ||
e.clearSelection(); | ||
}); | ||
function tippyHover(el, contentFn) { | ||
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { | ||
const config = { | ||
allowHTML: true, | ||
content: contentFn, | ||
maxWidth: 500, | ||
delay: 100, | ||
arrow: false, | ||
|
@@ -809,8 +810,17 @@ <h1>About</h1> | |
interactive: true, | ||
interactiveBorder: 10, | ||
theme: 'light-border', | ||
placement: 'bottom-start' | ||
placement: 'bottom-start', | ||
}; | ||
if (contentFn) { | ||
config.content = contentFn; | ||
} | ||
if (onTriggerFn) { | ||
config.onTrigger = onTriggerFn; | ||
} | ||
if (onUntriggerFn) { | ||
config.onUntrigger = onUntriggerFn; | ||
} | ||
config['offset'] = [0,0]; | ||
config['maxWidth'] = 700; | ||
window.tippy(el, config); | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
/*# sourceMappingURL=0a6b880beb84f9b6f36107a76f82c5b1.css.map */ | ||
|
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
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
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