Loading...
Loading...
Transform lecture materials (slides, PDFs, text snippets, transcripts) into comprehensive, exam-ready Markdown notes for Obsidian. Use when the user provides lecture content, study materials, or asks to take notes, summarize lectures, or create study guides. Outputs structured notes with key concepts, definitions, LaTeX math, and exam-important callouts.
npx skill4agent add emmsixx/skills lecture-notesChapter X - Title.mdUnit X - Title.md---
course: [Course name if known]
lecture: [Lecture number/title]
date: [Date if provided]
tags: [relevant, topic, tags]
---
# Title
Brief overview connecting to previous material when applicable.
## Key Concepts
Bulleted summary of the most important takeaways.
## [Content Sections]
Organized by topic from the source material.
## Definitions
New terms introduced in this lecture.
## [Additional Sections as Needed]
Examples, proofs, diagrams, etc.## Section Title
Content starts here directly below the heading.$...$$$...$$The quadratic formula is $x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$.
$$
\int_0^\infty e^{-x^2} dx = \frac{\sqrt{\pi}}{2}
$$This concept was introduced in 1905[^1].
[^1]: Additional context or clarification here.> [!important] Exam Alert
> This formula is frequently tested.
> [!note] Remember
> Supplementary context or tips.
> [!example] Worked Example
> Step-by-step demonstration.
> [!warning] Common Mistake
> Students often confuse X with Y.
> [!definition] Term
> Formal definition here.[[double brackets]]This relates to [[Chapter 2 - Thermodynamics#Entropy]].## Definitions## Definitions
**Term**
Precise definition immediately below.
**Another Term**
Its definition here.## Key Concepts
- Builds on [[Chapter 3 - Kinematics]] by introducing forces
- Extends the velocity equations to include acceleration> [!example] Finding the Derivative
> Given $f(x) = x^3 + 2x$, find $f'(x)$.
>
> **Solution:**
> $$f'(x) = 3x^2 + 2$$```markdown
<!-- Chapter 1 - Introduction.md -->
---
course: Physics 101
...
``````markdown
<!-- Chapter 2 - Mechanics.md -->
---
course: Physics 101
...
```