projet: commit initial

Co-Authored-by: iGor milhit <igor@milhit.ch>
main
iGor milhit 2026-07-10 16:01:34 +02:00
commit 774695925c
Signed by: igor
GPG Key ID: 692D97C3D0228A99
25 changed files with 3943 additions and 0 deletions

6
.gitignore vendored 100644
View File

@ -0,0 +1,6 @@
node_modules/
*.html
!template.html
*.css
*.pdf

43
Makefile 100644
View File

@ -0,0 +1,43 @@
SASS = ./node_modules/.bin/sass
BS = ./node_modules/.bin/browser-sync
REVEALJS = node_modules/reveal.js
PORT = 8080
SLIDES_SOURCE = demo.md
.PHONY: all install serve watch clean
all: index.html
install:
npm install
static/css/bunige.css: src/scss/bunige.scss
$(SASS) --load-path=. $< $@
index.html: demo.md static/css/bunige.css static/templates/template.html
pandoc \
--to=revealjs \
--standalone \
--citeproc \
--template=static/templates/template.html \
--variable revealjs-url=$(REVEALJS) \
--syntax-highlighting=zenburn \
--css static/css/bunige.css \
-o $@
$(SLIDES_SOURCE)
serve:
$(BS) start \
--server \
--port $(PORT) \
--files "index.html, static/css/bunige.css" \
--startPath /index.html
watch:
watchexec -r \
-w $(SLIDES_SOURCE) \
-w src/scss/bunige.scss \
-w static/templates/template.html \
-- $(MAKE) all

154
demo.md 100644
View File

