Sure!
When I made that comment, almost a year ago, linking to headings wasn’t a possibility. Now in regards to laws I can just link to a heading that refers to a specific article/chapter/etc. Same goes for notes on academic articles or any short document (short as in, not a book). The first thing I do when creating a new “resource” note is to create headings according to table of contents of the document.
That’s just one way in which Obsidian has evolved. With the Dataview plugin, I can use metadata to sort all different files. Using the Templater plugin, I also have the file metadata as for when I created this file and when I last modified it. I haven’t been making good use of tags yet, but I plan on eventually implementing them to sort through topics.
Once I have the headings in place, I have a structure for the note. Within the heading, I start taking notes in usually bullet points, because that’s easier. Most of my PDFs are formatted in a way that simple copy/paste is a solution when I want to directly cite, but I try not to do that too much (I’m guilty of taking notes by “highlighting”, which isn’t very effective for me).
My files are named “SURNAME, Title”. My template (inspired by great examples on the Dataview Snippet Showcase) for any resource I find looks like this:
---
creationdate: <% tp.file.creation_date("dddd Do MMMM YYYY") %>
creationdatetime: <% tp.file.creation_date("HH:mm") %>
lastmodified: <% tp.file.last_modified_date("dddd Do MMMM YYYY") %>
lastmodifiedtime: <% tp.file.last_modified_date("HH:mm") %>
aliases: []
tags:
-
type: book/article/caselaw/notes
source:
author: SURNAME, Name
title:
yearpublished:
---
And then on an Index note I put this, using the Dataview plugin:
```dataview
TABLE author as Author, title as Title, yearpublished as Year, tags as Topics, source as Source
FROM "FOLDER"
where type = "book (for example)"
sort author asc
```
Which shows all the notes that fit that criteria.