Skip to content

Commit

Permalink
EricMarcon published a site update
Browse files Browse the repository at this point in the history
  • Loading branch information
EricMarcon committed Jan 6, 2025
1 parent 74a3b8d commit b8b6055
Show file tree
Hide file tree
Showing 26 changed files with 49 additions and 37 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@



<meta name="date" content="2025-01-05" />
<meta name="date" content="2025-01-06" />

<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
Expand Down Expand Up @@ -3207,7 +3207,7 @@
<h1 data-config-title><!-- populated from slide_config.json --></h1>

<p data-config-presenter><!-- populated from slide_config.json --></p>
<p style="margin-top: 6px; margin-left: -2px;">05 January 2025</p>
<p style="margin-top: 6px; margin-left: -2px;">06 January 2025</p>
</hgroup>
</slide>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="generator" content="pandoc" />
<meta name="author" content="Author’s name" />
<meta name="date" content="2025-01-05" />
<meta name="date" content="2025-01-06" />
<title>Title of the Talk</title>
<style type="text/css">
code{white-space: pre-wrap;}
Expand Down Expand Up @@ -513,7 +513,7 @@ <h1 class="title">Title of the Talk</h1>
<p class="author">
Author’s name
</p>
<p class="date">05 January 2025</p>
<p class="date">06 January 2025</p>
</div>
<div id="introduction" class="title-slide slide section level1">
<h1>Introduction</h1>
Expand Down
2 changes: 1 addition & 1 deletion gallery/memoir/bookdown_bs4_book/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h1>Page not found<a class="anchor" aria-label="anchor" href="#page-not-found"><
<footer class="bg-primary text-light mt-5"><div class="container"><div class="row">

<div class="col-12 col-md-6 mt-3">
<p>"<strong>Title of the Memoir</strong>" was written by Authors’ names. It was last built on 2025-01-05.</p>
<p>"<strong>Title of the Memoir</strong>" was written by Authors’ names. It was last built on 2025-01-06.</p>
</div>

<div class="col-12 col-md-6 mt-3">
Expand Down
2 changes: 1 addition & 1 deletion gallery/memoir/bookdown_bs4_book/getting_started.html
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ <h2>
<footer class="bg-primary text-light mt-5"><div class="container"><div class="row">

<div class="col-12 col-md-6 mt-3">
<p>"<strong>Title of the Memoir</strong>" was written by Authors’ names. It was last built on 2025-01-05.</p>
<p>"<strong>Title of the Memoir</strong>" was written by Authors’ names. It was last built on 2025-01-06.</p>
</div>

<div class="col-12 col-md-6 mt-3">
Expand Down
2 changes: 1 addition & 1 deletion gallery/memoir/bookdown_bs4_book/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ <h1>Introduction<a class="anchor" aria-label="anchor" href="#introduction"><i cl
<footer class="bg-primary text-light mt-5"><div class="container"><div class="row">

<div class="col-12 col-md-6 mt-3">
<p>"<strong>Title of the Memoir</strong>" was written by Authors’ names. It was last built on 2025-01-05.</p>
<p>"<strong>Title of the Memoir</strong>" was written by Authors’ names. It was last built on 2025-01-06.</p>
</div>

<div class="col-12 col-md-6 mt-3">
Expand Down
2 changes: 1 addition & 1 deletion gallery/memoir/bookdown_bs4_book/references.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ <h1>References<a class="anchor" aria-label="anchor" href="#references"><i class=
<footer class="bg-primary text-light mt-5"><div class="container"><div class="row">

<div class="col-12 col-md-6 mt-3">
<p>"<strong>Title of the Memoir</strong>" was written by Authors’ names. It was last built on 2025-01-05.</p>
<p>"<strong>Title of the Memoir</strong>" was written by Authors’ names. It was last built on 2025-01-06.</p>
</div>

