# How to Do a Subscript on Mac: Every Method Explained Subscript text sits slightly below the normal line of type and appears smaller than surrounding characters. You see it in chemical formulas like H₂O, mathematical expressions, and footnote references. On a Mac, getting that effect depends heavily on which app you're using — and that's the key variable most guides skip over. ## What Subscript Actually Does (and Why It's Not Universal) **Subscript** is a text formatting property, not a system-wide keyboard character. That distinction matters. Unlike typing a capital letter or an em dash, subscript isn't a single keypress that works everywhere. It's a formatting instruction your application has to support and render. This means the method you use in **Pages** won't work in **Terminal**, and what works in **Microsoft Word** won't automatically transfer to a plain-text email. Your app — and sometimes its version — determines your options. ## Method 1: Keyboard Shortcut in Pages, Word, and TextEdit For most document-editing apps on macOS, the fastest approach is a keyboard shortcut applied to selected text. ### In Apple Pages 1. Select the text you want to make subscript 2. Press **Command (⌘) + Control + Minus (–)** That's the built-in Pages shortcut. It toggles on and off, so the same combination removes subscript formatting. ### In Microsoft Word for Mac 1. Select the target text 2. Press **Command (⌘) + Shift + Equal (=)** — note this is the *superscript* shortcut in some versions 3. For subscript specifically: **Command (⌘) + Equal (=)** ⚠️ Word's shortcuts have shifted across versions. If the shortcut doesn't work, the Format menu is more reliable (see below). ### In TextEdit TextEdit in **Rich Text mode** supports basic subscript through the Format menu: - **Format → Font → Baseline → Subscript** In **Plain Text mode**, TextEdit won't render subscript at all — the option simply disappears from the menu. ## Method 2: Format Menu Navigation When shortcuts fail or you can't remember them, the Format menu is a consistent fallback in most macOS apps. **In Pages:** - Format → Font → Baseline → Subscript **In Microsoft Word:** - Format → Font → check the "Subscript" checkbox in the dialog box **In TextEdit (Rich Text only):** - Format → Font → Baseline → Subscript This path works regardless of whether you've memorized a shortcut, and it's the safest approach when switching between apps regularly. ## Method 3: The Character Viewer for Unicode Subscript Characters Some subscript characters exist as standalone Unicode symbols — meaning they'll appear as subscript in *any* context, including plain text, messaging apps, and social media. To access them: 1. Open the **Character Viewer**: press **Control + Command + Space** or go to **Edit → Emoji & Symbols** 2. Search for "subscript" in the search field 3. Available subscript digits (₀₁₂₃₄₅₆₇₈₉) and some letters will appear 4. Double-click to insert at your cursor position **The limitation:** Unicode subscript coverage is incomplete. You'll find all digits and some common letters, but not the full alphabet. If you need subscript "k" or "q," for example, you may find no Unicode equivalent exists. This method is useful for quick informal use — messaging, social posts, or documents where you can't apply formatting — but it's not a full substitute for proper formatted subscript in professional documents. ## Method 4: HTML and Markdown (For Web and Code Contexts) If you're writing for the web, working in an HTML editor, or using a content management system, subscript is a markup element rather than a formatting button. **HTML:** ```html H 2O ``` The ` ` tag renders as subscript in browsers and most HTML-aware editors. This approach is precise, portable, and widely supported. **Markdown:** Standard Markdown doesn't include subscript syntax. Some extended Markdown flavors (used in tools like Pandoc or certain wiki platforms) support: ``` H~2~O ``` But this isn't universal — it depends entirely on the Markdown processor your platform uses. ## Comparing Methods at a Glance 📋 | Method | Works In | Requires Formatting Support | Works in Plain Text | |---|---|---|---| | Keyboard shortcut | Pages, Word, some editors | Yes | No | | Format menu | Pages, Word, TextEdit (Rich) | Yes | No | | Unicode characters | Anywhere | No | Yes | | HTML `` tag | Web/HTML editors | Browser renders it | No | | Extended Markdown | Some platforms only | Platform-dependent | No | ## Variables That Determine Which Method Works for You Several factors shape which approach is actually available to you: **App type** is the biggest one. Rich text editors support formatting-based subscript. Plain text editors don't. Web-based tools may use HTML or their own formatting controls entirely. **macOS version** can affect keyboard shortcut behavior, particularly in Pages, which has updated its shortcut set across releases. If a shortcut listed elsewhere isn't working, your version may differ. **Document destination** matters too. A subscript character formatted in Pages will appear correctly in a Pages or PDF export — but paste that text into Slack or a browser address bar, and the formatting disappears, leaving only the base character. Unicode subscript characters survive that transfer; formatted subscript doesn't. **Use case specificity** also plays a role. A chemist writing H₂SO₄ repeatedly in a research document has different needs than someone typing a one-off footnote reference in an email. The former benefits from shortcut fluency in a dedicated word processor; the latter might find Unicode insertion faster. Where your workflow sits across these variables — the app you live in, the format your output needs to be in, and how often you're actually using subscript — is what determines which method fits cleanly and which creates friction. 🔬