vault backup: 2026-08-03 08:57:51
This commit is contained in:
128
100.Orga/Showroom.md
Normal file
128
100.Orga/Showroom.md
Normal file
@@ -0,0 +1,128 @@
|
||||
---
|
||||
banner: "![[showroom.jpg]]"
|
||||
banner_icon: 👀
|
||||
banner_y: 0.5
|
||||
cssclass: banner-bug
|
||||
based on: v.1.2
|
||||
---
|
||||
|
||||
#firstTag #secondTag #thirdTag
|
||||
# 1 Headings Level 1
|
||||
## 1.1 Headings Level 2
|
||||
### 1.1.1 Headings Level 3
|
||||
#### 1.1.1.1 Headings Level 4
|
||||
##### 1.1.1.1.1 Headings Level 5
|
||||
|
||||
To add or remove the numbers in the headings, open the Command palette (`Ctrl + P`) and enter `Number all headings in document`
|
||||
|
||||
# 2 Text
|
||||
See here: [[2.Text formatting]]
|
||||
|
||||
# 3 Math
|
||||
$3x + 4y = 9$
|
||||
|
||||
# 4 Media
|
||||
## 4.1 Get free banners
|
||||
Get free images for the banner here: https://unsplash.com/
|
||||
|
||||
## 4.2 Simple image
|
||||
![[folders.jpg|700]]
|
||||
|
||||
# 5 Admonition
|
||||
```ad-note
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla.
|
||||
```
|
||||
|
||||
Find more here: [[5.Admonition]]
|
||||
|
||||
# 6 Tables
|
||||
|
||||
| | Monday | Tuesday | Wednesday | Thursday | Friday |
|
||||
| ----------------------- | ------ | ------- | --------- | -------- | ------ |
|
||||
| 1 + 2 <br> 8:45-10:30 | a | a | B | E | d |
|
||||
| 3 + 4 <br> 10:45-12:30 | e | e | B | E | e |
|
||||
| Pause | | | | | |
|
||||
| 5 + 6 <br> 13:30-15:15 | B | E | e | e | e |
|
||||
| 7 + 8 <br> 15:30-17:15 | B | E | e | d | e |
|
||||
| 9 + 10 <br> 17:30-19:15 | E | d | e | B | |
|
||||
|
||||
# 7 Programming
|
||||
## 7.1 Code
|
||||
```python
|
||||
def fib(n):
|
||||
""" Print a Fibonacci series up to n """
|
||||
result = []
|
||||
a, b = 0, 1
|
||||
|
||||
while a < n:
|
||||
result.append(a)
|
||||
a, b = b, a+b
|
||||
|
||||
return result
|
||||
|
||||
# Function call with parameter, print return value
|
||||
print(fib(2000))
|
||||
```
|
||||
|
||||
More Examples are here: [[7.1.Code]]
|
||||
|
||||
## 7.2 Kanban Board
|
||||
👉 [[7.2.Kanban Board Example]]
|
||||
|
||||
## 7.3 UML
|
||||
```plantuml
|
||||
Bob -> Alice : hello
|
||||
Alice -> Wonderland: hello
|
||||
Wonderland -> next: hello
|
||||
next -> Last: hello
|
||||
Last -> next: hello
|
||||
next -> Wonderland : hello
|
||||
Wonderland -> Alice : hello
|
||||
Alice -> Bob: hello
|
||||
```
|
||||
|
||||
# 8 Dataview
|
||||
- GitHub Page: https://github.com/blacksmithgu/obsidian-dataview
|
||||
- Examples are here: [[8.Dataview]]
|
||||
|
||||
# 9 Templates
|
||||
- [[3D Print Other Designs]]
|
||||
- [[3D Print Own Design]]
|
||||
- [[Banner Template]]
|
||||
- [[Daily Template]]
|
||||
- [[Project Template]]
|
||||
- [[Song Template]]
|
||||
|
||||
# 10 Charts
|
||||
👉 [[10.Charts]]
|
||||
|
||||
| | Test1 | Test2 | Test3 |
|
||||
| ----- | ----- | ----- | ----- |
|
||||
| Data1 | 1 | 2 | 3.33 |
|
||||
| Data2 | 3 | 2 | 1 |
|
||||
| Data3 | 6.7 | 4 | 2 |
|
||||
^table
|
||||
|
||||
```chart
|
||||
type: bar
|
||||
id: table
|
||||
layout: rows
|
||||
width: 80%
|
||||
beginAtZero: true
|
||||
```
|
||||
|
||||
# 11 Habit Tracker
|
||||
|
||||
|
||||
# Tabs
|
||||
```
|
||||
G|----------------|----------------|----------------|----------------|
|
||||
D|----------------|----------------|----------------|----------------|
|
||||
A|----------------|----------------|----------------|5-----------5-6-|
|
||||
E|0---------------|3---------------|5---------------|----------------| x2
|
||||
1 + 2 + 3 + 4 + 1 + 2 + 3 + 4 + 1 + 2 + 3 + 4 + 1 + 2 + 3 + 4 +
|
||||
```
|
||||
|
||||
|
||||
# Latest Change-Log
|
||||
![[Version Log#v.1.2 - 08.02.2023]]
|
||||
Reference in New Issue
Block a user