Compare commits
10 Commits
2dad565acf
...
d30d56e67b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d30d56e67b | ||
|
|
e3e9e939b1 | ||
|
|
d4866fc4c8 | ||
|
|
fd87c7d882 | ||
|
|
666ed795cc | ||
|
|
dc366e2c40 | ||
|
|
25c6ddeb94 | ||
|
|
8f0a2e5d22 | ||
|
|
8a75b5bd56 | ||
|
|
4047ed61c2 |
2
.obsidian/appearance.json
vendored
2
.obsidian/appearance.json
vendored
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"theme": "obsidian",
|
"theme": "moonstone",
|
||||||
"interfaceFontFamily": "Noto Sans",
|
"interfaceFontFamily": "Noto Sans",
|
||||||
"cssTheme": "",
|
"cssTheme": "",
|
||||||
"enabledCssSnippets": [
|
"enabledCssSnippets": [
|
||||||
|
|||||||
3
.obsidian/community-plugins.json
vendored
3
.obsidian/community-plugins.json
vendored
@@ -7,5 +7,6 @@
|
|||||||
"templater-obsidian",
|
"templater-obsidian",
|
||||||
"highlightr-plugin",
|
"highlightr-plugin",
|
||||||
"obsidian-file-color",
|
"obsidian-file-color",
|
||||||
"darlal-switcher-plus"
|
"darlal-switcher-plus",
|
||||||
|
"dataview"
|
||||||
]
|
]
|
||||||
2
.obsidian/graph.json
vendored
2
.obsidian/graph.json
vendored
@@ -17,6 +17,6 @@
|
|||||||
"repelStrength": 0,
|
"repelStrength": 0,
|
||||||
"linkStrength": 0.500822368421053,
|
"linkStrength": 0.500822368421053,
|
||||||
"linkDistance": 30,
|
"linkDistance": 30,
|
||||||
"scale": 1,
|
"scale": 0.9895212671709476,
|
||||||
"close": true
|
"close": true
|
||||||
}
|
}
|
||||||
20876
.obsidian/plugins/dataview/main.js
vendored
Normal file
20876
.obsidian/plugins/dataview/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
11
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"id": "dataview",
|
||||||
|
"name": "Dataview",
|
||||||
|
"version": "0.5.68",
|
||||||
|
"minAppVersion": "0.13.11",
|
||||||
|
"description": "Complex data views for the data-obsessed.",
|
||||||
|
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||||
|
"authorUrl": "https://github.com/blacksmithgu",
|
||||||
|
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
|
||||||
|
"isDesktopOnly": false
|
||||||
|
}
|
||||||
141
.obsidian/plugins/dataview/styles.css
vendored
Normal file
141
.obsidian/plugins/dataview/styles.css
vendored
Normal file
@@ -0,0 +1,141 @@
|
|||||||
|
.block-language-dataview {
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*****************/
|
||||||
|
/** Table Views **/
|
||||||
|
/*****************/
|
||||||
|
|
||||||
|
/* List View Default Styling; rendered internally as a table. */
|
||||||
|
.table-view-table {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
||||||
|
margin-top: 1em;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table > tbody > tr:hover {
|
||||||
|
background-color: var(--table-row-background-hover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table > thead > tr > th {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: larger;
|
||||||
|
border-top: none;
|
||||||
|
border-left: none;
|
||||||
|
border-right: none;
|
||||||
|
border-bottom: solid;
|
||||||
|
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table > tbody > tr > td {
|
||||||
|
text-align: left;
|
||||||
|
border: none;
|
||||||
|
font-weight: 400;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table ul, .table-view-table ol {
|
||||||
|
margin-block-start: 0.2em !important;
|
||||||
|
margin-block-end: 0.2em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Rendered value styling for any view. */
|
||||||
|
.dataview-result-list-root-ul {
|
||||||
|
padding: 0em !important;
|
||||||
|
margin: 0em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview-result-list-ul {
|
||||||
|
margin-block-start: 0.2em !important;
|
||||||
|
margin-block-end: 0.2em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Generic grouping styling. */
|
||||||
|
.dataview.result-group {
|
||||||
|
padding-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*******************/
|
||||||
|
/** Inline Fields **/
|
||||||
|
/*******************/
|
||||||
|
|
||||||
|
.dataview.inline-field-key {
|
||||||
|
padding-left: 8px;
|
||||||
|
padding-right: 8px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
background-color: var(--background-primary-alt);
|
||||||
|
color: var(--nav-item-color-selected);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.inline-field-value {
|
||||||
|
padding-left: 8px;
|
||||||
|
padding-right: 8px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
background-color: var(--background-secondary-alt);
|
||||||
|
color: var(--nav-item-color-selected);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.inline-field-standalone-value {
|
||||||
|
padding-left: 8px;
|
||||||
|
padding-right: 8px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
background-color: var(--background-secondary-alt);
|
||||||
|
color: var(--nav-item-color-selected);
|
||||||
|
}
|
||||||
|
|
||||||
|
/***************/
|
||||||
|
/** Task View **/
|
||||||
|
/***************/
|
||||||
|
|
||||||
|
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||||
|
margin-top: 3px;
|
||||||
|
margin-bottom: 3px;
|
||||||
|
transition: 0.4s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||||
|
background-color: var(--text-selection);
|
||||||
|
box-shadow: -40px 0 0 var(--text-selection);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*****************/
|
||||||
|
/** Error Views **/
|
||||||
|
/*****************/
|
||||||
|
|
||||||
|
div.dataview-error-box {
|
||||||
|
width: 100%;
|
||||||
|
min-height: 150px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border: 4px dashed var(--background-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview-error-message {
|
||||||
|
color: var(--text-muted);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*************************/
|
||||||
|
/** Additional Metadata **/
|
||||||
|
/*************************/
|
||||||
|
|
||||||
|
.dataview.small-text {
|
||||||
|
font-size: smaller;
|
||||||
|
color: var(--text-muted);
|
||||||
|
margin-left: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.small-text::before {
|
||||||
|
content: "(";
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.small-text::after {
|
||||||
|
content: ")";
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"lightStyle": "minimal-light",
|
"lightStyle": "minimal-light",
|
||||||
"darkStyle": "minimal-dark",
|
"darkStyle": "minimal-dark",
|
||||||
"lightScheme": "minimal-default-light",
|
"lightScheme": "minimal-nord-light",
|
||||||
"darkScheme": "minimal-flexoki-dark",
|
"darkScheme": "minimal-flexoki-dark",
|
||||||
"editorFont": "",
|
"editorFont": "",
|
||||||
"lineHeight": 1.5,
|
"lineHeight": 1.5,
|
||||||
|
|||||||
164
.obsidian/snippets/matugen.css
vendored
164
.obsidian/snippets/matugen.css
vendored
@@ -6,113 +6,113 @@
|
|||||||
.theme-dark, .theme-light {
|
.theme-dark, .theme-light {
|
||||||
|
|
||||||
/* ── Material You RGB helpers ──────────────────────────── */
|
/* ── Material You RGB helpers ──────────────────────────── */
|
||||||
--mat-bg-rgb: 18, 19, 26;
|
--mat-bg-rgb: 14, 21, 13;
|
||||||
--mat-surface-rgb: 18, 19, 26;
|
--mat-surface-rgb: 14, 21, 13;
|
||||||
--mat-on-surface-rgb: 226, 225, 235;
|
--mat-on-surface-rgb: 221, 229, 215;
|
||||||
--mat-primary-rgb: 183, 196, 255;
|
--mat-primary-rgb: 88, 225, 104;
|
||||||
--mat-on-primary-rgb: 0, 38, 131;
|
--mat-on-primary-rgb: 0, 57, 13;
|
||||||
|
|
||||||
/* ── Core Backgrounds ──────────────────────────────────── */
|
/* ── Core Backgrounds ──────────────────────────────────── */
|
||||||
--background-primary: #12131a;
|
--background-primary: #0e150d;
|
||||||
--background-primary-alt: #12131a;
|
--background-primary-alt: #0e150d;
|
||||||
--background-secondary: #1a1b22;
|
--background-secondary: #161d15;
|
||||||
--background-secondary-alt: #1e1f26;
|
--background-secondary-alt: #1a2219;
|
||||||
|
|
||||||
/* ── Titlebar ──────────────────────────────────────────── */
|
/* ── Titlebar ──────────────────────────────────────────── */
|
||||||
--titlebar-background: #12131a;
|
--titlebar-background: #0e150d;
|
||||||
--titlebar-background-focused: #1a1b22;
|
--titlebar-background-focused: #161d15;
|
||||||
--titlebar-text-color: #e2e1eb;
|
--titlebar-text-color: #dde5d7;
|
||||||
|
|
||||||
/* ── Borders & Dividers ────────────────────────────────── */
|
/* ── Borders & Dividers ────────────────────────────────── */
|
||||||
--background-modifier-border: #444653;
|
--background-modifier-border: #3d4a3b;
|
||||||
--background-modifier-border-focus: #8e909f;
|
--background-modifier-border-focus: #879583;
|
||||||
--background-modifier-border-hover: #8e909f;
|
--background-modifier-border-hover: #879583;
|
||||||
|
|
||||||
/* ── Text Colors ───────────────────────────────────────── */
|
/* ── Text Colors ───────────────────────────────────────── */
|
||||||
--text-normal: #e2e1eb;
|
--text-normal: #dde5d7;
|
||||||
--text-muted: #c4c5d5;
|
--text-muted: #bccbb7;
|
||||||
--text-faint: #8e909f;
|
--text-faint: #879583;
|
||||||
--text-on-accent: #002683;
|
--text-on-accent: #00390d;
|
||||||
--text-selection: rgba(183, 196, 255, 0.25);
|
--text-selection: rgba(88, 225, 104, 0.25);
|
||||||
|
|
||||||
/* ── Accent & Interactive ──────────────────────────────── */
|
/* ── Accent & Interactive ──────────────────────────────── */
|
||||||
--interactive-accent: #b7c4ff;
|
--interactive-accent: #58e168;
|
||||||
--interactive-accent-hover: #0d38ab;
|
--interactive-accent-hover: #16af3e;
|
||||||
--interactive-accent-rgb: 183, 196, 255;
|
--interactive-accent-rgb: 88, 225, 104;
|
||||||
--text-accent: #b7c4ff;
|
--text-accent: #58e168;
|
||||||
--text-accent-hover: #0d38ab;
|
--text-accent-hover: #16af3e;
|
||||||
|
|
||||||
/* ── Hover & Active Modifiers ──────────────────────────── */
|
/* ── Hover & Active Modifiers ──────────────────────────── */
|
||||||
--background-modifier-hover: rgba(var(--mat-on-surface-rgb), 0.06);
|
--background-modifier-hover: rgba(var(--mat-on-surface-rgb), 0.06);
|
||||||
--background-modifier-active-hover: rgba(var(--mat-primary-rgb), 0.15);
|
--background-modifier-active-hover: rgba(var(--mat-primary-rgb), 0.15);
|
||||||
--background-modifier-success: #822200;
|
--background-modifier-success: #fe5f8c;
|
||||||
--background-modifier-error: #93000a;
|
--background-modifier-error: #93000a;
|
||||||
--background-modifier-error-hover: #ffb4ab;
|
--background-modifier-error-hover: #ffb4ab;
|
||||||
|
|
||||||
/* ── Obsidian Color Scale (--color-base-XX) ────────────── */
|
/* ── Obsidian Color Scale (--color-base-XX) ────────────── */
|
||||||
--color-base-00: #12131a;
|
--color-base-00: #0e150d;
|
||||||
--color-base-05: #12131a;
|
--color-base-05: #0e150d;
|
||||||
--color-base-10: #0c0e14;
|
--color-base-10: #091008;
|
||||||
--color-base-20: #1a1b22;
|
--color-base-20: #161d15;
|
||||||
--color-base-25: #1e1f26;
|
--color-base-25: #1a2219;
|
||||||
--color-base-30: #282a31;
|
--color-base-30: #242c23;
|
||||||
--color-base-35: #33343c;
|
--color-base-35: #2f372d;
|
||||||
--color-base-40: #444653;
|
--color-base-40: #3d4a3b;
|
||||||
--color-base-50: #8e909f;
|
--color-base-50: #879583;
|
||||||
--color-base-60: #c4c5d5;
|
--color-base-60: #bccbb7;
|
||||||
--color-base-70: #e2e1eb;
|
--color-base-70: #dde5d7;
|
||||||
--color-base-100: #e2e1eb;
|
--color-base-100: #dde5d7;
|
||||||
|
|
||||||
/* ── Semantic Colors ───────────────────────────────────── */
|
/* ── Semantic Colors ───────────────────────────────────── */
|
||||||
--color-red: #ffb4ab;
|
--color-red: #ffb4ab;
|
||||||
--color-orange: #ffb59f;
|
--color-orange: #ffb1c1;
|
||||||
--color-yellow: #bac4f7;
|
--color-yellow: #98d695;
|
||||||
--color-green: #822200;
|
--color-green: #fe5f8c;
|
||||||
--color-cyan: #3a446f;
|
--color-cyan: #1a5422;
|
||||||
--color-blue: #b7c4ff;
|
--color-blue: #58e168;
|
||||||
--color-purple: #bac4f7;
|
--color-purple: #98d695;
|
||||||
--color-pink: #ffb59f;
|
--color-pink: #ffb1c1;
|
||||||
|
|
||||||
/* ── Headings ──────────────────────────────────────────── */
|
/* ── Headings ──────────────────────────────────────────── */
|
||||||
--h1-color: #b7c4ff;
|
--h1-color: #58e168;
|
||||||
--h2-color: #b7c4ff;
|
--h2-color: #58e168;
|
||||||
--h3-color: #bac4f7;
|
--h3-color: #98d695;
|
||||||
--h4-color: #ffb59f;
|
--h4-color: #ffb1c1;
|
||||||
--h5-color: #c4c5d5;
|
--h5-color: #bccbb7;
|
||||||
--h6-color: #8e909f;
|
--h6-color: #879583;
|
||||||
|
|
||||||
/* ── Links ─────────────────────────────────────────────── */
|
/* ── Links ─────────────────────────────────────────────── */
|
||||||
--link-color: #b7c4ff;
|
--link-color: #58e168;
|
||||||
--link-color-hover: #d5dbff;
|
--link-color-hover: #000601;
|
||||||
--link-external-color: #ffb59f;
|
--link-external-color: #ffb1c1;
|
||||||
--link-unresolved-color: #8e909f;
|
--link-unresolved-color: #879583;
|
||||||
|
|
||||||
/* ── Tags ──────────────────────────────────────────────── */
|
/* ── Tags ──────────────────────────────────────────────── */
|
||||||
--tag-color: #d5dbff;
|
--tag-color: #000601;
|
||||||
--tag-background: #0d38ab;
|
--tag-background: #16af3e;
|
||||||
--tag-border-color: #b7c4ff;
|
--tag-border-color: #58e168;
|
||||||
--tag-color-hover: #002683;
|
--tag-color-hover: #00390d;
|
||||||
--tag-background-hover: #b7c4ff;
|
--tag-background-hover: #58e168;
|
||||||
|
|
||||||
/* ── Checkboxes ────────────────────────────────────────── */
|
/* ── Checkboxes ────────────────────────────────────────── */
|
||||||
--checkbox-color: #b7c4ff;
|
--checkbox-color: #58e168;
|
||||||
--checkbox-color-hover: #0d38ab;
|
--checkbox-color-hover: #16af3e;
|
||||||
--checkbox-border-color: #8e909f;
|
--checkbox-border-color: #879583;
|
||||||
--checkbox-marker-color: #002683;
|
--checkbox-marker-color: #00390d;
|
||||||
|
|
||||||
/* ── Code Blocks ───────────────────────────────────────── */
|
/* ── Code Blocks ───────────────────────────────────────── */
|
||||||
--code-background: #1a1b22;
|
--code-background: #161d15;
|
||||||
--code-normal: #e2e1eb;
|
--code-normal: #dde5d7;
|
||||||
--code-comment: #8e909f;
|
--code-comment: #879583;
|
||||||
--code-function: #b7c4ff;
|
--code-function: #58e168;
|
||||||
--code-important: #ffb4ab;
|
--code-important: #ffb4ab;
|
||||||
--code-keyword: #bac4f7;
|
--code-keyword: #98d695;
|
||||||
--code-operator: #ffb59f;
|
--code-operator: #ffb1c1;
|
||||||
--code-property: #c4c5d5;
|
--code-property: #bccbb7;
|
||||||
--code-punctuation: #444653;
|
--code-punctuation: #3d4a3b;
|
||||||
--code-string: #ffb59f;
|
--code-string: #ffb1c1;
|
||||||
--code-tag: #ffb4ab;
|
--code-tag: #ffb4ab;
|
||||||
--code-value: #bac4f7;
|
--code-value: #98d695;
|
||||||
|
|
||||||
/* ── Scrollbar ─────────────────────────────────────────── */
|
/* ── Scrollbar ─────────────────────────────────────────── */
|
||||||
--scrollbar-thumb-bg: rgba(var(--mat-on-surface-rgb), 0.12);
|
--scrollbar-thumb-bg: rgba(var(--mat-on-surface-rgb), 0.12);
|
||||||
@@ -121,16 +121,16 @@
|
|||||||
|
|
||||||
/* ── Inputs ────────────────────────────────────────────── */
|
/* ── Inputs ────────────────────────────────────────────── */
|
||||||
--input-shadow: none;
|
--input-shadow: none;
|
||||||
--input-shadow-hover: 0 0 0 2px #8e909f;
|
--input-shadow-hover: 0 0 0 2px #879583;
|
||||||
|
|
||||||
/* ── Graph View ────────────────────────────────────────── */
|
/* ── Graph View ────────────────────────────────────────── */
|
||||||
--graph-node: #b7c4ff;
|
--graph-node: #58e168;
|
||||||
--graph-node-unresolved: #8e909f;
|
--graph-node-unresolved: #879583;
|
||||||
--graph-node-focused: #d5dbff;
|
--graph-node-focused: #000601;
|
||||||
--graph-node-tag: #bac4f7;
|
--graph-node-tag: #98d695;
|
||||||
--graph-node-attachment: #ffb59f;
|
--graph-node-attachment: #ffb1c1;
|
||||||
--graph-line: #444653;
|
--graph-line: #3d4a3b;
|
||||||
--graph-background: #12131a;
|
--graph-background: #0e150d;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
71
.obsidian/workspace.json
vendored
71
.obsidian/workspace.json
vendored
@@ -13,15 +13,30 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "00 Inbox/Zählpfeilsysteme.md",
|
"file": "99 Templates/New File Template.md",
|
||||||
"mode": "source",
|
"mode": "source",
|
||||||
"source": false
|
"source": false
|
||||||
},
|
},
|
||||||
"icon": "lucide-file",
|
"icon": "lucide-file",
|
||||||
"title": "Zählpfeilsysteme"
|
"title": "New File Template"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4a709921b51fcf11",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "10 Courses/02 - SoSe 2026/ET II/29592733 - Zählpfeilsysteme.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "29592733 - Zählpfeilsysteme"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"currentTab": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"direction": "vertical"
|
"direction": "vertical"
|
||||||
@@ -182,42 +197,44 @@
|
|||||||
"darlal-switcher-plus:Open Symbols for the active editor": false
|
"darlal-switcher-plus:Open Symbols for the active editor": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "0e89c1d1d5ec049c",
|
"active": "4a709921b51fcf11",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
"00 Inbox/Zeitabhängige Größen.md",
|
"10 Courses/02 - SoSe 2026/ET II/29592751 - Übungsaufgabe 1.md",
|
||||||
"30 Library/ET_II_Folien_gesamt_020426.pdf",
|
"10 Courses/02 - SoSe 2026/ET II/29592755 - Übungsaufgabe 2.md",
|
||||||
"00 Inbox/Zählpfeilsysteme.md",
|
"20 Atlas/ET II - Map of Content.md",
|
||||||
|
"10 Courses/02 - SoSe 2026/ET II/29592733 - Zählpfeilsysteme.md",
|
||||||
|
"00 Inbox/29593226 - ET_II_Folien_gesamt_020426.pdf.md",
|
||||||
|
"10 Courses/02 - SoSe 2026/ET II/29592722 - Zeitabhängige Größen.md",
|
||||||
|
"10 Courses/02 - SoSe 2026/ET II/29592709 - Klausur.md",
|
||||||
|
"10 Courses/02 - SoSe 2026/ET II/29592673 - Elektrotechnik II.md",
|
||||||
|
"10 Courses/02 - SoSe 2026/ET II/29592729 - Kirchhoffsche Gesetze.md",
|
||||||
|
"00 Inbox/29593224 - 29593223 - 29593223 - Elektrotechnik II.md",
|
||||||
|
"00 Inbox/29593223 - 29593223 - Elektrotechnik II.md",
|
||||||
|
"00 Inbox/29593223 - Elektrotechnik II.md",
|
||||||
|
"10 Courses/02 - SoSe 2026/Mathe II/29592601 - Integration.md",
|
||||||
"99 Templates/New File Template.md",
|
"99 Templates/New File Template.md",
|
||||||
|
"20 Atlas",
|
||||||
|
"30 Library/29592593 - ET_II_Folien_gesamt_020426.pdf",
|
||||||
|
"10 Courses/02 - SoSe 2026/ET II/Zählpfeilsysteme.md",
|
||||||
|
"10 Courses/02 - SoSe 2026/ET II/Elektrotechnik II.md",
|
||||||
|
"00 Inbox/29592877 - review.md",
|
||||||
|
"00 Inbox/29592872.615316667 - Lecture 1 Recp.md",
|
||||||
|
"00 Inbox/1775572307685 - Lecture 1 Summary.md",
|
||||||
|
"10 Courses/02 - SoSe 2026/ET II/Übungsaufgabe 1.md",
|
||||||
|
"10 Courses/02 - SoSe 2026/ET II/Kirchhoffsche Gesetze.md",
|
||||||
|
"10 Courses/02 - SoSe 2026/ET II/Zeitabhängige Größen.md",
|
||||||
|
"10 Courses/02 - SoSe 2026/ET II/Übungsaufgabe 2.md",
|
||||||
|
"30 Library/ET_II_Folien_gesamt_020426.pdf",
|
||||||
"30 Library/d6d88eed747e389e597d2a19bb868ee6?cid=4b45b3a6f32c35a6d9ca5b1b07b760de",
|
"30 Library/d6d88eed747e389e597d2a19bb868ee6?cid=4b45b3a6f32c35a6d9ca5b1b07b760de",
|
||||||
"30 Library/wget-log",
|
"30 Library/wget-log",
|
||||||
"00 Inbox/Kirchhoffsche Gesetze.md",
|
|
||||||
"Untitled.md",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/DAS/Formulas.md",
|
"10 Courses/01 - WiSe 2025_26/DAS/Formulas.md",
|
||||||
"10 Courses/02 - SoSe 2026/Mathe II/Integration.md",
|
"10 Courses/02 - SoSe 2026/Mathe II/Integration.md",
|
||||||
"Test File.md",
|
"Test File.md",
|
||||||
"10 Courses/02 - SoSe 2026/ET II/Klausur.md",
|
|
||||||
"Online test.md",
|
|
||||||
"99 Templates/New File Template",
|
"99 Templates/New File Template",
|
||||||
"99 Templates",
|
"99 Templates",
|
||||||
"10 Courses/02 - SoSe 2026/ET II/Elektrotechnik II.md",
|
|
||||||
"00 Inbox",
|
"00 Inbox",
|
||||||
"90 Archive",
|
"90 Archive",
|
||||||
"30 Library",
|
"30 Library",
|
||||||
"10 Courses/01 - WiSe 2025_26",
|
|
||||||
"10 Courses/02 - SoSe 2026",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/DAS/Arithmetic.md",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/DAS/Counting.md",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/DAS/Relations.md",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/DAS/Groups.md",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/DAS/Logic.md",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/DAS/Functions.md",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/DAS/Set Theory.md",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/DAS/Studium.md",
|
|
||||||
"DAS/merge.md",
|
|
||||||
"mathe/notation.md",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/ET/Netzwerke.md",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/ET/Kirchhoffsche Regeln.md",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/ET/Grundlagen.md",
|
|
||||||
"10 Courses/01 - WiSe 2025_26/ET/images/beispiel_knotenregel.png"
|
"10 Courses/01 - WiSe 2025_26/ET/images/beispiel_knotenregel.png"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
created: 2026-04-07 14:02
|
created: 2026-04-07 16:31
|
||||||
course: "[[Elektrotechnik II]]"
|
course:
|
||||||
topic:
|
topic:
|
||||||
type: lecture
|
type: lecture
|
||||||
status: 🔴
|
status: 🔴
|
||||||
tags:
|
tags:
|
||||||
- university
|
- university
|
||||||
---
|
---
|
||||||
|
|
||||||
# Zeitabhängige Größen
|
|
||||||
|
|
||||||
## 📌 Summary
|
## 📌 Summary
|
||||||
|
|
||||||
> [!abstract]
|
> [!abstract]
|
||||||
18
.trash/29592872.615316667 - Lecture 1 Recp.md
Normal file
18
.trash/29592872.615316667 - Lecture 1 Recp.md
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
---
|
||||||
|
created: 2026-04-07 16:32
|
||||||
|
course:
|
||||||
|
topic:
|
||||||
|
type: lecture
|
||||||
|
status: 🔴
|
||||||
|
tags:
|
||||||
|
- university
|
||||||
|
---
|
||||||
|
## 📌 Summary
|
||||||
|
|
||||||
|
> [!abstract]
|
||||||
|
>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📝 Content
|
||||||
|
|
||||||
18
.trash/29592877 - review.md
Normal file
18
.trash/29592877 - review.md
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
---
|
||||||
|
created: 2026-04-07 16:37
|
||||||
|
course:
|
||||||
|
topic:
|
||||||
|
type: lecture
|
||||||
|
status: 🔴
|
||||||
|
tags:
|
||||||
|
- university
|
||||||
|
---
|
||||||
|
## 📌 Summary
|
||||||
|
|
||||||
|
> [!abstract]
|
||||||
|
>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📝 Content
|
||||||
|
|
||||||
19
.trash/29593223 - 29593223 - Elektrotechnik II.md
Normal file
19
.trash/29593223 - 29593223 - Elektrotechnik II.md
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
created: 2026-04-07 22:23
|
||||||
|
course:
|
||||||
|
topic:
|
||||||
|
related:
|
||||||
|
type: lecture
|
||||||
|
status: 🔴
|
||||||
|
tags:
|
||||||
|
- university
|
||||||
|
---
|
||||||
|
## 📌 Summary
|
||||||
|
|
||||||
|
> [!abstract]
|
||||||
|
>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📝 Content
|
||||||
|
|
||||||
19
.trash/29593223 - Elektrotechnik II.md
Normal file
19
.trash/29593223 - Elektrotechnik II.md
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
created: 2026-04-07 22:23
|
||||||
|
course:
|
||||||
|
topic:
|
||||||
|
related:
|
||||||
|
type: lecture
|
||||||
|
status: 🔴
|
||||||
|
tags:
|
||||||
|
- university
|
||||||
|
---
|
||||||
|
## 📌 Summary
|
||||||
|
|
||||||
|
> [!abstract]
|
||||||
|
>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📝 Content
|
||||||
|
|
||||||
19
.trash/29593224 - 29593223 - 29593223 - Elektrotechnik II.md
Normal file
19
.trash/29593224 - 29593223 - 29593223 - Elektrotechnik II.md
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
created: 2026-04-07 22:24
|
||||||
|
course:
|
||||||
|
topic:
|
||||||
|
related:
|
||||||
|
type: lecture
|
||||||
|
status: 🔴
|
||||||
|
tags:
|
||||||
|
- university
|
||||||
|
---
|
||||||
|
## 📌 Summary
|
||||||
|
|
||||||
|
> [!abstract]
|
||||||
|
>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📝 Content
|
||||||
|
|
||||||
19
.trash/29593226 - ET_II_Folien_gesamt_020426.pdf.md
Normal file
19
.trash/29593226 - ET_II_Folien_gesamt_020426.pdf.md
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
created: 2026-04-07 22:26
|
||||||
|
course:
|
||||||
|
topic:
|
||||||
|
related:
|
||||||
|
type: lecture
|
||||||
|
status: 🔴
|
||||||
|
tags:
|
||||||
|
- university
|
||||||
|
---
|
||||||
|
## 📌 Summary
|
||||||
|
|
||||||
|
> [!abstract]
|
||||||
|
>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📝 Content
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
---
|
|
||||||
created: 2026-04-07 14:13
|
|
||||||
course: "[[Elektrotechnik II]]"
|
|
||||||
topic:
|
|
||||||
type: lecture
|
|
||||||
status: 🔴
|
|
||||||
tags:
|
|
||||||
- university
|
|
||||||
---
|
|
||||||
|
|
||||||
# Zählpfeilsysteme
|
|
||||||
|
|
||||||
## 📌 Summary
|
|
||||||
|
|
||||||
> [!abstract]
|
|
||||||
>
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 📝 Content
|
|
||||||
|
|
||||||
Siehe Seite 27 und 28 in den [[ET_II_Folien_gesamt_020426.pdf|Vorlesungsfolien]]:
|
|
||||||
|
|
||||||

|
|
||||||
@@ -1,4 +1,9 @@
|
|||||||
---
|
---
|
||||||
|
created: 2026-04-07 14:02
|
||||||
|
course: "[[29592673 - Elektrotechnik II]]"
|
||||||
|
type: overview
|
||||||
|
---
|
||||||
|
---
|
||||||
Professor. Dr.-Ing. Christian Becker
|
Professor. Dr.-Ing. Christian Becker
|
||||||
<mark style="background: #FFF3A3A6;">Zeiten:</mark>
|
<mark style="background: #FFF3A3A6;">Zeiten:</mark>
|
||||||
- Montag, `11:30` Uhr, Audimax 2
|
- Montag, `11:30` Uhr, Audimax 2
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
created: 2026-04-07 14:02
|
||||||
|
course: "[[29592673 - Elektrotechnik II]]"
|
||||||
|
topic: "#sine #cosine"
|
||||||
|
type: lecture
|
||||||
|
status: ⚪ - Incomplete
|
||||||
|
tags:
|
||||||
|
- university
|
||||||
|
---
|
||||||
|
|
||||||
|
# Zeitabhängige Größen
|
||||||
|
|
||||||
|
## 📌 Summary
|
||||||
|
|
||||||
|
> [!abstract]
|
||||||
|
> Definition der "Normalform" der Sinusfunktion
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📝 Content
|
||||||
|
|
||||||
|
### Sinusfunktion
|
||||||
|
Normalform: $x(t) = hat(x) * sin(omega t + phi)$
|
||||||
|
- $hat(x)$: Amplitude (positive Zahl)
|
||||||
|
- $omega$: $2pi * f$ = Kreisfrequenz [rad/s]
|
||||||
|
- $f$: $1/T$ = Frequenz [Hz]
|
||||||
|
- $T$: Periodendauer [s]
|
||||||
|
- $phi$: Gesamtphasenwinkel [Rad / Grad]
|
||||||
|
|
||||||
|
> [!INFO] Warum Sinus/Cosinus
|
||||||
|
> - gleichförmige Bewegung im Kreis
|
||||||
|
> - dient als "Aufbau" für alle periodischen Funktionen
|
||||||
|
> - Verwendung im Ausdruck komplexer Zahlen
|
||||||
|
> - "Reproduktion" beim Ableiten / Integrieren
|
||||||
|
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
---
|
---
|
||||||
created: 2026-04-07 14:09
|
created: 2026-04-07 14:09
|
||||||
course: "[[Elektrotechnik II]]"
|
course: "[[29592673 - Elektrotechnik II]]"
|
||||||
topic: "#kirchhoffsLaws"
|
topic: "#kirchhoffsLaws"
|
||||||
type: lecture
|
type: lecture
|
||||||
status: 🔴
|
status: 🟢
|
||||||
tags:
|
tags:
|
||||||
- university
|
- university
|
||||||
---
|
---
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
created: 2026-04-07 14:13
|
||||||
|
course: "[[29592673 - Elektrotechnik II]]"
|
||||||
|
topic:
|
||||||
|
type: lecture
|
||||||
|
status: 🔴
|
||||||
|
tags:
|
||||||
|
- university
|
||||||
|
---
|
||||||
|
|
||||||
|
# Zählpfeilsysteme
|
||||||
|
|
||||||
|
## 📌 Summary
|
||||||
|
|
||||||
|
> [!abstract]
|
||||||
|
>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📝 Content
|
||||||
|
|
||||||
|
Siehe Seite 27 und 28 in den [[29593226 - ET_II_Folien_gesamt_020426.pdf|Vorlesungsfolien]]:
|
||||||
|
|
||||||
|
![[29592593 - ET_II_Folien_gesamt_020426.pdf#page=27]]
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
created: 2026-04-07 14:31
|
||||||
|
course: "[[29592673 - Elektrotechnik II]]"
|
||||||
|
topic:
|
||||||
|
type: task
|
||||||
|
status: 🔴
|
||||||
|
tags:
|
||||||
|
- university
|
||||||
|
- übungsaufgabe
|
||||||
|
---
|
||||||
|
# Übungsaufgabe 1
|
||||||
|
|
||||||
|
## 📝 Content
|
||||||
|
|
||||||
|
![[29592593 - ET_II_Folien_gesamt_020426.pdf#page=54]]
|
||||||
|
|
||||||
|
a) $25"ms"$
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
created: 2026-04-07 14:35
|
||||||
|
course: "[[29592673 - Elektrotechnik II]]"
|
||||||
|
topic:
|
||||||
|
type: task
|
||||||
|
status: 🔴
|
||||||
|
tags:
|
||||||
|
- university
|
||||||
|
---
|
||||||
|
|
||||||
|
# Übungsaufgabe 2
|
||||||
|
|
||||||
|
## 📝 Content
|
||||||
|
![[29592593 - ET_II_Folien_gesamt_020426.pdf#page=55]]
|
||||||
14
20 Atlas/ET II - Map of Content.md
Normal file
14
20 Atlas/ET II - Map of Content.md
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
|
||||||
|
```dataview
|
||||||
|
TABLE topic AS "Concept", status AS "Review Status"
|
||||||
|
FROM "10 Courses/02 - SoSe 2026/ET II"
|
||||||
|
WHERE type = "lecture" OR type = "concept"
|
||||||
|
SORT created ASC
|
||||||
|
```
|
||||||
|
|
||||||
|
```dataview
|
||||||
|
TABLE topic AS "Topic", status AS "Status"
|
||||||
|
FROM "10 Courses/02 - SoSe 2026/ET II"
|
||||||
|
WHERE type = "task"
|
||||||
|
SORT created ASC
|
||||||
|
```
|
||||||
@@ -1,19 +1,19 @@
|
|||||||
<%*
|
<%*
|
||||||
// Move the file to the Inbox immediately upon creation
|
// Move the file to the Inbox immediately upon creation
|
||||||
await tp.file.move("/00 Inbox/" + tp.file.title);
|
let date = Math.floor(Date.now() / 60000)
|
||||||
|
let newName = `${date} - ${tp.file.title}`
|
||||||
|
await tp.file.move("/00 Inbox/" + newName)
|
||||||
-%>
|
-%>
|
||||||
---
|
---
|
||||||
created: <% tp.date.now("YYYY-MM-DD HH:mm") %>
|
created: <% tp.date.now("YYYY-MM-DD HH:mm") %>
|
||||||
course:
|
course:
|
||||||
topic:
|
topic:
|
||||||
|
related:
|
||||||
type: lecture
|
type: lecture
|
||||||
status: 🔴
|
status: 🔴
|
||||||
tags:
|
tags:
|
||||||
- university
|
- university
|
||||||
---
|
---
|
||||||
|
|
||||||
# <% tp.file.title %>
|
|
||||||
|
|
||||||
## 📌 Summary
|
## 📌 Summary
|
||||||
|
|
||||||
> [!abstract]
|
> [!abstract]
|
||||||
@@ -22,3 +22,4 @@ tags:
|
|||||||
---
|
---
|
||||||
|
|
||||||
## 📝 Content
|
## 📝 Content
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user