This plugin supports
`\begin{proof}`
Lorem ipsum dolor sit amet, consectetur adipiscing elit, ...
`\end{proof}`
Proof.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, ...
□
PROOF
/QED
for example, instead of \begin{proof}
/\end{proof}
. See Settings & stylingSettings & styling.Insert proof
.Use the following syntax to print custom text.
Any inline markdown syntax can be used, but inline formulas will render with flickering in the live preview.
`\begin{proof}[Solution.]`
Lorem ipsum dolor sit amet, consectetur adipiscing elit, ...
`\end{proof}`
Solution.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, ...
□
Suppose that you have a theorem like below and it has a block ID 123456
.
Content
The following will be printed as "Proof of Theorem 2 (Title)." by default.
`\begin{proof}`@[[#^123456]]
Lorem ipsum dolor sit amet, consectetur adipiscing elit, ...
`\end{proof}`
Proof of Theorem callouts > ^f58c13Theorem callouts > Theorem 1 (Title).
Lorem ipsum dolor sit amet, consectetur adipiscing elit, ...
□
Don't like \begin{proof}
? You can use any string you like instead. Go to the plugin setting tab, and modify the Beginning of proof and Ending of proof fields. Also take a look at the Proofs
section in the ProfilesProfiles editing menu.
Beginning/ending of proofs are given the following CSS classes.
.math-booster-begin-proof
/.math-booster-end-proof
.math-booster-begin-proof-{tag}
/.math-booster-end-proof-{tag}
: {tag}
is each tag associated with the profile applying to the note.Using the following Latex Suite snippet, you can quickly insert a proof by just typing proof
+Tab
.
{ trigger: "proof", replacement: "`\\begin{proof}`\n$0\n`\\end{proof}`", options: "t" }