Spent a good day trying to recreate the Cornell Method setup but we all know how finnicky tables are in Obsidian. After ruminating on it a bit, I came to the conclusion that in digitial spaces, the Cornell Method layout isn’t nearly as important as the overarching structure: clearly delineated sections + spaced repetition that requires active recall.
Here is the workflow I’m using currently:
<%* let newChapterName = await tp.system.prompt(“What would you like to name the Cornell Note Chapter?”); -%>
<% newChapterName %>
Record/Review/Reflect
- [ ]
Main Notes
- <% tp.file.cursor(1) %>
Summary
- [[Incomplete Review]]
Here’s a breakdown of the reasoning behind. Each # corresponds to a line of text in the above code:
- This is templater code so that a pop up prompts you for the chapter name once the template is triggered.
- This header is auto-populated w/ whatever I typed in the prompt.
- This the header for the Review/Important section. In the traditional Cornell Method layout, this would be the margin on the far left. The header size is smaller to mirror the smaller width in the OG format. I keep this ‘collapsed’ 95% of the time so that it doesn’t take up space. The only time I utilize it is when I’m entering an important note or later on when I’m reviewing the document
- This is where I jot down key facts or ask myself questions Each thing I jot down gets a new checkbox. Then, when I revisit the doc for review, I can check the box for each successful review (or in my case each important fact I turn into a flashcard in Anki) and mark it as complete. What makes this special is that I can then do a global search in Obsidian to find any skipped reviews. This can be accomplished by searching for “[ ]” because marking something as ‘complete’ in markdown turns the text from “[ ]” to “[x]”.
- This is where I jot down all of my detailed notes. General facts and also more in-depth explanations that answers questions & prompts in the ‘Record/Review/Reflect’ section
- Since you will almost always start note-taking w/ generally facts, the templater code places the cursor here as soon as a new chapter is created. The only time I collapse this section is when I’m doing my review.
- Header for the Summary section. This would be the bottom of the page in the traditional Cornell Notes layout
- I caught myself skipping out on the summary, so now, every created Cornell Notes chapter O create links to a note called “Incomplete Review”. After turning on the backlink/toggling it in the options, the ‘Incomplete Review’ page turns into a source document for every Cornell Note that is missing a summary
Once I complete a summary of the chapter, I delete the link to the page.
Feel free to share any feedback/suggestions or tips you have for your Cornell Method workflow/workaround.