Parcourir la source

premier commit

Julien Dehos il y a 8 ans
commit
63c8f27368
4 fichiers modifiés avec 96 ajouts et 0 suppressions
  1. 14 0
      Makefile
  2. 55 0
      images/dessin.svg
  3. 21 0
      index.md
  4. 6 0
      style.html

+ 14 - 0
Makefile

@@ -0,0 +1,14 @@
+HTML_FILES = index.html
+
+
+all: $(HTML_FILES)
+
+%.html: %.md
+	pandoc -s $< -H style.html -o $@
+
+#publish:
+#	scp index.html yangra.univ-littoral.fr:public-html/enseignements/tutoriel_git/
+
+clean:
+	rm -f $(HTML_FILES)
+

+ 55 - 0
images/dessin.svg

@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+
+<svg xmlns="http://www.w3.org/2000/svg" width="600" height="300" >
+
+            <circle cx="100" cy="50" r="30" stroke="black" stroke-width="3" fill="lightgreen"  />
+            <text x="95" y="55" font-size="18"> 1 </text>
+            <circle cx="100" cy="150" r="30" stroke="black" stroke-width="3" fill="lightgreen"  />
+            <text x="95" y="155" font-size="18"> 2 </text>
+            <circle cx="100" cy="250" r="30" stroke="black" stroke-width="3" fill="lightgreen"  />
+            <text x="95" y="255" font-size="18"> 3 </text>
+
+            <circle cx="300" cy="100" r="30" stroke="black" stroke-width="3" fill="lightgreen"  />
+            <text x="295" y="105" font-size="18"> 4 </text>
+            <circle cx="300" cy="200" r="30" stroke="black" stroke-width="3" fill="lightgreen"  />
+            <text x="295" y="205" font-size="18"> 5 </text>
+
+            <circle cx="500" cy="150" r="30" stroke="black" stroke-width="3" fill="lightgreen"  />
+            <text x="495" y="155" font-size="18"> 6 </text>
+
+            <defs>
+              <marker id='head' orient="auto" markerWidth='4' markerHeight='8' refX='0.2' refY='3'>
+                <path d='M0,0 V6 L3,3 Z' />
+              </marker>
+            </defs>
+
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d='M20,50 L50,50' />
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d=' M20,150 L50,150 ' />
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d=' M20,250 L50,250 ' />
+
+            <text x="290" y="30" font-size="14"> 0.4 </text>
+            <text x="190" y="60" font-size="14"> 0.2 </text>
+            <text x="185" y="100" font-size="14"> -0.3 </text>
+            <text x="150" y="130" font-size="14"> 0.1 </text>
+            <text x="170" y="160" font-size="14"> -0.2 </text>
+            <text x="150" y="200" font-size="14"> 0.3 </text>
+            <text x="180" y="230" font-size="14"> 0.4 </text>
+            <text x="370" y="140" font-size="14"> -0.4 </text>
+            <text x="390" y="200" font-size="14"> 0.5 </text>
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d=' M140,50 C250,20 350,20 450,120' />
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d=' M140,50 L250,80 ' />
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d=' M140,50 L250,180 ' />
+
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d=' M140,150 L250,100 ' />
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d=' M140,150 L250,200 ' />
+
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d=' M140,250 L250,120 ' />
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d=' M140,250 L250,220 ' />
+
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d=' M340,100 L450,140 ' />
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d=' M340,200 L450,160 ' />
+
+            <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'  d=' M540,150 L570,150 ' />
+
+
+</svg>

+ 21 - 0
index.md

@@ -0,0 +1,21 @@
+Julien Dehos
+============
+
+Assistant professor, computer science
+
+* * * * *
+
+Affiliations & contact
+-------
+
+- E-mail : ![](images/dessin.svg)
+
+* * * * *
+
+Enseignements
+-------------
+
+* * * * *
+
+Last update : 2016-02-05
+

+ 6 - 0
style.html

@@ -0,0 +1,6 @@
+  <style type="text/css">
+      table          { margin: auto 0; }
+      table, th, td  { border-collapse: collapse; border: solid 1px black; padding: 3px; }
+      caption        { caption-side: bottom; }
+  </style>
+