Skip to content

Instantly share code, notes, and snippets.

@zudsniper
Created September 28, 2023 22:59
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save zudsniper/fe553bc6a4ee94fcdd74bf4eb0722043 to your computer and use it in GitHub Desktop.
Save zudsniper/fe553bc6a4ee94fcdd74bf4eb0722043 to your computer and use it in GitHub Desktop.
πŸ“‹ Propositional Logic symbols & their LaTeX formulas specifically for Obsidian flavor Markdown

Certainly! Obsidian is a popular note-taking application that supports Markdown with LaTeX integration for mathematical notation. When using LaTeX in Obsidian's Markdown flavor, you typically enclose the LaTeX code within double dollar signs $$...$$ for block math and single dollar signs $...$ for inline math.

Here's an exhaustive list of the symbols for propositional logic and their formulas specifically formatted for Obsidian flavor Markdown:

  1. Conjunction (AND)

    • Symbol: ∧
    • Obsidian Markdown: $\land$ or $\wedge$
  2. Disjunction (OR)

    • Symbol: ∨
    • Obsidian Markdown: $\lor$ or $\vee$
  3. Negation (NOT)

    • Symbol: Β¬
    • Obsidian Markdown: $\neg$ or $\lnot$
  4. Implication (IMPLIES)

    • Symbol: β†’
    • Obsidian Markdown: $\rightarrow$ or $\implies$
  5. Biconditional (IF AND ONLY IF)

    • Symbol: ↔
    • Obsidian Markdown: $\leftrightarrow$ or $\iff$
  6. Exclusive OR (XOR)

    • Symbol: βŠ•
    • Obsidian Markdown: $\oplus$
  7. True

    • Symbol: ⊀
    • Obsidian Markdown: $\top$
  8. False

    • Symbol: βŠ₯
    • Obsidian Markdown: $\bot$
  9. Universal Quantifier (FOR ALL)

    • Symbol: βˆ€
    • Obsidian Markdown: $\forall$
  10. Existential Quantifier (THERE EXISTS)

  • Symbol: βˆƒ
  • Obsidian Markdown: $\exists$
  1. Nand (NOT AND)
  • Symbol: ↑
  • Obsidian Markdown: $\uparrow$
  1. Nor (NOT OR)
  • Symbol: ↓
  • Obsidian Markdown: $\downarrow$
  1. Equivalence (EQUIVALENT TO)
  • Symbol: ≑
  • Obsidian Markdown: $\equiv$

To use these symbols in Obsidian, simply type them as provided. The application will render the LaTeX notation as the corresponding mathematical symbols when you switch to preview mode.

I hope this helps you use propositional logic symbols in Obsidian! If you have any more questions or need further assistance, please let me know.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment