Obisidian vault auto-backup: 20-11-2024 11:26:17 on constellation. 5 files edited

This commit is contained in:
2024-11-20 11:26:18 +01:00
parent 59176ef712
commit dceb9323e5
5 changed files with 15901 additions and 9 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
{
"id": "obsidian-latex-suite",
"name": "Latex Suite",
"version": "1.9.7",
"minAppVersion": "1.0.0",
"description": "Make typesetting LaTeX math as fast as handwriting through snippets, text expansion, and editor enhancements",
"author": "artisticat",
"authorUrl": "https://github.com/artisticat1",
"fundingUrl": "https://ko-fi.com/artisticat",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,235 @@
/* Settings panel */
.setting-item.hidden {
display: none;
}
.setting-item.setting-item-heading .latex-suite-settings-icon {
margin-right: var(--size-4-2);
display: inline-flex;
}
.setting-item.setting-item-heading:has(.latex-suite-settings-icon) {
border-bottom: 1px solid var(--background-modifier-border);
}
.setting-item.setting-item-heading:has(.latex-suite-settings-icon) + .setting-item {
border-top: none;
}
.setting-item.setting-item-heading:has(.latex-suite-settings-icon) ~ .setting-item:not(.setting-item-heading), .latex-suite-snippet-variables-setting + .setting-item-control {
width: calc(100% - 26px);
margin-left: 26px;
}
.latex-suite-snippet-variables-setting .setting-item-control {
height: 120px;
}
.latex-suite-snippet-variables-setting .setting-item-control textarea {
width: 100%;
height: 100%;
}
.snippets-text-area, .latex-suite-snippet-variables-setting {
display: inline-block;
}
.snippets-text-area .setting-item-info, .latex-suite-snippet-variables-setting .setting-item-info {
margin-bottom: 0.75rem;
}
.snippets-text-area .setting-item-control {
flex-direction: column;
align-items: flex-end;
}
.snippets-editor-wrapper {
width: 100%;
margin-bottom: 0.75rem;
}
.snippets-editor-wrapper .cm-editor {
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
font-size: var(--font-inputs);
height: 20em;
outline: none !important;
text-align: left;
}
.snippets-editor-wrapper .cm-line, .snippets-editor-wrapper .cm-lineNumbers {
font-family: var(--font-monospace);
}
.snippets-footer {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.snippets-editor-validity {
display: flex;
align-items: center;
}
.snippets-editor-validity-indicator {
color: white;
display: inline-block;
border-radius: 1em;
margin-right: 10px;
cursor: default;
visibility: hidden;
}
.snippets-editor-validity-indicator svg {
width: 16px !important;
height: 16px !important;
}
.snippets-editor-validity-indicator:hover {
color: white;
}
.snippets-editor-validity-indicator.valid {
background-color: var(--color-green);
visibility: visible;
}
.snippets-editor-validity-indicator.invalid {
background-color: var(--color-red);
visibility: visible;
}
.snippets-editor-buttons {
display: flex;
flex-direction: row;
}
.latex-suite-confirmation-modal .setting-item {
border: none;
}
.search-input-container input.latex-suite-location-input-el {
width: initial;
}
/*
Snippet color classes.
*/
/* These extra selectors enforce their color on all children, because CodeMirror does weird nesting of spans when
nesting multiple decorations. */
.latex-suite-snippet-placeholder {
border-radius: 2px;
background-color: var(--placeholder-bg);
outline: var(--placeholder-outline) solid 1px;
}
.latex-suite-snippet-placeholder-0, span.latex-suite-snippet-placeholder-0 span {
--placeholder-bg: #87cefa2e;
--placeholder-outline: #87cefa6e;
}
.theme-dark .latex-suite-snippet-placeholder-0, span.latex-suite-snippet-placeholder-0 span {
--placeholder-outline: #87cefa43;
}
.latex-suite-snippet-placeholder-1, span.latex-suite-snippet-placeholder-1 span {
--placeholder-bg: #ffa50033;
--placeholder-outline: #ffa5006b;
}
.theme-dark .latex-suite-snippet-placeholder-1, span.latex-suite-snippet-placeholder-1 span {
--placeholder-outline: #ffa5004d;
}
.latex-suite-snippet-placeholder-2, span.latex-suite-snippet-placeholder-2 span {
--placeholder-bg: #00ff0022;
--placeholder-outline: #00ff0060;
}
.theme-dark .latex-suite-snippet-placeholder-2, span.latex-suite-snippet-placeholder-2 span {
--placeholder-outline: #00ff003d;
}
/* Conceal */
span.cm-math.cm-concealed-bold {
font-weight: bold;
}
span.cm-math.cm-concealed-underline {
text-decoration: underline;
}
span.cm-math.cm-concealed-mathrm, sub.cm-math.cm-concealed-mathrm {
font-style: normal;
}
/* Conceal superscripts without changing line height */
sup.cm-math {
line-height: 0;
}
sup.cm-math, sub.cm-math {
font-style: italic;
}
/* Inline math tooltip styling */
.theme-light .cm-tooltip.cm-tooltip-cursor {
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.028), 0px 3.4px 6.7px rgba(0, 0, 0, .042), 0px 5px 20px rgba(0, 0, 0, .07);
}
.theme-dark .cm-tooltip.cm-tooltip-cursor {
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1),
0px 3.4px 6.7px rgba(0, 0, 0, 0.15),
0px 0px 30px rgba(0, 0, 0, 0.27);
}
/* Highlight brackets */
.theme-light .latex-suite-highlighted-bracket, .theme-light .latex-suite-highlighted-bracket [class^="latex-suite-color-bracket-"] {
background-color: hsl(var(--accent-h), var(--accent-s), 40%, 0.3);
}
.theme-dark .latex-suite-highlighted-bracket, .theme-dark .latex-suite-highlighted-bracket [class^="latex-suite-color-bracket-"] {
background-color: hsl(var(--accent-h), var(--accent-s), 70%, 0.6);
}
/* Color matching brackets */
.theme-light .latex-suite-color-bracket-0, .theme-light .latex-suite-color-bracket-0 .cm-bracket {
color: #527aff;
}
.theme-dark .latex-suite-color-bracket-0, .theme-dark .latex-suite-color-bracket-0 .cm-bracket {
color: #47b8ff;
}
.theme-light .latex-suite-color-bracket-1, .theme-light .latex-suite-color-bracket-1 .cm-bracket {
color: #ff50b7;
}
.theme-dark .latex-suite-color-bracket-1, .theme-dark .latex-suite-color-bracket-1 .cm-bracket {
color: #ff55cd;
}
.theme-light .latex-suite-color-bracket-2, .theme-light .latex-suite-color-bracket-2 .cm-bracket {
color: #69ba00;
}
.theme-dark .latex-suite-color-bracket-2, .theme-dark .latex-suite-color-bracket-2 .cm-bracket {
color: #73ff63;
}
/* .latex-suite-color-bracket-3 {
color: #8de15c;
} */