@ -0,0 +1,154 @@
---
title: Ma présentation BUNIGE
subtitle: Une démo
date: le 9 février 2024
place: Ici
id: 20240925143527
author:
- name: Présentateur/trice
email: Présentateur-trice@unige.ch
licence:
- type: CC-BY-SA 4.0
url: https://creativecommons.org/licenses/by-sa/4.0/
source: https://example.org
bibliography: static/references.json
csl-style: static/heg-iso-690.csl
link-citations: true
---
## Plan
1. [Partie 1](#partie-1).
1. [Partie 2](#partie-2).
# Partie 1
---
## [`reveal-js`]{.bunige-code-inline} et [`pandoc`]{.bunige-code-inline}
- Rédige tes *slides* en markdown.
- Converti ton markdown en un fichier HTML suivant le modèle de
[`reveal-js`]{.bunige-code-inline}.
- Mais avec une version proche de la charte graphique de l'UNIGE.
- Un exemple est donnée dans le fichier
[`./bunige-demo.md`]{.bunige-code-inline}.
---
- Un lien: <https://example.org>.
- Texte préformaté: [`preformated`]{.bunige-code-inline}
---
## Des classes en markdown?
Pour ajouter une classe à un élément en ligne en
[`pandoc`]{.bunige-code-inline} markdown, voici comment faire:
```{.markdown}
Un peu de [texte]{.class} en ligne.
```
Ce qui donne:
```{.html}
<p>Un peu de <span class="class">texte</span> en ligne.
```
---
Un joli texte avant une belle image. Machin
![Légende de l'image](https://www.unige.ch/biblio/files/cache/d7d5b0a60baf07a4ad8534ad20b9839c_f9197.jpg)
---
## Des colonnes
Pour les colonnes, il y a les classes \
[`bunige-columns`]{.bunige-code-inline} pour le contenant principal, et \
[`bunige-column`]{.bunige-code-inline} pour chaque colonne.
::: {.bunige-columns}
::: {.bunige-column}
![Logo Markdown](https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg)
:::
::: {.bunige-columnf
![Logo Reveal.js](https://revealjs.com/images/logo/reveal-black-text.svg)
:::
:::
---
## Des colonnes, en mieux
- [`bunige-columns-center`]{.bunige-code-inline} pour centrer verticalement le
contenu.
- [`bunige-no-border`]{.bunige-code-inline} pour supprimer les bordures des
images dans la colonne.
::: {.bunige-columns .bunige-columns-center}
::: {.bunige-column .bunige-no-border}
![Logo Markdown](https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg)
:::
::: {.bunige-column .bunige-no-border}
![Pandoc](https://pandoc.org/pandoc-cartoon.svgz)
:::
::: {.bunige-column .bunige-no-border}
![Logo Reveal.js](https://revealjs.com/images/logo/reveal-black-text.svg)
:::
:::
# Partie 2
---
Un exemple de code:
```{.html .number-lines startFrom="70"}
<code class="bunige-code-inline">Texte préformaté.</code>
<figure>
<img src="./img.jpeg" alt="alternate text">
<figcaption>Figure caption.</figcaption>
</figure>
```
## Image de fond {background-image="https://www.unige.ch/biblio/files/cache/d7d5b0a60baf07a4ad8534ad20b9839c_f9197.jpg" data-background-opacity="0.5"}
Avec un degré de transparence de [`0.5`]{.bunige-code-inline}
---
## Citation
Selon Pochet, … [@pochetMarkdownVous2023].
Alors qu'Ovadia, … [@ovadiaMarkdownLibrariansAcademics2014].
---
::: {.r-fit-text .bunige-color}
Merci!
:::
---
## Références {#references}

2069
package-lock.json generated 100644

File diff suppressed because it is too large Load Diff

7
package.json 100644
View File

@ -0,0 +1,7 @@
{
"dependencies": {
"browser-sync": "^3.0.4",
"reveal.js": "^6.0.1",
"sass": "^1.101.0"
}
}

View File

@ -0,0 +1,227 @@
/**
* Unige theme for reveal.js. This is a modified version of the white theme.
*
* By Hakim El Hattab, http://hakim.se
* slightly modified by Igor Milhit <igor.milhit@unige.ch>
*/
@use 'sass:color';
@use "node_modules/reveal.js/css/theme/template/mixins" as mixins;
// Variables locales (avant @use settings)
$bunige-color: #CF0063;
$main-font-size: 40px;
$smaller-font-size: $main-font-size * 0.6;
// The background color inversed is used for the inline code block.
// The color inversed is used for the inline code block.
$background-color-inversed: $bunige-color;
$main-color-inversed: #fff;
@use "node_modules/reveal.js/css/theme/template/settings" with (
$main-color: #222,
$background: $bunige-color,
$background-color: #fff,
$heading-color: $bunige-color,
$main-font: "'Source sans pro', helvetica, sans-serif",
$heading-font: "'Source Sans Pro', Helvetica, sans-serif",
$heading-font-weight: 600,
$link-color: $bunige-color,
$link-color-hover: color.scale($bunige-color, $lightness: 15%),
$selection-background-color: color.scale($bunige-color, $lightness: 25%),
$heading1-size: 2.5em,
$heading2-size: 1.6em,
$heading3-size: 1.3em,
$heading4-size: 1.0em,
);
// ---------------------------------------------
// Theme template ------------------------------
@use "node_modules/reveal.js/css/theme/template/theme" as *;
// ---------------------------------------------
// Include theme-specific fonts
@use 'static/fonts/source-sans-pro/source-sans-pro.css';
// Define the variables needed for this theme
:root {
--r-bunige-color: #{$bunige-color};
--r-background-color-inversed: #{$background-color-inversed};
--r-main-color-inversed: #{$main-color-inversed};
}
.reveal {
// The BUNIGE logo on the main document, left top corner.
// The statics folder has been added inside the `dist/theme`
// directory.
background-image: url(../images/bunige-logo.svg);
background-repeat: no-repeat;
background-position: top .5em left 1em;
background-size: 10%;
// The BUNIGE inline code block.
// This class has to be added in the HTML!
// It's a workaround to keep the native codeblock styling.
.bunige-code-inline {
background-color: var(--r-background-color-inversed);
color: var(--r-main-color-inversed);
border-radius: .2em;
padding: .2em .2em 0 .2em;
}
//Style the figure and figcaption blocks.
figure {
max-width: 80%;
margin: 0 auto;
border: solid var(--r-bunige-color);
border-radius: .2em;
img {
margin: 0;
padding-top: .2em;
}
figcaption {
font-size: $smaller-font-size;
}
}
.bunige-no-border {
figure {
border: none;
}
}
// Adapt the slide number rendering to the bunige theme
// Change the a value as desired.
.slide-number {
background-color: var(--r-bunige-color);
a {
text-decoration: none;
}
}
.bunige-list-inline {
font-size: $smaller-font-size;
li {
display: inline-block;
}
li:not(:last-child):after {
content: " ";
}
}
.bunige-author {
text-align: center;
}
// Add this class to get the BUNIGE color to specific text.
.bunige-color {
color: var(--r-bunige-color);
}
// Add this class to align text to left.
.bunige-text-left-aligned {
text-align: left;
}
table {
font-size: smaller;
margin: .5em auto !important;
thead {
tr {
th {
border-right: 1px solid;
}
th:last-child {
border-right: none;
}
}
}
tbody {
tr {
td {
border-right: 1px solid;
}
td:last-child {
border-right: none;
}
}
}
}
// To display multiple columns
// on a slide.
.bunige-columns {
display: flex;
justify-content: space-evenly;
.bunige-column {
flex: 1;
img {
//TODO: is it the best way?
max-height: 35vh;
}
}
}
// When usign columns, it's possible
// To center verticaly the content.
.bunige-columns-center {
align-items: center;
}
blockquote {
text-align: left;
}
.citation {
font-size: smaller;
}
#refs {
font-size: small;
text-align: left;
.csl-entry {
padding-bottom: .5em;
}
}
// Set the <sup> to top instead off
// sup in order to improve vertical spacing.
sup {
vertical-align: top !important;
}
// To style the reference section.
.hanging-indent {
.csl-entry {
margin-left: 0;
text-indent: 0;
}
}
}
// As the link color is the same pink as the headers,
// it better to underline them. But this rule has to
// be after the theme link rules. Otherwise the `!important`
// options is needed, which prevent to remove the
// text-decoration of the slide number links.
.reveal {
a {
text-decoration: underline;
}
}

View File

@ -0,0 +1 @@
{"version":3,"sourceRoot":"","sources":["../../src/scss/bunige.scss","../../node_modules/reveal.js/css/theme/template/settings.scss","../../node_modules/reveal.js/css/theme/template/theme.scss","../fonts/source-sans-pro/source-sans-pro.css"],"names":[],"mappings":";AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACmDA;EAEC;EACA;EAGA;EACA;EACA;EAGA;EAGA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EAGA;EACA;EACA;EAGA;EACA;EAIA;EACA;;;AC5FD;AAAA;AAAA;AAIA;EACC;EACA;;;AAGD;EACC;EACA;EACA;EACA;;;AAGD;EACC;EACA;EACA;;;AAGD;EACC;EACA;EACA;;;AAGD;AAAA;EAEC;EACA;;;AAGD;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;EAMC;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EAEA;;;AAGD;EACC;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;;;AAGD;EACC;;;AAGD;AAAA;AAAA;AAIA;EACC;EACA;;;AAGD;AACA;AAAA;AAAA;AAAA;AAAA;AAAA;EAMC;;;AAGD;AACA;AAAA;AAAA;EAGC;EACA;;;AAED;AAAA;EAEC;;;AAGD;EACC;;;AAGD;AAAA;AAAA;EAGC;EAEA;EACA;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;AAAA;AAAA;AAAA;EAIC;EACA;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;;;AAED;AAAA;EAEC;;;AAGD;EACC;;;AAGD;EACC;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EAEA;;;AAGD;EACC;EACA;EACA;;;AAGD;EACC;EACA;EACA;EACA;EACA;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;EACA;EACA;;;AAGD;EACC;;;AAGD;AAAA;EAEC;EACA;EACA;;;AAGD;AAAA;EAEC;;;AAGD;AAAA;EAEC;;;AAGD;AAAA;EAEC;;;AAGD;EACC;EACA;;;AAED;EACC;EACA;;;AAGD;EACC;EACA;EACA;EACA;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;AAAA;AAAA;AAIA;EACC;EACA;EACA;;;AAED;EACC;EACA;EACA;;;AAGD;EACC;EAEA;;;AAGD;AAAA;AAAA;AAIA;EACC;EACA;;;AAGD;EACC;;;AAGD;EACC;EACA;;;AAGD;AAAA;AAAA;AAIA;EACC;;;AAGD;AAAA;AAAA;AAIA;EACC;EACA;;;AAGD;AAAA;AAAA;AAGA;EACC;IACC;;;ACxUF;EACI;EACA;EACA;EAGA;EACA;;AAGJ;EACI;EACA;EACA;EAGA;EACA;;AAGJ;EACI;EACA;EACA;EAGA;EACA;;AAGJ;EACI;EACA;EACA;EAGA;EACA;;AHWJ;EACE;EACA;EACA;;;AAGF;EAIE;EACA;EACA;EACA;;AAKA;EACE;EACA;EACA;EACA;;AAIF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE,WAzEc;;AA+EhB;EACE;;AAMJ;EACE;;AAEA;EACE;;AAIJ;EACE,WA/FgB;;AAiGhB;EACE;;AAGF;EACE;;AAIJ;EACE;;AAIF;EACE;;AAIF;EACE;;AAGF;EACE;EACA;;AAII;EACE;;AAEF;EACE;;AAOF;EACE;;AAEF;EACE;;AAQR;EACE;EACA;;AAEA;EACE;;AAEA;EAEE;;AAQN;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAEA;EACE;;AAMJ;EACE;;AAMA;EACE;EACA;;;AAYJ;EACE","file":"bunige.css"}

View File

@ -0,0 +1,45 @@
SIL Open Font License
Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name Source. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL
—————————————————————————————-
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
—————————————————————————————-
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.
The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.
DEFINITIONS
“Font Software” refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.
“Reserved Font Name” refers to any names specified as such after the copyright statement(s).
“Original Version” refers to the collection of Font Software components as distributed by the Copyright Holder(s).
“Modified Version” refers to any derivative made by adding to, deleting, or substituting—in part or in whole—any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.
“Author” refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.
5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.

View File

@ -0,0 +1,691 @@
<?xml version="1.0" encoding="utf-8"?>
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="never">
<info>
<title>Haute école de gestion de Genève (ISO 690)</title>
<title-short>HEG Genève (ISO 690)</title-short>
<id>http://www.zotero.org/styles/haute-ecole-de-gestion-de-geneve-iso-690</id>
<link href="http://www.zotero.org/styles/haute-ecole-de-gestion-de-geneve-iso-690" rel="self"/>
<link href="http://www.zotero.org/styles/iso690-author-date-en" rel="template"/>
<link href="https://www.hesge.ch/heg/campus/infotheque/citations-et-references-bibliographiques" rel="documentation"/>
<author>
<name>Raphael Grolimund</name>
<email>grolimur@protonmail.ch</email>
</author>
<contributor>
<name>Melissa Paez</name>
<email>paez.melissa@gmail.com</email>
</contributor>
<category citation-format="author-date"/>
<updated>2023-10-24T10:00:00+00:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<locale xml:lang="fr-FR">
<terms>
<term name="no date">[sans date]</term>
<term name="online">en&#160;ligne</term>
<term name="retrieved">disponible</term>
<term name="issue" form="short">
<single>no</single>
<multiple>nos</multiple>
</term>
<term name="page" form="short">
<single>p.</single>
<multiple>pp.</multiple>
</term>
<term name="number-of-pages" form="short">
<single>p.</single>
<multiple>pp.</multiple>
</term>
<!-- the 2 following terms, never used in any citation style published on https://zotero.org/styles, are hijacked to distinguish the diffrents dates (submitted, issued) of a patent -->
<term name="special-issue">déposé le</term>
<term name="special-section">publié le</term>
</terms>
</locale>
<locale xml:lang="fr-CA">
<terms>
<term name="no date">[sans date]</term>
<term name="online">en&#160;ligne</term>
<term name="retrieved">disponible</term>
<term name="issue" form="short">
<single>no</single>
<multiple>nos</multiple>
</term>
<term name="page" form="short">
<single>p.</single>
<multiple>pp.</multiple>
</term>
<term name="number-of-pages" form="short">
<single>p.</single>
<multiple>pp.</multiple>
</term>
<!-- the 2 following terms, never used in any citation style published on https://zotero.org/styles, are hijacked to distinguish the diffrents dates (submitted, issued) of a patent -->
<term name="special-issue">déposé le</term>
<term name="special-section">publié le</term>
</terms>
</locale>
<locale xml:lang="en-US">
<terms>
<term name="issue">no.</term>
<!-- the 2 following terms, never used in any citation style published on https://zotero.org/styles, are hijacked to distinguish the diffrents dates (submitted, issued) of a patent -->
<term name="special-issue">submitted on</term>
<term name="special-section">published on</term>
</terms>
</locale>
<locale xml:lang="en-UK">
<terms>
<term name="issue">no.</term>
<!-- the 2 following terms, never used in any citation style published on https://zotero.org/styles, are hijacked to distinguish the diffrents dates (submitted, issued) of a patent -->
<term name="special-issue">submitted on</term>
<term name="special-section">published on</term>
</terms>
</locale>
<macro name="editor">
<names variable="editor">
<name and="text" name-as-sort-order="all" sort-separator=", " delimiter=", " delimiter-precedes-last="never">
<name-part name="family" text-case="uppercase"/>
</name>
<label prefix=" (" form="short" suffix=".)"/>
</names>
</macro>
<macro name="translator">
<names variable="translator">
<name and="text" name-as-sort-order="all" sort-separator=", " delimiter=", " delimiter-precedes-last="never">
<name-part name="family" text-case="uppercase"/>
</name>
<label prefix=" (" form="short" suffix=".)"/>
</names>
</macro>
<macro name="responsability">
<names variable="author director">
<name and="text" name-as-sort-order="all" sort-separator=", " delimiter=", " delimiter-precedes-last="never">
<name-part name="family" text-case="uppercase"/>
</name>
<substitute>
<text macro="editor"/>
<text macro="translator"/>
<text macro="title"/>
</substitute>
</names>
<choose>
<if variable="author editor translator director" match="any">
<text macro="year-date" prefix=", "/>
</if>
</choose>
</macro>
<macro name="author-citation">
<names variable="author director">
<name form="short"/>
<substitute>
<names variable="editor"/>
<names variable="translator"/>
<text variable="title" font-style="italic"/>
</substitute>
</names>
</macro>
<macro name="container-author">
<names variable="container-author">
<name and="text" name-as-sort-order="all" sort-separator=", " delimiter=", " delimiter-precedes-last="never">
<name-part name="family" text-case="uppercase"/>
</name>
</names>
</macro>
<macro name="container-responsability">
<choose>
<if variable="container-author">
<text macro="container-author"/>
</if>
<else-if variable="editor">
<text macro="editor"/>
</else-if>
<else>
<text macro="translator"/>
</else>
</choose>
</macro>
<macro name="year-date">
<choose>
<if is-uncertain-date="issued">
<group prefix="[" suffix="]">
<choose>
<if variable="issued">
<date variable="issued">
<date-part name="year" form="long" suffix="?"/>
</date>
</if>
<else>
<text term="no date"/>
</else>
</choose>
</group>
</if>
<else>
<choose>
<if variable="issued">
<date variable="issued">
<date-part name="year" form="long"/>
</date>
</if>
</choose>
</else>
</choose>
</macro>
<macro name="title">
<choose>
<if type="book thesis map motion_picture song manuscript speech" match="any">
<choose>
<if variable="author editor translator director" match="any">
<text variable="title" font-style="italic"/>
</if>
<else>
<text variable="title" font-style="italic" suffix=", "/>
<text macro="year-date"/>
</else>
</choose>
</if>
<else-if type="software">
<text variable="title" font-style="italic"/>
<text term="software" prefix=" [" suffix="]"/>
</else-if>
<else-if type="paper-conference chapter article-journal article-magazine article-newspaper entry entry-dictionary entry-encyclopedia post-weblog post webpage broadcast" match="any">
<choose>
<if variable="author editor translator director" match="any">
<text variable="title" suffix=". "/>
</if>
<else>
<text variable="title" suffix=", "/>
<text macro="year-date"/>
</else>
</choose>
<choose>
<if type="chapter paper-conference" match="any">
<text term="in" text-case="capitalize-first" suffix="&#160;: "/>
</if>
</choose>
<choose>
<if variable="container-author editor translator" match="any">
<text macro="container-responsability"/>
<choose>
<if variable="container-title event" match="any">
<text value=", "/>
</if>
</choose>
</if>
</choose>
<choose>
<if variable="container-title">
<text variable="container-title" font-style="italic"/>
<choose>
<if type="chapter paper-conference" match="any">
<group delimiter="&#160;" prefix=", ">
<label variable="page" form="short"/>
<text variable="page"/>
</group>
</if>
</choose>
</if>
<else>
<text variable="event" font-style="italic"/>
</else>
</choose>
</else-if>
<else-if type="report">
<choose>
<if variable="author editor translator director" match="any">
<text variable="title" font-style="italic"/>
</if>
<else>
<text variable="number" suffix="&#160;: "/>
<text variable="title" font-style="italic" suffix=", "/>
<text macro="year-date"/>
</else>
</choose>
</else-if>
<else-if type="patent">
<choose>
<if variable="author editor translator director" match="any">
<text variable="title" font-style="italic"/>
</if>
<else>
<text variable="title" suffix=", "/>
<text macro="year-date"/>
</else>
</choose>
</else-if>
<else>
<choose>
<if variable="author editor translator director" match="any">
<text variable="title" font-style="italic"/>
</if>
<else>
<text variable="title" font-style="italic" suffix=", "/>
<text macro="year-date"/>
</else>
</choose>
</else>
</choose>
<choose>
<if variable="DOI version" match="none">
<choose>
<if variable="URL">
<text term="online" prefix=" [" suffix="]"/>
</if>
<else>
<choose>
<if type="broadcast motion_picture song book chapter article-journal article-magazine article-newspaper patent" match="none">
<text value=". "/>
</if>
</choose>
</else>
</choose>
</if>
</choose>
</macro>
<macro name="number">
<text variable="authority" suffix=" "/>
<text variable="number"/>
</macro>
<macro name="medium">
<text variable="medium" prefix=" [" suffix="]"/>
</macro>
<macro name="legislation-number">
<group delimiter=" ">
<text variable="container-title"/>
<text variable="volume"/>
</group>
</macro>
<macro name="genre">
<choose>
<if type="map">
<choose>
<if variable="genre">
<text variable="genre" prefix="[" suffix="]"/>
</if>
<else>
<text value="map" prefix="[" suffix="]"/>
</else>
</choose>
</if>
<else>
<text variable="genre" suffix=" "/>
<text variable="number"/>
</else>
</choose>
</macro>
<macro name="date">
<choose>
<if type="patent">
<text term="patent" text-case="capitalize-first" suffix=" "/>
<text term="special-issue" suffix=" "/>
<date variable="submitted">
<date-part name="day" suffix="&#160;"/>
<date-part name="month" suffix="&#160;"/>
<date-part name="year"/>
</date>
<text term="and" prefix=" " suffix=" "/>
<text term="special-section" suffix=" "/>
<date variable="issued">
<date-part name="day" suffix="&#160;"/>
<date-part name="month" suffix="&#160;"/>
<date-part name="year"/>
</date>
</if>
</choose>
<choose>
<if is-uncertain-date="issued">
<group prefix="[" suffix="]">
<choose>
<if variable="issued">
<date variable="issued">
<date-part name="year" form="long" suffix="?"/>
</date>
</if>
<else>
<text term="no date"/>
</else>
</choose>
</group>
</if>
<else>
<choose>
<if variable="issued">
<date variable="issued">
<date-part name="day" suffix="&#160;"/>
<date-part name="month" suffix="&#160;"/>
<date-part name="year"/>
</date>
</if>
</choose>
</else>
</choose>
</macro>
<macro name="edition">
<text variable="edition" form="long"/>
</macro>
<macro name="publisher-group">
<choose>
<if type="speech" match="any">
<group delimiter=", ">
<text variable="event"/>
<text variable="publisher-place"/>
</group>
</if>
<else>
<group delimiter="&#160;: ">
<text variable="publisher-place"/>
<text variable="publisher"/>
</group>
</else>
</choose>
</macro>
<macro name="issue">
<group delimiter=", ">
<text variable="volume" prefix="Vol.&#160;"/>
<choose>
<if variable="volume">
<group delimiter="&#160;">
<text term="issue" form="short"/>
<text variable="issue"/>
</group>
<group delimiter="&#160;">
<label variable="page" form="short"/>
<text variable="page"/>
</group>
</if>
<else-if variable="issue">
<group delimiter="&#160;">
<text term="issue" form="short" text-case="capitalize-first"/>
<text variable="issue"/>
</group>
<group delimiter="&#160;">
<label variable="page" form="short"/>
<text variable="page"/>
</group>
</else-if>
<else>
<group delimiter="&#160;">
<label variable="page" form="short"/>
<text variable="page"/>
</group>
</else>
</choose>
</group>
</macro>
<macro name="accessed">
<choose>
<if variable="DOI" match="none">
<choose>
<if variable="URL">
<group prefix=" [" suffix="]">
<text term="accessed"/>
<date variable="accessed">
<date-part name="day" prefix=" "/>
<date-part name="month" prefix="&#160;"/>
<date-part name="year" prefix="&#160;"/>
</date>
</group>
</if>
</choose>
</if>
</choose>
</macro>
<macro name="collection">
<group delimiter=", ">
<text variable="collection-title"/>
<text variable="collection-number"/>
</group>
</macro>
<macro name="page">
<text variable="number-of-pages" suffix="&#160;p"/>
</macro>
<macro name="isbn">
<text variable="ISBN" prefix="ISBN&#160;"/>
</macro>
<macro name="doi">
<text variable="DOI" prefix="DOI&#160;"/>
</macro>
<macro name="url">
<choose>
<if variable="DOI" match="none">
<choose>
<if variable="URL">
<group>
<text term="retrieved" suffix=" " text-case="capitalize-first"/>
<text term="from" suffix="&#160;: "/>
<text variable="URL"/>
</group>
</if>
</choose>
</if>
</choose>
</macro>
<citation et-al-min="4" et-al-use-first="1" disambiguate-add-year-suffix="true" disambiguate-add-names="true" disambiguate-add-givenname="true" collapse="year" year-suffix-delimiter=", " after-collapse-delimiter="; ">
<layout prefix="(" suffix=")" delimiter="; ">
<group delimiter=", ">
<group delimiter=" ">
<text macro="author-citation"/>
<text macro="year-date"/>
</group>
<group>
<label variable="locator" suffix=".&#160;" form="short" strip-periods="true"/>
<text variable="locator"/>
</group>
</group>
</layout>
</citation>
<bibliography et-al-min="4" et-al-use-first="1">
<sort>
<key macro="responsability"/>
<key macro="year-date"/>
</sort>
<layout>
<choose>
<if type="book map" match="any">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="edition" suffix=". "/>
<text macro="publisher-group" suffix=". "/>
<text macro="collection" suffix=". "/>
<text macro="isbn" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</if>
<else-if type="article-journal article-magazine" match="any">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="edition" suffix=". "/>
<text macro="issue" suffix=". "/>
<text macro="doi" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</else-if>
<else-if type="article-newspaper">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="edition" suffix=". "/>
<text macro="publisher-group" suffix=", "/>
<text macro="date" suffix=". "/>
<text macro="page" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</else-if>
<else-if type="chapter entry entry-dictionary entry-encyclopedia" match="any">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="edition" suffix=". "/>
<text macro="publisher-group" suffix=". "/>
<text macro="collection" suffix=". "/>
<text macro="isbn" suffix=". "/>
<text macro="doi" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</else-if>
<else-if type="speech">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="genre" suffix=". "/>
<text macro="publisher-group" suffix=". "/>
<text macro="date" suffix=". "/>
<text macro="page" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</else-if>
<else-if type="paper-conference">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="genre" suffix=". "/>
<text macro="publisher-group" suffix=". "/>
<text macro="date" suffix=". "/>
<text macro="page" suffix=". "/>
<text macro="collection" suffix=". "/>
<text macro="isbn" suffix=". "/>
<text macro="doi" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</else-if>
<else-if type="thesis">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="genre" suffix=". "/>
<text macro="publisher-group" suffix=". "/>
<text macro="doi" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</else-if>
<else-if type="post-weblog post webpage" match="any">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="date" suffix=". "/>
<text macro="doi" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</else-if>
<else-if type="broadcast motion_picture song" match="any">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="medium" suffix=". "/>
<text macro="publisher-group" suffix=", "/>
<text macro="date" suffix=". "/>
<text macro="collection" suffix=". "/>
<text macro="isbn" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</else-if>
<else-if type="report">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="publisher-group" suffix=". "/>
<text macro="genre" suffix=". "/>
<text macro="collection" suffix=". "/>
<text macro="doi" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</else-if>
<else-if type="manuscript">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="genre" suffix=". "/>
<text macro="edition" suffix=". "/>
<text macro="publisher-group" suffix=". "/>
<text macro="collection" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</else-if>
<else-if type="patent">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="date" suffix=". "/>
<text macro="publisher-group" suffix=". "/>
<text macro="collection" suffix=". "/>
<text macro="url" suffix=". "/>
<text macro="accessed" suffix=". "/>
<text macro="number" suffix=". "/>
</else-if>
<else-if type="software">
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text variable="version" prefix="Version " suffix=". "/>
<text macro="date" suffix=". "/>
<text macro="publisher-group" suffix=". "/>
<text macro="accessed" suffix=". "/>
<text macro="doi" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</else-if>
<else>
<text macro="responsability" suffix=". "/>
<choose>
<if variable="author editor translator director" match="any">
<text macro="title" suffix=". "/>
</if>
</choose>
<text macro="medium" suffix=". "/>
<text macro="genre" suffix=". "/>
<text variable="authority" suffix=". "/>
<text macro="edition" suffix=". "/>
<text macro="publisher-group" suffix=". "/>
<text macro="number" suffix=". "/>
<text macro="legislation-number" suffix=". "/>
<text macro="collection" suffix=". "/>
<text macro="page" suffix=". "/>
<text macro="isbn" suffix=". "/>
<text macro="doi" suffix=". "/>
<text macro="url"/>
<text macro="accessed" suffix=". "/>
</else>
</choose>
<text variable="note"/>
</layout>
</bibliography>
</style>

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -0,0 +1,155 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="120"
height="42"
id="svg2759"
sodipodi:version="0.32"
inkscape:version="0.45+devel"
version="1.0"
sodipodi:docname="by.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs2761" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#8b8b8b"
borderopacity="1"
gridtolerance="10000"
guidetolerance="10"
objecttolerance="10"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="179"
inkscape:cy="89.569904"
inkscape:document-units="px"
inkscape:current-layer="layer1"
width="120px"
height="42px"
inkscape:showpageshadow="false"
inkscape:window-width="1198"
inkscape:window-height="624"
inkscape:window-x="396"
inkscape:window-y="242" />
<metadata
id="metadata2764">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
transform="matrix(0.9937728,0,0,0.9936696,-177.69267,6.25128e-7)"
id="g260"
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by.png"
inkscape:export-xdpi="300.23013"
inkscape:export-ydpi="300.23013">
<path
id="path3817_1_"
nodetypes="ccccccc"
d="M 181.96579,0.51074 L 296.02975,0.71338 C 297.6235,0.71338 299.04733,0.47705 299.04733,3.89404 L 298.90768,41.46093 L 179.08737,41.46093 L 179.08737,3.75439 C 179.08737,2.06934 179.25046,0.51074 181.96579,0.51074 z"
style="fill:#aab2ab" />
<path
d="M 297.29636,0 L 181.06736,0 C 179.82078,0 178.80613,1.01416 178.80613,2.26074 L 178.80613,41.75732 C 178.80613,42.03906 179.03513,42.26757 179.31687,42.26757 L 299.04734,42.26757 C 299.32908,42.26757 299.55808,42.03905 299.55808,41.75732 L 299.55808,2.26074 C 299.55807,1.01416 298.54343,0 297.29636,0 z M 181.06735,1.02148 L 297.29635,1.02148 C 297.98043,1.02148 298.53658,1.57714 298.53658,2.26074 C 298.53658,2.26074 298.53658,18.20898 298.53658,29.71045 L 215.19234,29.71045 C 212.14742,35.21631 206.28121,38.95459 199.54879,38.95459 C 192.81344,38.95459 186.94869,35.21973 183.90524,29.71045 L 179.8276,29.71045 C 179.8276,18.20899 179.8276,2.26074 179.8276,2.26074 C 179.82761,1.57715 180.38376,1.02148 181.06735,1.02148 z"
id="path263" />
<g
enable-background="new "
id="g265">
<path
d="M 253.07761,32.95605 C 253.39499,32.95605 253.68503,32.98437 253.94773,33.04003 C 254.20945,33.09569 254.43308,33.18749 254.62058,33.31542 C 254.8071,33.44237 254.95261,33.6123 255.05515,33.82323 C 255.15769,34.03514 255.20945,34.29589 255.20945,34.60741 C 255.20945,34.94335 255.13328,35.22264 254.97996,35.44628 C 254.82762,35.67089 254.60105,35.85351 254.30223,35.99706 C 254.71434,36.11522 255.02196,36.32226 255.22508,36.61815 C 255.4282,36.91404 255.52977,37.27049 255.52977,37.68749 C 255.52977,38.02343 255.46434,38.31444 255.33348,38.56054 C 255.20262,38.80566 255.02586,39.00683 254.80516,39.1621 C 254.58348,39.31835 254.33055,39.43358 254.04735,39.5078 C 253.76317,39.583 253.47215,39.6201 253.17235,39.6201 L 249.936,39.6201 L 249.936,32.95604 L 253.07761,32.95604 L 253.07761,32.95605 z M 252.89011,35.65137 C 253.15183,35.65137 253.36667,35.58887 253.53562,35.46485 C 253.70359,35.34083 253.78757,35.13965 253.78757,34.86036 C 253.78757,34.70509 253.75925,34.57716 253.70359,34.47852 C 253.64695,34.37891 253.57273,34.30176 253.47898,34.24512 C 253.38523,34.18946 253.27781,34.15039 253.15671,34.12891 C 253.03561,34.10743 252.90866,34.09668 252.77878,34.09668 L 251.40476,34.09668 L 251.40476,35.65137 L 252.89011,35.65137 z M 252.97604,38.47949 C 253.11959,38.47949 253.25631,38.46582 253.38717,38.4375 C 253.51803,38.40918 253.63326,38.3623 253.73385,38.29785 C 253.83346,38.23242 253.91256,38.14355 253.97213,38.03125 C 254.0317,37.91992 254.061,37.77637 254.061,37.60254 C 254.061,37.26074 253.96432,37.0166 253.77096,36.87012 C 253.5776,36.72461 253.32174,36.65137 253.00436,36.65137 L 251.40475,36.65137 L 251.40475,38.47949 L 252.97604,38.47949 z"
id="path267"
style="fill:#ffffff" />
<path
d="M 255.78854,32.95605 L 257.43209,32.95605 L 258.99264,35.58789 L 260.54342,32.95605 L 262.17721,32.95605 L 259.70358,37.0625 L 259.70358,39.62012 L 258.23483,39.62012 L 258.23483,37.02539 L 255.78854,32.95605 z"
id="path269"
style="fill:#ffffff" />
</g>
<g
id="g5908_1_"
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
<path
id="path5906_1_"
cx="296.35416"
ry="22.939548"
cy="264.3577"
type="arc"
rx="22.939548"
d="M 186.90065,-141.46002 C 186.90623,-132.77923 179.87279,-125.73852 171.19257,-125.73291 C 162.51235,-125.72736 155.47051,-132.76025 155.46547,-141.44098 C 155.46547,-141.44714 155.46547,-141.45331 155.46547,-141.46002 C 155.46043,-150.14081 162.49333,-157.18152 171.17355,-157.18658 C 179.8549,-157.19213 186.89561,-150.15924 186.90065,-141.47845 C 186.90065,-141.4729 186.90065,-141.46619 186.90065,-141.46002 z"
style="fill:#ffffff" />
<g
id="g5706_1_"
transform="translate(-289.6157,99.0653)">
<path
id="path5708_1_"
d="M 473.57574,-253.32751 C 477.06115,-249.8421 478.80413,-245.5736 478.80413,-240.52532 C 478.80413,-235.47594 477.09136,-231.25329 473.66582,-227.85741 C 470.03051,-224.28081 465.734,-222.49309 460.77635,-222.49309 C 455.87858,-222.49309 451.65648,-224.26628 448.11122,-227.81261 C 444.56541,-231.35845 442.79277,-235.59563 442.79277,-240.52532 C 442.79277,-245.45391 444.56541,-249.7213 448.11122,-253.32751 C 451.56642,-256.81402 455.7885,-258.557 460.77635,-258.557 C 465.82465,-258.55701 470.09039,-256.81403 473.57574,-253.32751 z M 450.45776,-250.98267 C 447.51104,-248.00629 446.03823,-244.51978 446.03823,-240.52033 C 446.03823,-236.52198 447.49651,-233.06507 450.41247,-230.14966 C 453.32897,-227.23316 456.80096,-225.77545 460.82952,-225.77545 C 464.85808,-225.77545 468.35967,-227.24768 471.33605,-230.19385 C 474.16198,-232.9303 475.57549,-236.37091 475.57549,-240.52033 C 475.57549,-244.63837 474.13903,-248.13379 471.26781,-251.00501 C 468.39714,-253.87568 464.9179,-255.31159 460.82952,-255.31159 C 456.74112,-255.31158 453.28314,-253.86841 450.45776,-250.98267 z M 458.21225,-242.27948 C 457.76196,-243.26117 457.08795,-243.75232 456.18903,-243.75232 C 454.59986,-243.75232 453.80558,-242.68225 453.80558,-240.54321 C 453.80558,-238.40368 454.59986,-237.33471 456.18903,-237.33471 C 457.23841,-237.33471 457.98795,-237.85546 458.43769,-238.89922 L 460.64045,-237.72625 C 459.59052,-235.86077 458.01536,-234.92779 455.91496,-234.92779 C 454.29506,-234.92779 452.99733,-235.42449 452.0229,-236.4168 C 451.0468,-237.41021 450.56016,-238.77953 450.56016,-240.52532 C 450.56016,-242.24035 451.06245,-243.60186 452.06764,-244.61034 C 453.07283,-245.61888 454.32466,-246.12291 455.82545,-246.12291 C 458.04557,-246.12291 459.63526,-245.24803 460.59626,-243.50005 L 458.21225,-242.27948 z M 468.57562,-242.27948 C 468.12475,-243.26117 467.46417,-243.75232 466.5932,-243.75232 C 464.97217,-243.75232 464.16107,-242.68225 464.16107,-240.54321 C 464.16107,-238.40368 464.97217,-237.33471 466.5932,-237.33471 C 467.64429,-237.33471 468.38037,-237.85546 468.80048,-238.89922 L 471.05249,-237.72625 C 470.00421,-235.86077 468.43127,-234.92779 466.33478,-234.92779 C 464.7171,-234.92779 463.42218,-235.42449 462.44831,-236.4168 C 461.47614,-237.41021 460.98896,-238.77953 460.98896,-240.52532 C 460.98896,-242.24035 461.48341,-243.60186 462.47181,-244.61034 C 463.45966,-245.61888 464.71711,-246.12291 466.24531,-246.12291 C 468.4615,-246.12291 470.04896,-245.24803 471.0066,-243.50005 L 468.57562,-242.27948 z" />
</g>
</g>
<g
id="g275">
<circle
cx="255.55124"
cy="15.31348"
r="10.80664"
id="circle277"
sodipodi:cx="255.55124"
sodipodi:cy="15.31348"
sodipodi:rx="10.80664"
sodipodi:ry="10.80664"
style="fill:#ffffff" />
<g
id="g279">
<path
d="M 258.67819,12.18701 C 258.67819,11.77051 258.3403,11.4331 257.92526,11.4331 L 253.15182,11.4331 C 252.73678,11.4331 252.39889,11.7705 252.39889,12.18701 L 252.39889,16.95996 L 253.72994,16.95996 L 253.72994,22.61182 L 257.34713,22.61182 L 257.34713,16.95996 L 258.67818,16.95996 L 258.67818,12.18701 L 258.67819,12.18701 z"
id="path281" />
<circle
cx="255.53854"
cy="9.1723604"
r="1.63281"
id="circle283"
sodipodi:cx="255.53854"
sodipodi:cy="9.1723604"
sodipodi:rx="1.63281"
sodipodi:ry="1.63281" />
</g>
<path
clip-rule="evenodd"
d="M 255.5239,3.40723 C 252.29148,3.40723 249.55515,4.53516 247.31589,6.79102 C 245.01804,9.12452 243.8696,11.88672 243.8696,15.07569 C 243.8696,18.26466 245.01804,21.00733 247.31589,23.30225 C 249.61374,25.59668 252.35007,26.74414 255.5239,26.74414 C 258.73679,26.74414 261.52195,25.58789 263.87742,23.27295 C 266.09715,21.07568 267.2075,18.34326 267.2075,15.07568 C 267.2075,11.8081 266.07762,9.04687 263.8198,6.79101 C 261.56003,4.53516 258.79538,3.40723 255.5239,3.40723 z M 255.55319,5.50684 C 258.20163,5.50684 260.45065,6.44092 262.30026,8.30811 C 264.1694,10.15528 265.10397,12.41114 265.10397,15.07569 C 265.10397,17.75928 264.18893,19.98633 262.35885,21.75587 C 260.43014,23.66212 258.16256,24.61476 255.55319,24.61476 C 252.94284,24.61476 250.69381,23.67189 248.80612,21.78517 C 246.91647,19.89845 245.97311,17.66212 245.97311,15.0757 C 245.97311,12.48879 246.92721,10.23341 248.83541,8.30812 C 250.6655,6.44092 252.90475,5.50684 255.55319,5.50684 z"
id="path285"
style="fill-rule:evenodd" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,5 @@
[
{"id":"Markdown2025","abstract":"Markdown est un langage de balisage léger créé en 2004 par John Gruber, avec l'aide d'Aaron Swartz,, avec l'objectif d'offrir une syntaxe, facile à lire et à écrire, en l'état, sans formatage.\nMarkdown est principalement utilisé dans des blogs, des sites de messagerie instantanée, des forums et des pages de documentation de logiciels. Depuis quelques années, Markdown est utilisé par la communauté scientifique,,, en lien avec la Science ouverte.\nUn document balisé par Markdown peut être converti en HTML, en PDF ou en d'autres formats. Bien que la syntaxe Markdown ait été influencée par plusieurs filtres de conversion de texte existants vers HTML — dont Setext, atx, Textile, reStructuredText, Grutatext et EtText —, la source dinspiration principale du Markdown est le format du courrier électronique en mode texte.","accessed":{"date-parts":[["2025",6,11]]},"citation-key":"Markdown2025","container-title":"Wikipédia","issued":{"date-parts":[["2025",6,6]]},"language":"fr","license":"Creative Commons Attribution-ShareAlike License","note":"Page Version ID: 226296660","source":"Wikipedia","title":"Markdown","type":"entry-encyclopedia","URL":"https://fr.wikipedia.org/w/index.php?title=Markdown&oldid=226296660"},
{"id":"ovadiaMarkdownLibrariansAcademics2014","accessed":{"date-parts":[["2023",5,2]]},"author":[{"family":"Ovadia","given":"Steven"}],"citation-key":"ovadiaMarkdownLibrariansAcademics2014","container-title":"Behavioral & Social Sciences Librarian","container-title-short":"Behavioral & Social Sciences Librarian","DOI":"10.1080/01639269.2014.904696","ISSN":"0163-9269, 1544-4546","issue":"2","issued":{"date-parts":[["2014"]]},"language":"en","page":"120-124","source":"DOI.org (Crossref)","title":"Markdown for Librarians and Academics","type":"article-journal","URL":"http://www.tandfonline.com/doi/abs/10.1080/01639269.2014.904696","volume":"33"},
{"id":"pochetMarkdownVous2023","accessed":{"date-parts":[["2025",6,11]]},"author":[{"family":"Pochet","given":"Bernard"}],"citation-key":"pochetMarkdownVous2023","DOI":"10.25518/978-2-87019-318-1","event-place":"Liège","ISBN":"978-2-87019-318-1","issued":{"date-parts":[["2023"]]},"language":"fr","publisher":"ULiège Library","publisher-place":"Liège","source":"e-publish.uliege.be","title":"Markdown & vous","type":"book","URL":"https://e-publish.uliege.be/md/"}
]

View File

@ -0,0 +1,330 @@
<!DOCTYPE html>
<html$if(lang)$ lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$>
<head>
<meta charset="utf-8">
<meta name="generator" content="pandoc">
$for(author-meta)$
<meta name="author" content="$author-meta$">
$endfor$
$if(date-meta)$
<meta name="dcterms.date" content="$date-meta$">
$endif$
$if(keywords)$
<meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$">
$endif$
<title>$if(title-prefix)$$title-prefix$ $endif$$pagetitle$</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="$revealjs-url$/dist/reset.css">
<link rel="stylesheet" href="$revealjs-url$/dist/reveal.css">
<style>
.reveal .sourceCode { /* see #7635 */
overflow: visible;
}
$styles.html()$
</style>
$for(css)$
<link rel="stylesheet" href="$css$"/>
$endfor$
$if(math)$
$math$
$endif$
$for(header-includes)$
$header-includes$
$endfor$
</head>
<body>
$for(include-before)$
$include-before$
$endfor$
<div class="reveal">
<div class="slides">
$if(title)$
<section id="$idprefix$title-slide"$for(title-slide-attributes/pairs)$ $it.key$="$it.value$"$endfor$>
<h1 class="title">$title$</h1>
$if(subtitle)$
<h2 class="subtitle">$subtitle$</h2>
$endif$
<ul class="bunige-author bunige-list-inline">
$for(author)$
$if(author.email)$
<li><a href="mailto:$author.email$">$author.name$</a></li>
$else$
<li>$author.name$</li>
$endif$
$endfor$
$if(place)$
<li>$place$,
$else$
<li>
$endif$
$if(date)$
<time>$date$</time></li>
$endif$
$for(licence)$
$if(licence)$
<li><a href="$licence.url$">$licence.type$</a></li>
$endif$
$endfor$
$if(source)$
<li><a href="$source$" title="Sources de la présentation">source</a></li>
$endif$
</ul>
</section>
$endif$
$if(toc)$
<section id="$idprefix$TOC">
<nav role="doc-toc">
$if(toc-title)$
<h2 id="$idprefix$toc-title">$toc-title$</h2>
$endif$
$table-of-contents$
</nav>
</section>
$endif$
$body$
</div>
</div>
<script src="$revealjs-url$/dist/reveal.js"></script>
<!-- reveal.js plugins -->
<script src="$revealjs-url$/dist/plugin/notes.js"></script>
<script src="$revealjs-url$/dist/plugin/search.js"></script>
<script src="$revealjs-url$/dist/plugin/zoom.js"></script>
$if(mathjax)$
<script src="$revealjs-url$/dist/plugin/math.js"></script>
$endif$
<script>
// Full list of configuration options available at:
// https://revealjs.com/config/
Reveal.initialize({
// Display controls in the bottom right corner
controls: $controls$,
// Help the user learn the controls by providing hints, for example by
// bouncing the down arrow when they first encounter a vertical slide
controlsTutorial: $controlsTutorial$,
// Determines where controls appear, "edges" or "bottom-right"
controlsLayout: '$controlsLayout$',
// Visibility rule for backwards navigation arrows; "faded", "hidden"
// or "visible"
controlsBackArrows: '$controlsBackArrows$',
// Display a presentation progress bar
progress: $progress$,
// Display the page number of the current slide
slideNumber: $slideNumber$,
// 'all', 'print', or 'speaker'
showSlideNumber: '$showSlideNumber$',
// Add the current slide number to the URL hash so that reloading the
// page/copying the URL will return you to the same slide
hash: $hash$,
// Start with 1 for the hash rather than 0
hashOneBasedIndex: $hashOneBasedIndex$,
// Flags if we should monitor the hash and change slides accordingly
respondToHashChanges: $respondToHashChanges$,
// Push each slide change to the browser history
history: $history$,
// Enable keyboard shortcuts for navigation
keyboard: $keyboard$,
// Enable the slide overview mode
overview: $overview$,
// Disables the default reveal.js slide layout (scaling and centering)
// so that you can use custom CSS layout
disableLayout: $disableLayout$,
// Vertical centering of slides
center: $center$,
// Enables touch navigation on devices with touch input
touch: $touch$,
// Loop the presentation
loop: $loop$,
// Change the presentation direction to be RTL
rtl: $rtl$,
// see https://revealjs.com/vertical-slides/#navigation-mode
navigationMode: '$navigationMode$',
// Randomizes the order of slides each time the presentation loads
shuffle: $shuffle$,
// Turns fragments on and off globally
fragments: $fragments$,
// Flags whether to include the current fragment in the URL,
// so that reloading brings you to the same fragment position
fragmentInURL: $fragmentInURL$,
// Flags if the presentation is running in an embedded mode,
// i.e. contained within a limited portion of the screen
embedded: $embedded$,
// Flags if we should show a help overlay when the questionmark
// key is pressed
help: $help$,
// Flags if it should be possible to pause the presentation (blackout)
pause: $pause$,
// Flags if speaker notes should be visible to all viewers
showNotes: $showNotes$,
// Global override for autoplaying embedded media (null/true/false)
autoPlayMedia: $autoPlayMedia$,
// Global override for preloading lazy-loaded iframes (null/true/false)
preloadIframes: $preloadIframes$,
// Number of milliseconds between automatically proceeding to the
// next slide, disabled when set to 0, this value can be overwritten
// by using a data-autoslide attribute on your slides
autoSlide: $autoSlide$,
// Stop auto-sliding after user input
autoSlideStoppable: $autoSlideStoppable$,
// Use this method for navigation when auto-sliding
autoSlideMethod: $autoSlideMethod$,
// Specify the average time in seconds that you think you will spend
// presenting each slide. This is used to show a pacing timer in the
// speaker view
defaultTiming: $defaultTiming$,
// Enable slide navigation via mouse wheel
mouseWheel: $mouseWheel$,
// The display mode that will be used to show slides
display: '$display$',
// Hide cursor if inactive
hideInactiveCursor: $hideInactiveCursor$,
// Time before the cursor is hidden (in ms)
hideCursorTime: $hideCursorTime$,
// Opens links in an iframe preview overlay
previewLinks: $previewLinks$,
// Transition style (none/fade/slide/convex/concave/zoom)
transition: '$transition$',
// Transition speed (default/fast/slow)
transitionSpeed: '$transitionSpeed$',
// Transition style for full page slide backgrounds
// (none/fade/slide/convex/concave/zoom)
backgroundTransition: '$backgroundTransition$',
// Number of slides away from the current that are visible
viewDistance: $viewDistance$,
// Number of slides away from the current that are visible on mobile
// devices. It is advisable to set this to a lower number than
// viewDistance in order to save resources.
mobileViewDistance: $mobileViewDistance$,
$if(parallaxBackgroundImage)$
// Parallax background image
parallaxBackgroundImage: '$parallaxBackgroundImage/nowrap$', // e.g. "'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'"
$else$
$if(background-image)$
// Parallax background image
parallaxBackgroundImage: '$background-image/nowrap$', // e.g. "'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'"
$endif$
$endif$
$if(parallaxBackgroundSize)$
// Parallax background size
parallaxBackgroundSize: '$parallaxBackgroundSize/nowrap$', // CSS syntax, e.g. "2100px 900px"
$endif$
$if(parallaxBackgroundHorizontal)$
// Amount to move parallax background (horizontal and vertical) on slide change
// Number, e.g. 100
parallaxBackgroundHorizontal: $parallaxBackgroundHorizontal/nowrap$,
$endif$
$if(parallaxBackgroundVertical)$
parallaxBackgroundVertical: $parallaxBackgroundVertical/nowrap$,
$endif$
$if(width)$
// The "normal" size of the presentation, aspect ratio will be preserved
// when the presentation is scaled to fit different resolutions. Can be
// specified using percentage units.
width: $width$,
$endif$
$if(height)$
height: $height$,
$endif$
$if(margin)$
// Factor of the display size that should remain empty around the content
margin: $margin$,
$endif$
$if(minScale)$
// Bounds for smallest/largest possible scale to apply to content
minScale: $minScale$,
$endif$
$if(pdfSeparateFragments)$
pdfSeparateFragments: $pdfSeparateFragments$,
$endif$
$if(maxScale)$
maxScale: $maxScale$,
$endif$
$if(mathjax)$
math: {
mathjax: '$mathjaxurl$',
config: 'TeX-AMS_HTML-full',
tex2jax: {
inlineMath: [['\(','\\)']],
displayMath: [['\[','\\]']],
balanceBraces: true,
processEscapes: false,
processRefs: true,
processEnvironments: true,
preview: 'TeX',
skipTags: ['script','noscript','style','textarea','pre','code'],
ignoreClass: 'tex2jax_ignore',
processClass: 'tex2jax_process'
},
},
$endif$
// reveal.js plugins
plugins: [
$if(mathjax)$
RevealMath,
$endif$
RevealNotes,
RevealSearch,
RevealZoom
]
});
</script>
$for(include-after)$
$include-after$
$endfor$
</body>
</html>