version avec pdf

This commit is contained in:
François Pelletier 2023-11-27 22:56:57 -05:00
parent 5ca21d6284
commit a1332e6f63
28 changed files with 832 additions and 25 deletions

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.3 KiB

BIN
Principes FAIR.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View file

@ -25,9 +25,9 @@ Rendre les données de recherche réutilisables par les individus et les machine
## Données massives ## Données massives
![- Volume - Variété - Vélocité - Véracité - Valeur](donnees-massives.drawio.svg "Les 5 V des données massives"){ height=512px }\ ![- Volume - Variété - Vélocité - Véracité - Valeur](donnees-massives.png "Les 5 V des données massives"){ height=640px }\
## Complexité des données ## Complexité des données
- Multidisciplinaires - Multidisciplinaires
- Méthodes et instruments complexes - Méthodes et instruments complexes
@ -68,7 +68,7 @@ Rendre les données de recherche réutilisables par les individus et les machine
## Que signifie FAIR ? ## Que signifie FAIR ?
![Findable, Accessible, Interoperable, Reusable dans un diagramme de Venn. L'intersection est FAIR](Principes%20FAIR.drawio.svg){ height=512px }\ ![Findable, Accessible, Interoperable, Reusable dans un diagramme de Venn. L'intersection est FAIR](Principes FAIR.png "Principes FAIR"){ height=640px }\
## Définitions formelles ## Définitions formelles
@ -171,7 +171,7 @@ Tous les actifs numériques produits par des activités de recherche
## Interoperable ## Interoperable
![langfr-800px-Taxonomic_hierarchy.svg.png](langfr-800px-Taxonomic_hierarchy.svg.png){ height=512px }\ ![langfr-800px-Taxonomic_hierarchy.svg.png](langfr-800px-Taxonomic_hierarchy.svg.png){ height=640px }\
## Interoperable ## Interoperable
@ -242,7 +242,7 @@ Tous les actifs numériques produits par des activités de recherche
## Cycle de vie ## Cycle de vie
![Génération, Collecte, Traitement, Entreposage, Gestion, Analyse, Visualisation, Interprétation](Cycle%20de%20vie%20des%20donn%C3%A9es.drawio.svg "Cycle de vie des données"){ height=512px }\ ![Génération, Collecte, Traitement, Entreposage, Gestion, Analyse, Visualisation, Interprétation](Cycle de vie des données.png "Cycle de vie des données"){ height=640px }\
## Cycle de vie ## Cycle de vie
@ -268,6 +268,8 @@ Tous les actifs numériques produits par des activités de recherche
## Licence ## Licence
Les principes FAIR (c) par François Pelletier Les principes FAIR (c) par François Pelletier
[francois.pelletier.6@ulaval.ca](mailto:francois.pelletier.6@ulaval.ca)
Les principes FAIR est disponible sous la licence Creative Commons Attribution 4.0 International License. Vous devriez avoir reçu une copie de la licence avec cette oeuvre. Sinon, voir <https://creativecommons.org/licenses/by/4.0/>. Les principes FAIR est disponible sous la licence Creative Commons Attribution 4.0 International License. Vous devriez avoir reçu une copie de la licence avec cette oeuvre. Sinon, voir <https://creativecommons.org/licenses/by/4.0/>.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 191 KiB

BIN
bg-slide.pdf Normal file

Binary file not shown.

View file

@ -1 +1,18 @@
pandoc -i -t revealjs -s -V theme=simple -V transition=none -o ulaval-ppr-principes-fair.html README.md pandoc -i -t revealjs -s -V theme=simple -V transition=none -o ulaval-ppr-principes-fair.html README.md
cat README.md | python extract_emojis.py > README_emojis.md
pandoc -s \
--include-in-header=header.tex \
--pdf-engine=lualatex \
-f markdown+implicit_figures+smart+emoji \
-L latex-emoji.lua \
-o ulaval-ppr-principes-fair.pdf \
-V 'fontsize=14pt' \
--dpi=300 \
-V 'geometry:paperwidth=6.4in' \
-V 'geometry:paperheight=3.6in' \
-V 'geometry:left=1in' \
-V 'geometry:right=1in' \
-V 'geometry:top=0.6in' \
-V 'geometry:bottom=0.6in' \
README_emojis.md
rm README_emojis.md

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 9.9 KiB