View File

@@ -13,13 +13,13 @@
"state": {
"type": "markdown",
"state": {
"file": "ISEN/English/CIPA3/Company presentation.md",
"file": "ISEN/Maths/CIPA3/DM1.md",
"mode": "source",
"backlinks": true,
"source": false
},
"icon": "lucide-file",
"title": "Company presentation"
"title": "DM1"
}
},
{
@@ -170,10 +170,10 @@
"state": {
"type": "outline",
"state": {
"file": "ISEN/English/CIPA3/Company presentation.md"
"file": "ISEN/Maths/CIPA3/DM1.md"
},
"icon": "lucide-list",
"title": "Plan de Company presentation"
"title": "Plan de DM1"
}
},
{
@@ -222,8 +222,12 @@
},
"active": "da4017e2068b8f8f",
"lastOpenFiles": [
"ISEN/English/CIPA3/17 sept 2024.md",
"ISEN/Maths/CIPA3/DM1.md",
"ISEN/English/CIPA3/Company presentation.md",
"ISEN/Maths/CIPA3",
"Sans titre",
"ISEN/Maths",
"ISEN/English/CIPA3/17 sept 2024.md",
"ISEN/FHS/CIPA3/Gestion de projet/Gestion de projet Cours 2.md",
"ISEN/FHS/CIPA3/Gestion de projet/Gestion de projet Cours 1.md",
"Pasted image 20241113141806.png",
@@ -250,9 +254,6 @@
"ISEN/Algo C/CIPA3/Code Ex01.c",
"ISEN/Algo C/CIPA3/TP1.pdf",
"ISEN/Algo C/CIPA3/Cours2_LangageC_NB2023.pdf",
"ISEN/Algo C/CIPA3/Intro et Chapitre 1 Les bases.pdf",
"ISEN/Algo C/CIPA3",
"ISEN/Algo C/CIPA",
"ISEN/Réunion/CIPA 3/Départ en entreprise 1 20-09-2024.md",
"ISEN/FHS/A2/Film/Schéma naratif.md",
"ISEN/FHS/A2/Outils RH/Outils RH 2024-02-09.md",
@@ -260,7 +261,6 @@
"ISEN/Linux/Linux cours 1.md",
"ISEN/English/A2/23 févr 2024.md",
"ISEN/English/A2/20 oct 2023.md",
"ISEN/English/A2/2 févr 2024.md",
"ISEN/Modelec/NB point.canvas",
"ISEN/Réseau/A2/TP Ansible et docker.canvas",
"Untitled.canvas",

63
ISEN/Maths/CIPA3/DM1.md Normal file
View File

@@ -0,0 +1,63 @@
Étape 1:
$$
\begin{bmatrix}
0.00 & 1.00 & 4.00 & 3.61 & 3.61 & 5.10 & 3.16 \\
1.00 & 0.00 & 3.00 & 2.83 & 3.16 & 5.00 & 2.24 \\
4.00 & 3.00 & 0.00 & 2.24 & 3.61 & 5.83 & 1.41 \\
3.61 & 2.83 & 2.24 & 0.00 & 1.41 & 3.61 & 3.00 \\
3.61 & 3.16 & 3.61 & 1.41 & 0.00 & 2.24 & 4.12 \\
5.10 & 5.00 & 5.83 & 3.61 & 2.24 & 0.00 & 6.32 \\
3.16 & 2.24 & 1.41 & 3.00 & 4.12 & 6.32 & 0.00 \\
\end{bmatrix}
$$
Étape 2:
$$
\begin{bmatrix}
0.00 & 2.24 & 3.61 & 5.83 & 1.41 & 3.00 \\
2.24 & 0.00 & 1.41 & 3.61 & 3.00 & 2.83 \\
3.61 & 1.41 & 0.00 & 2.24 & 4.12 & 3.16 \\
5.83 & 3.61 & 2.24 & 0.00 & 6.32 & 5.00 \\
1.41 & 3.00 & 4.12 & 6.32 & 0.00 & 2.24 \\
3.00 & 2.83 & 3.16 & 5.00 & 2.24 & 0.00 \\
\end{bmatrix}
$$
Étape 3:
$$
\begin{bmatrix}
0.00 & 1.41 & 3.61 & 2.83 & 2.24 \\
1.41 & 0.00 & 2.24 & 3.16 & 3.61 \\
3.61 & 2.24 & 0.00 & 5.00 & 5.83 \\
2.83 & 3.16 & 5.00 & 0.00 & 2.24 \\
2.24 & 3.61 & 5.83 & 2.24 & 0.00 \\
\end{bmatrix}
$$
Étape 4:
$$
\begin{bmatrix}
0.00 & 5.00 & 5.83 & 2.24 \\
5.00 & 0.00 & 2.24 & 2.83 \\
5.83 & 2.24 & 0.00 & 2.24 \\
2.24 & 2.83 & 2.24 & 0.00 \\
\end{bmatrix}
$$
Étape 5:
$$
\begin{bmatrix}
0.00 & 2.24 & 2.83 \\
2.24 & 0.00 & 2.24 \\
2.83 & 2.24 & 0.00 \\
\end{bmatrix}
$$
Étape 6:
$$
\begin{bmatrix}
0.00 & 2.24 \\
2.24 & 0.00 \\
\end{bmatrix}
$$