<div class="col-12 col-md-6 mt-3">
Expand Down
2 changes: 1 addition & 1 deletion gallery/memoir/bookdown_bs4_book/search.json

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions gallery/memoir/bookdown_bs4_book/syntax.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ <h2>
<p>R code is included in code chunks (<em>code chunks</em>) that are easily created by clicking on the “Insert a new code chunk” button above the source code window in RStudio.
They start and end with three quotation marks on a new line.
These code chunks can contain R code but also Python code for example: the type of code is indicated in the header on the first line, before the name of the code chunk, then a comma separated list of options, for example:</p>
<pre><code>```{r cars, echo=TRUE}
<pre><code>```{r}
#| label: cars
#| echo: true
```</code></pre>
<p>The name and options are optional: the minimum header is <code>{r}</code>.</p>
<p>The most useful options are:</p>
Expand Down Expand Up @@ -171,7 +173,9 @@ <h2>
With Bookdown, a label is associated with each figure: its name is <code>fig:xxx</code> where <code>xxx</code> is the name of the R code snippet.
References are made with the command <code>\@ref(fig:xxx)</code>.</p>
<p>The header of the code snippet of the figure <a href="syntax.html#fig:pressure">2.1</a> is:</p>
<pre><code>```{r pressure, fig.cap="Title of the figure"}
<pre><code>```{r}
#| label: pressure
#| fig-cap: "Title of the figure"
```</code></pre>
<p>It contains at least the name of the figure and its caption.</p>
<p>The default width of figures is set in the option chunk in <code>index.Rmd</code>.
Expand Down Expand Up @@ -650,7 +654,7 @@ <h3>
<footer class="bg-primary text-light mt-5"><div class="container"><div class="row">

<div class="col-12 col-md-6 mt-3">
<p>"<strong>Title of the Memoir</strong>" was written by Authors’ names. It was last built on 2025-01-05.</p>
<p>"<strong>Title of the Memoir</strong>" was written by Authors’ names. It was last built on 2025-01-06.</p>
</div>

<div class="col-12 col-md-6 mt-3">
Expand Down
2 changes: 1 addition & 1 deletion gallery/memoir/bookdown_gitbook/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<meta name="author" content="Authors’ names" />


<meta name="date" content="2025-01-05" />
<meta name="date" content="2025-01-06" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
Expand Down
2 changes: 1 addition & 1 deletion gallery/memoir/bookdown_gitbook/getting_started.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<meta name="author" content="Authors’ names" />


<meta name="date" content="2025-01-05" />
<meta name="date" content="2025-01-06" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
Expand Down
4 changes: 2 additions & 2 deletions gallery/memoir/bookdown_gitbook/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<meta name="author" content="Authors’ names" />


<meta name="date" content="2025-01-05" />
<meta name="date" content="2025-01-06" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
Expand Down Expand Up @@ -217,7 +217,7 @@ <h1>
<div id="header">
<h1 class="title">Title of the Memoir</h1>
<p class="author"><em>Authors’ names</em></p>
<p class="date"><em>2025-01-05</em></p>
<p class="date"><em>2025-01-06</em></p>
</div>
<div id="introduction" class="section level1 unnumbered hasAnchor">
<h1>Introduction<a href="index.html#introduction" class="anchor-section" aria-label="Anchor link to header"></a></h1>
Expand Down
2 changes: 1 addition & 1 deletion gallery/memoir/bookdown_gitbook/references.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<meta name="author" content="Authors’ names" />


<meta name="date" content="2025-01-05" />
<meta name="date" content="2025-01-06" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
Expand Down
2 changes: 1 addition & 1 deletion gallery/memoir/bookdown_gitbook/search_index.json

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions gallery/memoir/bookdown_gitbook/syntax.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<meta name="author" content="Authors’ names" />


