Syntax
Essential Format Syntax
Headers
Use headers to structure your presentation:
# Presentation Title
## Slide Title
### Subtopic
Text Formatting
Emphasize key points:
- Italic: *italic* or _italic_
- Bold: **bold** or __bold__
- <->Bold and Italic<->: <->bold and italic<->
Lists
Organize information clearly:
Unordered lists:
- Main point
- Supporting detail
- Another detail
Ordered lists:
1. First step
2. Second step
1. Substep A
2. Substep B
Links and Images
Enhance slides with visual elements:
- Links: [Link text](URL)
- Images: 
Blockquotes
Highlight important quotes:
> This is a key takeaway or quote.
Advanced Format Features
Code Blocks
Showcase code snippets:
```python
def greet(name):
print(f"Hello, {name}!")
```
Tables
Present structured data:
| Feature | Benefit |
|---------|---------|
| Easy | Saves time |
| Flexible| Adaptable |
Task Lists
Show progress or plans:
- [x] Completed task
- [ ] Upcoming task
LaTeX
Include mathematical expressions:
- Inline: $E = mc^2$
- Block:
markdown
$$
\frac{d}{dx}e^x = e^x
$$
Mermaid Diagrams
Visualize processes or structures:
```mermaid
graph LR
A[Start] --> B{Decision}
B -->|Yes| C[Action]
B -->|No| D[End]
```
Callouts
Highlight important information:
> [!NOTE]
> This is an important point to remember.
> [!TIP]
> Here's a helpful suggestion.
Slide Layout Syntax
Creating New Slides
Using Headers
Each header starts a new slide:
## Slide 1: Introduction
Content for first slide
## Slide 2: Key Points
Content for second slide
Using Horizontal Rules
Manually create slides with ---:
Content for slide 1
---
Content for slide 2
In-slide Layout
Horizontal Separation
Create columns with <->:
Left column content
<->
Right column content
Vertical Separation
Stack content with ===:
Top section
===
Bottom section
Combined Layouts
Create complex layouts:
Top row
===
Left column
<->
Right column
===
Bottom row
Layout Best Practices
- Use consistent formatting across slides.
- Balance text and visuals for engagement.
- Utilize white space to avoid clutter.
- Preview slides regularly to ensure intended layout.
Remember, effective slides combine clear organization with visual appeal. Experiment with layouts to find what best suits your presentation style and content.