obsidian-latex-suite icon indicating copy to clipboard operation
obsidian-latex-suite copied to clipboard

Make typesetting LaTeX as fast as handwriting through snippets, text expansion, and editor enhancements

Results 107 obsidian-latex-suite issues
Sort by recently updated
recently updated
newest added

I tested three input methods, ABC, Pinyin and Shuangpin, only ABC can work properly, the remaining two will have missing functions, such as 'mk', 'dm' can not work.

Triggering a snippet like `{trigger: "h", replacement: "\\colorbox{$0}{\\\(${VISUAL}\\\)}$1", options: "mA"}` often causes `\(`, the alt math mode token be converted to `\\left(`, which renders the expression invalid as it is...

Hello! Thank you very much for writing this amazing plugin. It has been very helpful for me. I recently noticed a slight error in the behavior of one of my...

Please add an option to check string after the cursor with a regex before applying the snippet, and optionally modify it Ex: `{ trigger:"{", replacement:"{$0}$1" , after:"[^a-zA-Z]", options:"Am"}` would not...

obsidian:v1.1.9 admonition:9.05; latex suite:1.6.11;

## Motivation Currently, I define custom latex commands inside the first displayed equation block, for example: ```md $$ \newcommand{\diff}[2]{\frac{\mathrm{d}#1}{\mathrm{d}#2}} \newcommand{\pardiff}[2]{\frac{\partial{}#1}{\partial{}#2}} \newcommand{\ie}{\textit{i}.\textit{e}.} \ie \diff{E}{u} = \pardiff{L}{u} - \diff{}{x}\pardiff{L}{u'} = 0 $$...

It would be great if you can add this to the default snippets file. mhchem samples are available at https://mhchem.github.io/MathJax-mhchem/ ``` //Chem {trigger: "ce", replacement: "$\\ce{$0}$", options:"tA"}, ```

I find myself writing norms in equations a lot, and sometimes need to have them lr'd sometimes don't. I think the plugin could greatly benefit by adding a config field...

For example: ```js {trigger: "!! ", replacement: "❗️ ", options: "trA"}, // works {trigger: "^!! ", replacement: "❗️ ", options: "trA"}, // doesn't work ```