Neocortex 🧠

Search

Search IconIcon to open search

Taking Notes With Obsidian

Last updated Jun 20, 2022 Edit Source

I use Obsidian to take notes and publish them using GitHub Pages and Quartz(It’s very cool, you should check it out.).

# Obsidian

I use plugins to make my note-taking experience much smoother. Here is a list:

# Quartz

In order to make quartz work with my setup, I had to make changes but now I can write notes in obsidian without worrying about whether I will be able to publish them. If you ever decide to implement my workflow, I strongly suggest building off-of my note-taking repository instead of using the default quartz one.

# The way I take notes

When studying, I create notes for each new concept, idea or terminology that I run into and link to that note whenever it is being referred in one of my notes. It is not really a Zettelkasten, but not a wiki either. Maybe a ZettelWiki, or a WikiKasten (name is a WIP).

# Custom Shortcodes

# Plots

My edits allows you to draw plots. For instance, the following codeblock:

1
2
3
4
```plot
size: 350em
plot cos(x)
```

Generates the following.

You can also create interactive plots where the user can control:

1
2
3
4
```plotinteractive
size: 350em
plot sin(x)/x
```

Generates the following.

# Admonitions

You can also insert admonitions like so

1
2
3
>  Example
>
> This is an admonition

Example

This is an admonition


Interactive Graph