Quick Start
Step 1: Install Slidev
First, make sure you have Node.js installed (download from nodejs.org). Then open your terminal (Command Prompt on Windows, Terminal on Mac/Linux) and run:
bash
npm install -g @slidev/clibash
yarn global add @slidev/clibash
pnpm add -g @slidev/cliWhat does this do? It installs Slidev on your computer so you can use it anywhere.
Step 2: Create Your First Presentation
bash
# Create a new folder for your presentation
mkdir my-talk
cd my-talk
# Create your slides file
echo "---
theme: scholarly
---
# My First Academic Talk
Your name here
---
# Introduction
- Point 1
- Point 2
- Point 3
" > slides.mdStep 3: Preview Your Presentation
bash
slidev slides.mdYour browser will open automatically showing your presentation! Press the right arrow key to move between slides.
Tip: Keep the terminal running. Any changes you make to
slides.mdwill show up immediately in your browser!