svg

2025-09-06 17:33:56 +02:00
parent b481e7096e
commit b0701ed3e5
4 changed files with 15 additions and 12 deletions

@@ -58,12 +58,7 @@ Deux intervalles A et B peuvent se positionner selon **13 configurations**.
A _Précède_ B lorsque la borne supérieure de A est strictement inférieure à la borne inférieure de B.
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 8" width="200" height="80">
<text x="4" y="3" font-size="1.8" text-anchor="middle">A</text>
<text x="12" y="5" font-size="1.8" text-anchor="middle">B</text>
<line x1="3" x2="5" y1="4" y2="4" stroke-width="1" stroke="black" />
<line x1="8" x2="16" y1="6" y2="6" stroke-width="1" stroke="black" />
</svg>
![Précède](intervalles/precede.svg)
Allen|Postgres
---|---
@@ -77,12 +72,7 @@ select '[3,5]'::int4range << '[8,15]'::int4range;
A _Succède_ à B lorsque la borne inférieure de A est strictement supérieure à la borne supérieure de B.
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 8" width="200" height="80">
<text x="12" y="3" font-size="1.8" text-anchor="middle">A</text>
<text x="4" y="5" font-size="1.8" text-anchor="middle">B</text>
<line x1="8" x2="16" y1="4" y2="4" stroke-width="1" stroke="black" />
<line x1="3" x2="5" y1="6" y2="6" stroke-width="1" stroke="black" />
</svg>
![Succède](intervalles/succede.svg)
Allen|Postgres
------|---

0
intervalles/commence.svg Normal file

6
intervalles/precede.svg Normal file

@@ -0,0 +1,6 @@
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 8" width="200" height="80">
<text x="4" y="3" font-size="1.8" text-anchor="middle">A</text>
<text x="12" y="5" font-size="1.8" text-anchor="middle">B</text>
<line x1="3" x2="5" y1="4" y2="4" stroke-width="1" stroke="black" />
<line x1="8" x2="16" y1="6" y2="6" stroke-width="1" stroke="black" />
</svg>

After

Width:  |  Height:  |  Size: 402 B

7
intervalles/succede.svg Normal file

@@ -0,0 +1,7 @@
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
viewbox="0 0 20 8" width="200" height="80">
<text x="12" y="3" font-size="1.8" text-anchor="middle">A</text>
<text x="4" y="5" font-size="1.8" text-anchor="middle">B</text>
<line x1="8" x2="16" y1="4" y2="4" stroke-width="1" stroke="black" />
<line x1="3" x2="5" y1="6" y2="6" stroke-width="1" stroke="black" />
</svg>

After

Width:  |  Height:  |  Size: 403 B