BIN
donnees-massives.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

54
extract_emojis.py Normal file
View file

@ -0,0 +1,54 @@
"""
Fabrique à documents
Copyright (C) 2023 François Pelletier
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import emoji
import sys
def replace_emojis(input_text):
'''
Replaces emojis in text with a custom LaTeX sequence.
:param input_text:
:return:
'''
for char in input_text:
if emoji.is_emoji(char):
input_text = input_text.replace(char, f"\\emoji{{{char}}}")
return input_text
def main():
if len(sys.argv) > 1:
try:
f = open(sys.argv[1], 'r')
except IOError:
print >> sys.stderr, 'Error opening %s\n' % sys.argv[1]
sys.exit(1)
else:
f = sys.stdin
file_lines = f.read()
# Apply replace_emojis function
processed_text = replace_emojis(file_lines)
# Print the result to standard output
print(processed_text)
if __name__ == "__main__":
main()

Binary file not shown.

View file

@ -0,0 +1,41 @@
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.

Binary file not shown.

93
font/SourceCodePro/LICENSE.txt Executable file
View file

@ -0,0 +1,93 @@
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.

72
font/SourceCodePro/ReadMe.html Executable file
View file

@ -0,0 +1,72 @@
<!DOCTYPE html>
<html>
<head>
<title>Read Me File for Adobe® OpenType® Fonts</title>
<meta charset="utf-8" />
</head>
<body bgcolor="white" link="#ce0000" alink="#ce0000" vlink="#9c6363">
<h2><font color="#333333"
face="verdana,geneva,arial">Adobe&reg; OpenType&reg; Fonts</font></h2>
<p><font size="2" face="verdana,geneva,arial">Thank
you for licensing Adobe OpenType fonts. In order to ensure that you
have the most up-to-date product information, Adobe has posted <a
href="http://www.adobe.com/type/browser/OTReadMe.html">an OpenType
Read Me file</a> on the Adobe web site that contains information such
as minimum system requirements, technical support contact information
and software installation notes. We have also posted <a
href="http://www.adobe.com/type/browser/pdfs/OTGuide.pdf">an OpenType
User's Guide</a> in PDF format on the Adobe web site that can be
viewed online and downloaded to your computer. <P>If you have
licensed an Adobe OpenType Pro font, there may be additional PDF
documents, such as a specimen book, a glyph complement showing, and a
typeface-specific Read Me file, available on the typeface&#146;s
product pages on the Adobe web site. These additional files may be
viewed online or downloaded to your computer.<P>To get you started
quickly, below are links to localized installation instructions for
your fonts.
<h4>Installation Instructions</h4><hr>
<p lang=en><b>English</b><br>
Instructions for installing this font can be found online at <a
href="http://www.adobe.com/type/browser/fontinstall/instructions_main.html">http://www.adobe.com/type/browser/fontinstall/instructions_main.html</a>.</p>
<p lang=fr><b>French / Fran&#231;ais</b><br>
Le mode d'installation de cette police de caract&#232;re se trouve en
ligne &#224; <a
href="http://www.adobe.com/type/browser/fontinstall/instructions_main.html">http://www.adobe.com/type/browser/fontinstall/instructions_main.html</a>.</p>
<p lang=de><b>German / Deutsch</b><br>
Die Anweisungen zur Installation dieser Schriftart finden Sie online
unter <a
href="http://www.adobe.com/type/browser/fontinstall/instructions_main.html">http://www.adobe.com/type/browser/fontinstall/instructions_main.html</a>.</p>
<p lang=it><b>Italian / Italiano</b><br>
Le istruzioni per l'installazione di questo font sono disponibili
online all'indirizzo <a
href="http://www.adobe.com/type/browser/fontinstall/instructions_main.html">http://www.adobe.com/type/browser/fontinstall/instructions_main.html</a>.</p>
<p lang=es><b>Spanish / Espa&#241;ol</b><br>
Las instrucciones para instalar esta fuente se pueden encontrar
online en <a
href="http://www.adobe.com/type/browser/fontinstall/instructions_main.html">http://www.adobe.com/type/browser/fontinstall/instructions_main.html</a>.</p>
<p lang=nl><b>Dutch / Hollands</b><br>
De instructies voor de installatie van dit lettertype vindt u op <a
href="http://www.adobe.com/type/browser/fontinstall/instructions_main.html">http://www.adobe.com/type/browser/fontinstall/instructions_main.html</a>.</p>
<p><b>Swedish / Svenska</b><br>
Anvisningar f&#246;r hur det h&#228;r teckensnittet installeras finns
online p&#229; <a
href="http://www.adobe.com/type/browser/fontinstall/instructions_main.html">http://www.adobe.com/type/browser/fontinstall/instructions_main.html</a>.</p>
<p><b>Norwegian / Norsk</b><br>
Instruksjoner for installering av skrifttypen finnes online p&#229;
<a
href="http://www.adobe.com/type/browser/fontinstall/instructions_main.html">http://www.adobe.com/type/browser/fontinstall/instructions_main.html</a>.</p>
<p><b>Finnish / Suomi</b><br>
Ohjeet t&#228;m&#228;n fontin asentamiseen l&#246;ytyv&#228;t
osoitteesta <a
href="http://www.adobe.com/type/browser/fontinstall/instructions_main.html">http://www.adobe.com/type/browser/fontinstall/instructions_main.html</a>.</p>
<p><b>Danish / Dansk</b><br>
Du finder en vejledning i installation af denne skrifttype online
p&#229; adressen <a
href="http://www.adobe.com/type/browser/fontinstall/instructions_main.html">http://www.adobe.com/type/browser/fontinstall/instructions_main.html</a>.</p>
<p lang=ja><b>Japanese / 日本語</b><br>
このフォントをインストールする手順は、オンラインで <a
href="http://www.adobe.com/type/browser/fontinstall/instructions_main.html">http://www.adobe.com/type/browser/fontinstall/instructions_main.html</a>
を参照してください。</p>
</body>
</html>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,230 @@
<!DOCTYPE html>
<html>
<head>
<title>Read Me File for Source Code Pro</title>
<meta charset="utf-8" />
<meta name="description" content= "Read Me file for Source Code Pro ... " />
<title>Read Me</title>
<style type="text/css" media="screen">
/*********************** fonts ************************/
body
{font-family: sans-serif;
font-weight: normal;
font-size: 10pt;
color: #000000;
margin: 0px;
background-color: white;}
h1
{display:inline;
font-family: sans-serif;
font-weight: normal;
color: #999999;}
h2
{display:inline;
font-size: 10pt;
font-family: sans-serif;
font-weight: bold;
color: #666666;}
/*********************** links ************************/
a:link
{color:#004477;
text-decoration:none;
margin: 0px 0px 0px 0px;}
a:visited
{color:#6d7f8e;
text-decoration:none;
margin: 0px 0px 0px 0px;}
a:hover
{color:#ff0000;
text-decoration:none;
margin: 0px 0px 0px 0px;}
/*********************** div tags ************************/
#page
{float:left;
width:700px;
margin:20px 20px 20px 20px;}
#subTitle
{background-color:#e3e3e3;
float:left;
width:700px;
border-bottom:solid #999999 1.0pt;
border-bottom-alt:solid #999999 .5pt;
padding:2px 0px 4px 0px;}
#title
{background-color:#e3e3e3;
float:left;
width:700px;
border-bottom:solid #999999 1.0pt;
border-bottom-alt:solid #999999 .5pt;
padding:2px 0px 4px 0px;}
#description
{float:left;
width:700px;
padding:15px 0px 15px 0px;}
.style6 {color: #666666}
.style7 {color: #FF0000}
</style>
</head>
<body>
<div id="page">
<h1><span style="font-size:16pt">Source&#153; Code Pro</span></h1>
<br />
<div id="description1">
<p> This document contains late-breaking product information, updates, and troubleshooting tips.<br />
<br />
<a href="#A1">Minimum system requirements</a> <br />
<a href="#A7">Font installation</a> <br />
<a href="#A2">Family information</a> <br />
<a href="#A3">Release Notes</a><br />
<a href="#A8">Known issues</a> <br />
<a href="#A9">Customer care</a> <br />
<a href="#A10">Other resources</a> <br />
<a href="#A12"></a><br />
</p>
</div>
<div id="title"><a name="A1" id="A1"></a><h2 class="style6">Minimum system requirements</h2>
</div>
<div id="description2">
<p>Windows&reg;</p>
<ul>
<li> Intel&reg; Pentium,&reg; Intel Centrino,&reg; Intel Xeon,&reg; or Intel Core&trade; Duo processor</li>
<li>Microsoft Windows 2000, Windows XP, Windows Vista&trade;, or Windows 7<br />
</li>
<li>16 MB of RAM (32 MB recommended)</li>
<li>Note:
Fonts from Font Folio 11 may also be installed under Microsoft Windows 98, Windows Millennium Edition,
and Windows NT&reg; 4.0 with Service Pack 4 if you install Adobe Type Manager&reg; (ATM&trade;) Light
4.1 on your system. If using a PostScript&reg; printer on Windows 98/ME, AdobePS&trade; printer
driver 4.3 or later is recommended. If using a PostScript printer
on Windows NT 4.0, AdobePS printer driver 5.1.2 or later is recommended.</li>
</ul>
<p>Macintosh</p>
<ul>
<li> PowerPC&reg; G4 or G5 or multicore Intel processor</li>
<li>Mac OS X</li>
<li>16 MB of RAM (32 MB recommended)</li>
<li>If using a PostScript printer, the latest AdobePS printer driver is recommended.</li>
<li>Note: Fonts from Font Folio 11 may be installed under Mac OS 8.6 through 9.2 with ATM Light 4.6,
and under Classic mode in Mac OS X with ATM Light 4.6.2.</li>
</ul>
</div>
<div id="title3"><h2><a name="A7" id="A7">Font installation</a></h2></div>
<div id="description3">
<p>For information on installing these fonts, see<span class="style7"> <a title="http://www.adobe.com/go/learn_fontinstall_en" href="http://www.adobe.com/go/learn_fontinstall_en">http://www.adobe.com/go/learn_fontinstall_en</a>.</span></p>
</div>
<div id="title4"><h2><a name="A2" id="A2">Family information</a></h2></div>
<div id="description4">
<p><strong>History</strong></p>
Source Code Pro was designed by Paul D. Hunt as a companion to Source Sans. This complementary family was adapted from the Source design due to a request to create a monospaced version for coding applications. Source Code preserves the design features and vertical proportions of Source Sans, but alters the glyph widths so that they are uniform across all glyphs and weights. Although this family was designed specifically for coding environments, for which a regular weight will typically suffice, Source Code has been made available in the same weight range as the corresponding Source Sans design.<br><br>Source Code Pro currently supports a wide range of languages using the Latin script, and includes all the characters in the Adobe Latin 4 glyph set. As an open source project, it is expected that incremental updates will be made over time to extend glyph set coverage and functionality. Future releases are expected to add support for Greek and Cyrillic scripts, italics, and other features documented on the project page at <A HREF="http://sourceforge.net/adobe/sourcesans/wiki/Home/">Open@Adobe</A>, which is hosted by SourceForge.net®. If you are interested in contributing to this open source project, please visit this project page for information on how to become involved. Source Code Pro can be adapted and redistributed according to the terms of the <A HREF="http://www.adobe.com/type/browser/legal/pdfs/OpenFontLicense.pdf">Open Font License (OFL) agreement</A>.
<p><strong>Menu Names And Style Linking</strong> </p>
<p>In many Windows&reg; applications, instead of every font appearing on
the menu, fonts are grouped into style-linked sets, and only the name of
the base style font for a set is shown in the menu. The italic and the
bold weight fonts of the set (if any) are not shown in the font menu, but can still be
accessed by selecting the base style font, and then using the italic
and bold style buttons. In this family, such programs will show only the
following base style font names in the menu:</p>
<p>Source Code Pro<br>
Source Code Pro Black<br>
Source Code Pro ExtraLight<br>
Source Code Pro Light<br>
Source Code Pro Semibold<br></p>
<p>The other fonts in this family must be selected by choosing a menu name
and then a style option following the guide below.</p>
<table border="0">
<tr> <td>Menu Name</td> <td> </td> <td>plus Style Option... </td> <td> </td> <td>selects this font</td> </tr>
<tr> <td>Source Code Pro</td> <td> </td> <td>[none]</td> <td> </td> <td>Source Code Pro Regular</td> </tr>
<tr> <td>Source Code Pro</td> <td> </td> <td>Bold</td> <td> </td> <td>Source Code Pro Bold</td> </tr>
<tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr>
<tr> <td>Source Code Pro ExtraLight</td> <td> </td> <td>[none]</td> <td> </td> <td>Source Code Pro ExtraLight</td> </tr>
<tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr>
<tr> <td>Source Code Pro Light</td> <td> </td> <td>[none]</td> <td> </td> <td>Source Code Pro Light</td> </tr>
<tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr>
<tr> <td>Source Code Pro Semibold</td> <td> </td> <td>[none]</td> <td> </td> <td>Source Code Pro Semibold</td> </tr>
<tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr>
<tr> <td>Source Code Pro Black</td> <td> </td> <td>[none]</td> <td> </td> <td>Source Code Pro Black</td> </tr>
<tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr>
</table>
<p>On the Mac OS, although each font appears as a separate entry on the
font menu, users may also select fonts by means of style links.
Selecting a base style font and then using the style links (as described
above for Windows) enhances cross-platform document compatibility with
many applications, such as Microsoft&reg; Word and Adobe PageMaker&reg;,
although it is unnecessary with more sophisticated Adobe applications
such as recent versions of Illustrator&reg;, Photoshop&reg; or
InDesign&reg;.</p>
<p>One should not, however, select a base font which has no style-linked
variant, and then use the bold or italic styling button. Doing so will
either have no effect, or result in programmatic bolding or slanting of
the base font, which will usually produce inferior screen and print
results.</p>
</div>
<div id="title5"><h2><a name="A3" id="A3">Release Notes</a></h2></div>
<div id="description5">
<p>For all fonts of family Source Code Pro : version 1.009 created on Thu Sep 20 16:40:47 2012.</p>
<p>version 1.009 created 2012/09/20</p>
<ul>
<li> First release.</li>
</ul>
</div>
<div id="title6"><h2><a name="A8" id="A8">Known issues</a></h2></div>
<div id="description6">
<ul> <li>Some glyphs in the font cannot be accessed unless you are using an OpenType-savvy application.
</li>
</ul>
</div>
<div id="title7"><h2><a name="A9" id="A9"> Customer care</a></h2></div>
<div id="description7">
<p><strong>Customer Service</strong><br />
Adobe Customer Service provides assistance with product information, sales, registration, and other non-technical issues. To find out how to contact Adobe Customer Service, please visit Adobe.com for your region or country and click on Contact.</p>
<p><strong>Support Plan Options and Technical Resources </strong><br />
If you require technical assistance for your product, including information on free and paid support options and troubleshooting resources, more information is available at <a title="http://www.adobe.com/go/support/" href="http://www.adobe.com/go/support/"><span title="http://www.adobe.com/go/support/">http://www.adobe.com/go/support/</span></a>. Outside of North America, go to <a title="http://www.adobe.com/go/intlsupport/" href="http://www.adobe.com/go/intlsupport/"><span title="http://www.adobe.com/go/intlsupport/">http://www.adobe.com/go/intlsupport/</span></a>. Free troubleshooting resources include Adobe&rsquo;s support knowledgebase, Adobe user-to-user forums and more.</p>
</div>
<div id="title8"><h2><a name="A10" id="A10"> Other resources</a></h2></div>
<div id="description8">
<p><strong>Online Resources</strong><br />
<a href="http://www.adobe.com/type">Adobe Type Showroom</a><br />
<a href="http://www.adobe.com/type/family_readmes.html">Adobe Type Showroom - all current Read-Me files for our font families</a><br />
<a href="http://www.adobe.com/support/forums/">User Forums</a><br />
</p>
<p align="left"><br />
</p>
</div>
<br />
<br />
&copy; 2012 Adobe Systems Incorporated. All rights reserved.
</div>
</body>
</html>

59
header.tex Normal file
View file

@ -0,0 +1,59 @@
\usepackage[french]{babel} % Césure en français
\usepackage[autolanguage]{numprint}
\usepackage[
type={CC},
modifier={by-sa},
version={4.0},
]{doclicense}
\usepackage{xcolor}
\usepackage{listings}
\lstset{
basicstyle=\ttfamily,
numbers=left,
numberstyle=\footnotesize,
stepnumber=2,
numbersep=5pt,
backgroundcolor=\color{black!10},
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=2,
captionpos=b,
breaklines=true,
breakatwhitespace=true,
breakautoindent=true,
linewidth=\textwidth
}
\usepackage{wallpaper}
\makeatletter
\ULCornerWallPaper{1}{bg-slide.pdf}
\makeatother
% Override default figure placement To be within the flow of the text rather
% than on it's own page.
\usepackage{float}
\makeatletter
\def\fps@figure{H}
\makeatother
\pagenumbering{gobble}
\AddToHook{cmd/section/before}{\clearpage}
\AddToHook{cmd/subsection/before}{\clearpage}
\usepackage{caption}
\DeclareCaptionLabelFormat{nolabel}{}
\captionsetup{labelformat=nolabel,textformat=empty}
\usepackage{fontspec}
\setmainfont[Path=font/GlacialIndifference/]{GlacialIndifference-Regular.otf}
\setsansfont[Path=font/GlacialIndifference/]{GlacialIndifference-Regular.otf}
\setmonofont[Path=font/SourceCodePro/]{SourceCodePro-Regular.ttf}
\newcommand{\emoji}[1]{
{\setmainfont[Path=font/NotoColorEmoji/]{NotoColorEmoji.ttf}[Renderer=Harfbuzz]{#1}}
}

248
latex-emoji.lua Normal file
View file

@ -0,0 +1,248 @@
-- latex-emoji.lua
--
-- @copyright 2020 Takayuki YATO (aka. "ZR")
-- GitHub: https://github.com/zr-tex8r
-- Twitter: @zr_tex8r
-- This program is distributed under the MIT License.
--
local filter_name = 'latex-emoji'
---------------------------------------- helpers
--- Show debug log?
local show_log = true
--- The default emoji font
local default_emojifont = 'TwemojiMozilla.ttf'
--- Use bxcoloremoji package?
local bxcoloremoji = false
--- The emoji font to use
local emojifont, emojifontoptions = nil
--- All used codepoints
local ucs_used = {}
--- The number of emoji text spans.
local text_count = 0
local utils = require 'pandoc.utils'
local concat, insert, pack, unpack =
table.concat, table.insert, table.pack, table.unpack
--- Shows a debug log.
local function log(fmt, ...)
if not show_log then return end
io.stderr:write(filter_name..": "..fmt:format(...).."\n")
end
--- Aborts with an error message.
local function abort(fmt, ...)
error(filter_name..": "..fmt:format(...))
end
--- Returns the Pandoc-or-ordinary type of v.
-- @return A string that says type name.
local function pantype(v)
local t = type(v)
return (t == 'table') and v.t or t
end
--- Makes a comma-separated value string.
-- @return A string.
local function clist(...)
local t, u = pack(...), {}
for i = 1, t.n do
local v = (t[i] == nil) and '' or tostring(t[i])
if v ~= '' then insert(u, v) end
end
return concat(u, ',')
end
--- Makes the sorted sequence of all keys of a given table.
-- @return A sequence of strings.
local function keys(t)
local u = {}
for k in pairs(t) do insert(u, k) end
table.sort(u)
return u
end
--- Converts a singleton sequence to its element.
-- @return The sole element of v if v is a singleton;
-- v if v is not a table; otherwise an error is issued.
local function tosingle(v, l)
if type(v) ~= 'table' then return v end
if #v == 1 then return tosingle(v[1], l) end
abort("multiple values given: %s", l)
end
--- Converts a value to a singleton sequence.
-- @return The empty table if v is nil; v if v is a table;
-- otherwise the singleton of v.
local function toseq(v)
if v == nil then return {}
elseif type(v) == 'table' then return v
else return {v}
end
end
--- Converts MetaInlines values inside a MetaValue to strings.
-- @return The converted value. (v is not modified.)
local function tostring_meta(v, l)
if type(v) ~= 'table' then return v end
if v.t == 'MetaList' or v.t == nil then
local r = {}
for k, e in pairs(v) do r[k] = tostring_meta(e, l) end
return r
elseif v.t == 'MetaInlines' then
return utils.stringify(v)
else abort("cannot stringify: %s", v.t, l)
end
end
--- Gets the source to go into the header.
-- @return LaTeX source string
local function get_header()
if not bxcoloremoji or not next(ucs_used) then
return nil
end
return ([[
\usepackage[%s]{bxcoloremoji}
\newcommand*{\panEmoji}{\coloremoji}
]]):format(clist(emojifont, unpack(emojifontoptions)))
end
--- Gets the source to go into the head of body.
-- @return LaTeX source string
local function get_prologue()
if bxcoloremoji or not next(ucs_used) then
return nil
end
local fname = emojifont or default_emojifont
local fopts = clist('Renderer=HarfBuzz', unpack(emojifontoptions));
local ucs = keys(ucs_used)
for i = 1, #ucs do
ucs[i] = ('"%X'):format(ucs[i])
end
local dcrsrc = concat(ucs, ',\n')
return ([[
\makeatletter
\ifnum0\ifdefined\directlua\directlua{
if ("\luaescapestring{\luatexbanner}"):match("LuaHBTeX") then tex.write("1") end
}\fi>\z@ %% LuaHBTeX is ok
\setfontface\p@emoji@font{%s}[%s]
\else
\@latex@error{You must install a new TeX system (TeX Live 2020)\MessageBreak
and then use 'lualatex' engine to print emoji}
{The compilation will be aborted.}
\let\p@emoji@font\relax
\fi
\ifdefined\ltjdefcharrange
\ltjdefcharrange{208}{
%s}
\ltjsetparameter{jacharrange={-208}}
\fi
\newcommand*{\panEmoji}[1]{{\p@emoji@font#1}}
\makeatother
]]):format(fname, fopts, dcrsrc)
end
--- For debug.
local function inspect(v)
local t = type(v)
if t == 'userdata' or t == 'function' or t == 'nil' then return t
elseif t == 'table' then
local u, tag = {}, (v.t or 'table')
if tag == 'Str' then return tag..'{'..v.text..'}' end
for i = 1, #v do u[i] = inspect(v[i]) end
return tag..'{'..concat(u, ';')..'}'
else return tostring(v)
end
end
---------------------------------------- phase 'readmeta'
--- For Meta elements.
local function readmeta_Meta (meta)
-- bxcoloremoji
if meta.bxcoloremoji == nil then
bxcoloremoji = false
elseif type(meta.bxcoloremoji) == 'boolean' then
bxcoloremoji = meta.bxcoloremoji
else
abort("not a boolean value: bxcoloremoji")
end
log('bxcoloremoji = %s', bxcoloremoji)
-- emojifont
emojifont = tostring_meta(meta.emojifont, "emojifont")
emojifont = tosingle(emojifont, "emojifont")
log('emojifont = %s', emojifont)
-- emojifontoptions
emojifontoptions = tostring_meta(meta.emojifontoptions, "emojifontoptions")
emojifontoptions = toseq(emojifontoptions)
for i in ipairs(emojifontoptions) do
emojifontoptions[i] = tosingle(emojifontoptions[i], "emojifontoptions element")
log('emojifontoptions = %s', emojifontoptions[i])
end
end
---------------------------------------- phase 'mainproc'
--- For Span element.
local function mainproc_Span(span)
if span.classes:includes('emoji', 1) then
text_count = text_count + 1
local str = utils.stringify(span.content)
for p, uc in utf8.codes(str) do
if not ucs_used[uc] and uc >= 0x100 then
log("emoji character: U+%04X", uc)
ucs_used[uc] = true
end
end
insert(span.content, 1, pandoc.RawInline('latex', [[\panEmoji{]]))
insert(span.content, pandoc.RawInline('latex', [[}]]))
return span.content
end
end
--- For Meta elements.
local function mainproc_Meta(meta)
local src = get_header()
if src then
local headers = meta['header-includes']
if headers == nil then
headers = pandoc.MetaList({})
elseif pantype(headers) == 'MetaList' then
abort("unexpected metavalue type: header-includes")
end
insert(headers, pandoc.MetaBlocks{pandoc.RawBlock('latex', src)})
meta['header-includes'] = headers
log("header successfully appended")
return meta
end
end
--- For the whole document.
local function mainproc_Pandoc(doc)
log("number of emoji spans: %s", text_count)
local src = get_prologue()
if src then
insert(doc.blocks, 1, pandoc.RawBlock('latex', src))
log("prologue successfully inserted")
return doc
end
end
---------------------------------------- the filter
if FORMAT == 'latex' then
return {
{-- phase 'readmeta'
Meta = readmeta_Meta;
};
{-- phase 'mainproc'
Span = mainproc_Span;
Meta = mainproc_Meta;
Pandoc = mainproc_Pandoc;
};
}
else
log("format '%s' in not supported", FORMAT)
end
---------------------------------------- done

View file

@ -61,8 +61,8 @@ les machines.</p>
</section> </section>
<section id="données-massives" class="slide level2"> <section id="données-massives" class="slide level2">
<h2>Données massives</h2> <h2>Données massives</h2>
<p><img data-src="donnees-massives.drawio.svg" <p><img data-src="donnees-massives.png"
title="Les 5 V des données massives" height="512" title="Les 5 V des données massives" height="640"
alt="- Volume - Variété - Vélocité - Véracité - Valeur" /><br /> alt="- Volume - Variété - Vélocité - Véracité - Valeur" /><br />
</p> </p>
</section> </section>
@ -137,7 +137,8 @@ sapprend, mais cest moins intuitif !</li>
</section> </section>
<section id="que-signifie-fair" class="slide level2"> <section id="que-signifie-fair" class="slide level2">
<h2>Que signifie FAIR ?</h2> <h2>Que signifie FAIR ?</h2>
<p><img data-src="Principes%20FAIR.drawio.svg" height="512" <p><img data-src="Principes%20FAIR.png" title="Principes FAIR"
height="640"
alt="Findable, Accessible, Interoperable, Reusable dans un diagramme de Venn. Lintersection est FAIR" /> </p> alt="Findable, Accessible, Interoperable, Reusable dans un diagramme de Venn. Lintersection est FAIR" /> </p>
</section> </section>
<section id="définitions-formelles" class="slide level2"> <section id="définitions-formelles" class="slide level2">
@ -333,7 +334,7 @@ href="https://junkcharts.typepad.com/junk_charts/">Junk Charts</a></li>
</section> </section>
<section id="interoperable-3" class="slide level2"> <section id="interoperable-3" class="slide level2">
<h2>Interoperable</h2> <h2>Interoperable</h2>
<p><img data-src="langfr-800px-Taxonomic_hierarchy.svg.png" height="512" <p><img data-src="langfr-800px-Taxonomic_hierarchy.svg.png" height="640"
alt="langfr-800px-Taxonomic_hierarchy.svg.png" /><br /> alt="langfr-800px-Taxonomic_hierarchy.svg.png" /><br />
</p> </p>
</section> </section>
@ -455,8 +456,8 @@ trouver des équivalences de vocabulaire</li>
</section> </section>
<section id="cycle-de-vie" class="slide level2"> <section id="cycle-de-vie" class="slide level2">
<h2>Cycle de vie</h2> <h2>Cycle de vie</h2>
<p><img data-src="Cycle%20de%20vie%20des%20donn%C3%A9es.drawio.svg" <p><img data-src="Cycle%20de%20vie%20des%20données.png"
title="Cycle de vie des données" height="512" title="Cycle de vie des données" height="640"
alt="Génération, Collecte, Traitement, Entreposage, Gestion, Analyse, Visualisation, Interprétation" /> </p> alt="Génération, Collecte, Traitement, Entreposage, Gestion, Analyse, Visualisation, Interprétation" /> </p>
</section> </section>
<section id="cycle-de-vie-1" class="slide level2"> <section id="cycle-de-vie-1" class="slide level2">
@ -505,6 +506,8 @@ class="uri">https://www.openaire.eu/how-to-make-your-data-fair</a></li>
<section id="licence" class="slide level2"> <section id="licence" class="slide level2">
<h2>Licence</h2> <h2>Licence</h2>
<p>Les principes FAIR (c) par François Pelletier</p> <p>Les principes FAIR (c) par François Pelletier</p>
<p><a
href="mailto:francois.pelletier.6@ulaval.ca">francois.pelletier.6@ulaval.ca</a></p>
<p>Les principes FAIR est disponible sous la licence Creative Commons <p>Les principes FAIR est disponible sous la licence Creative Commons
Attribution 4.0 International License. Vous devriez avoir reçu une copie Attribution 4.0 International License. Vous devriez avoir reçu une copie
de la licence avec cette oeuvre. Sinon, voir <a de la licence avec cette oeuvre. Sinon, voir <a

Binary file not shown.