Headings
You can create headings using the
#
symbol, with six levels of headings available, each with a different font size. For example:Heading level 1
Heading level 2
Heading level 3
Heading level 4
Heading level 5
Heading level 6
Lists
Unordered lists
To create an unordered list, start each item with a
-
, *
, or +
symbol. For example:Item 1
Item 2
Item 3
Ordered lists
To create an ordered list, start each item with a number followed by a period. For example:
Item 1
Item 2
Item 3
Item 4
Item 5
Item 6
Item 7
Item 8
Item 9
Item 10
Item 11
Hello there
AAAAAA
Here!!!
AAAA
BBBB
What the fuck?
This is inline block number 1
This is number 2 block
111
17. 33333
18..
Blockquotes
Use the
>
symbol to create a blockquote. For example:This is a blockquote.
Bold and Italic
Use
**
or __
to bold text, and *
or _
to italicize text. For example:This text is bold.This text is also bold.This text is italicized.This text is also italicized.Links
To create a link, use the following syntax:
[link text](URL)
. For example:
This is a link to Google.Images
To insert an image, use the following syntax:
![alt text](image URL)
. For example:
Code
#include <stdio.h>
int main() {
printf("Hello, world!");
return 0;
}
This is Bulleted list include code block
System.out.println("Hello, world!"); System.out.println("Hello, world!"); System.out.println("Hello, world!");
This is Numbered list include code block This is Numbered list include code block This is Numbered list include code block This is Numbered list include code block
System.out.println("Hello, world!"); System.out.println("Hello, world!"); System.out.println("Hello, world!");
This is Toggled list include code block
Tables
Creating tables in Notion is straightforward. Simply start with a line containing hyphens
-
separated by three vertical bars |
. The line below it should contain the column headers, separated by |
. For instance:| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| Text | Text | Text |
This would create a table with three columns.
A | B | C |
A | A | A |
C | C | C |
Long table
A | B | C | D | E | F | G | H | I |
ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ |
ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ |
ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ |
ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ | ㅤ |
Embeds
Notion also allows you to embed content from other sites directly into your pages. This can be anything from a YouTube video, to a Google Map, to a Tweet.
To embed something into your Notion page, follow these steps:
Open a Notion page and click on the
/
icon to bring up the command menu.Type "embed" into the search bar and select the type of content you want to embed from the list of options.
Paste the URL of the content you want to embed into the box that appears and click "Embed Link".
Callouts
Callouts are a great way to draw attention to a specific piece of information. To create a callout, use the
/
command and type "callout". You can then type your text and choose an emoji to accompany the callout.This is callout block
To-do Lists
Notion also allows you to create to-do lists within your pages. To create a to-do list, use the
/
command and type "to-do". You can then type your tasks. Each task will have a checkbox next to it that you can check off when the task is complete.To-do list here 👋🏻 (include code block)
System.out.println("Hello, world!"); System.out.println("Hello, world!"); System.out.println("Hello, world!");
Complete tasks
Reminders and Due Dates
If you have a task with a specific due date, you can set a reminder for that task. To do this, use the
/
command and type "remind". You can then choose the date and time for your reminder.Conclusion
Notion offers a wide range of formatting options that can help you create comprehensive and visually appealing documents. By familiarizing yourself with these options, you can make the most of what Notion has to offer.
Color highlight
Hi, Mason This is Blue background…
Hi, MasonThis is Blue background…
Hi, MasonThis is Red background~
Using LaTeX in Notion Pages
Notion allows you to use LaTeX in your pages, allowing you to create complex mathematical equations and expressions.
To use LaTeX in your Notion page, follow these steps:
Open a Notion page and click on the
/
icon to bring up the command menu.Type "LaTeX" into the search bar and select "Block Equation" from the list of options.
Type your LaTeX code into the equation editor that appears. For example, to create the equation
x^2 + y^2 = r^2
, you would type x^2 + y^2 = r^2
into the editor.Click "Done" to insert the equation into your page.
Mermaid
Sequence diagrams
A Sequence diagram is an interaction diagram that shows how processes operate with one another and in what order.
Mermaid can render sequence diagrams.
sequenceDiagram
Alice->>John: Hello John, how are you?
John-->>Alice: Great!
Alice-)John: See you later!
Flowcharts
Flowcharts are composed of nodes (geometric shapes) and edges (arrows or lines). The Mermaid code defines how nodes and edges are made and accommodates different arrow types, multi-directional arrows, and any linking to and from subgraphs.
flowchart LR
A[Hard edge] -->|Link text| B(Round edge)
B --> C{Decision}
C -->|One| D[Result one]
C -->|Two| E[Result two]
It is possible to apply specific styles such as a thicker border or a different background color to a node.
flowchart LR
id1(Start)-->id2(Stop)
style id1 fill:#f9f,stroke:#333,stroke-width:4px
style id2 fill:#bbf,stroke:#f66,stroke-width:2px,color:#fff,stroke-dasharray: 5 5
Class diagrams
"In software engineering, a class diagram in the Unified Modeling Language (UML) is a type of static structure diagram that describes the structure of a system by showing the system's classes, their attributes, operations (or methods), and the relationships among objects."Wikipedia
The class diagram is the main building block of object-oriented modeling. It is used for general conceptual modeling of the structure of the application, and for detailed modeling to translate the models into programming code. Class diagrams can also be used for data modeling. The classes in a class diagram represent both the main elements, interactions in the application, and the classes to be programmed.
Mermaid can render class diagrams.
Code:
---
title: Animal example
---
classDiagram
note "From Duck till Zebra"
Animal <|-- Duck
note for Duck "can fly\ncan swim\ncan dive\ncan help in debugging"
Animal <|-- Fish
Animal <|-- Zebra
Animal : +int age
Animal : +String gender
Animal: +isMammal()
Animal: +mate()
class Duck{
+String beakColor
+swim()
+quack()
}
class Fish{
-int sizeInFeet
-canEat()
}
class Zebra{
+bool is_wild
+run()
}
Support List
Github Embed:
Zygisk-Il2CppDumper
Perfare
•
Updated in Oct 6, 2024
Github Empty Embed:
Tweet Embed:
Page Refer:
Mention:
Google Drive Embed: