### How to Use This Template This is a basic template for creating a cheatsheet. You can fill it with information relevant to your course or study topic. #### 1. Title and Summary - Update the `cs-title` and `cs-summary` in the ` ` tags at the top. - The title should be short and descriptive (e.g., "Calculus I", "Organic Chemistry"). - The summary can describe the content or version (e.g., "Derivatives and Integrals", "First Draft"). #### 2. Section Headings - Use `###` for main section headings. - Each main section MUST be wrapped in ` ` and ` ` markers. - Slugs should be lowercase, use hyphens, and be unique (e.g., ` `). #### 3. Subsections and Content - Use `####` for subsections within a main section. - Use `**bold**` for key terms. - Use bullet points (`-`) or numbered lists (`1.`). - Use `inline code` for short code snippets. - Use fenced code blocks (```language) for multi-line code. - Use `$` for inline math and `$$` for display math. #### 4. Editing - You can ask me to edit specific sections by name (e.g., "Add more details to the 'Key Concepts' section"). - You can also ask for a full rewrite if you want to start over. ### Key Concepts - **Concept 1:** A brief explanation of the first key concept. - **Concept 2:** Another important concept. - Sub-point about Concept 2. - Another sub-point. #### Important Formulas - Formula 1: $$ E = mc^2 $$ - Formula 2: $F = ma$ ### Examples #### Example 1: Basic Calculation Let's say we have a simple equation: `x + 2 = 5` To solve for `x`: 1. Subtract 2 from both sides: `x = 5 - 2` 2. Result: `x = 3` #### Example 2: Code Snippet ```python # This is a Python example def hello_world(): print("Hello, Cheatsheet!") hello_world() ``` ### Glossary - **Term A:** Definition of Term A. - **Term B:** Definition of Term B. - **Term C:** Definition of Term C with an example: `C = A + B`