<meta name="date" content="2025-01-05" />
<meta name="date" content="2025-01-06" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
Expand Down Expand Up @@ -259,7 +259,9 @@ <h2><span class="header-section-number">2.2</span> R code<a href="syntax.html#r-
<p>R code is included in code chunks (<em>code chunks</em>) that are easily created by clicking on the “Insert a new code chunk” button above the source code window in RStudio.
They start and end with three quotation marks on a new line.
These code chunks can contain R code but also Python code for example: the type of code is indicated in the header on the first line, before the name of the code chunk, then a comma separated list of options, for example:</p>
<pre><code>```{r cars, echo=TRUE}
<pre><code>```{r}
#| label: cars
#| echo: true
```</code></pre>
<p>The name and options are optional: the minimum header is <code>{r}</code>.</p>
<p>The most useful options are:</p>
Expand Down Expand Up @@ -291,7 +293,9 @@ <h2><span class="header-section-number">2.3</span> Figures<a href="syntax.html#f
With Bookdown, a label is associated with each figure: its name is <code>fig:xxx</code> where <code>xxx</code> is the name of the R code snippet.
References are made with the command <code>\@ref(fig:xxx)</code>.</p>
<p>The header of the code snippet of the figure <a href="syntax.html#fig:pressure">2.1</a> is:</p>
<pre><code>```{r pressure, fig.cap=&quot;Title of the figure&quot;}
<pre><code>```{r}
#| label: pressure
#| fig-cap: &quot;Title of the figure&quot;
```</code></pre>
<p>It contains at least the name of the figure and its caption.</p>
<p>The default width of figures is set in the option chunk in <code>index.Rmd</code>.
Expand Down
Binary file modified gallery/memoir/bookdown_pdf_book/MyBook.pdf
Binary file not shown.
10 changes: 7 additions & 3 deletions gallery/memoir/bookdown_pdf_book/MyBook.tex
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@

\author{Authors' names}

\date{2025-01-05}
\date{2025-01-06}


% Include headers (preamble.tex) here
Expand Down Expand Up @@ -786,7 +786,9 @@ \section{R code}\label{r-code}
These code chunks can contain R code but also Python code for example: the type of code is indicated in the header on the first line, before the name of the code chunk, then a comma separated list of options, for example:

\begin{verbatim}
```{r cars, echo=TRUE}
```{r}
#| label: cars
#| echo: true
```
\end{verbatim}

Expand Down Expand Up @@ -851,7 +853,9 @@ \section{Figures}\label{figures}
The header of the code snippet of the figure \ref{fig:pressure} is:

\begin{verbatim}
```{r pressure, fig.cap="Title of the figure"}
```{r}
#| label: pressure
#| fig-cap: "Title of the figure"
```
\end{verbatim}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@



<meta name="date" content="2025-01-05" />
<meta name="date" content="2025-01-06" />

<title>Title of the Article</title>

Expand Down Expand Up @@ -1818,7 +1818,7 @@
<h1 class="title toc-ignore">Title of the Article</h1>
<h4 class="author">First Author’s name</h4>
<h4 class="author">Second Author’s name</h4>
<h4 class="date">05 January 2025</h4>
<h4 class="date">06 January 2025</h4>
<div class="abstract">
<p class="abstract">Abstract</p>
<p>Abstract of the article.</p>
Expand Down
Binary file modified gallery/simple_article/bookdown_pdf_book/simple_article.pdf
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ \subsection{Figures}\label{figures}

\begin{figure}

{\centering \includegraphics[width=0.8\linewidth]{/private/var/folders/95/0ydz4d79163427j3k5crp3fh0000gn/T/Rtmp0hbRcB/simple_article/gallery/simple_article/bookdown_pdf_book/simple_article_files/figure-latex/pressure-1}
{\centering \includegraphics[width=0.8\linewidth]{/private/var/folders/95/0ydz4d79163427j3k5crp3fh0000gn/T/RtmpNvWijM/simple_article/gallery/simple_article/bookdown_pdf_book/simple_article_files/figure-latex/pressure-1}

}

Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="generator" content="pandoc" />


<meta name="date" content="2025-01-05" />
<meta name="date" content="2025-01-06" />

<title>Title of the Article</title>

Expand Down Expand Up @@ -2064,7 +2064,7 @@ <h1 class="title">Title of the Article</h1>
<span class="glyphicon glyphicon-user"></span> Second Author’s name
<br>
</p>
<p class="date"><span class="glyphicon glyphicon-calendar"></span> 05 January 2025</p>
<p class="date"><span class="glyphicon glyphicon-calendar"></span> 06 January 2025</p>



Expand Down
Loading

0 comments on commit b8b6055

Please sign in to comment.