sanity-plugin-latex-input
v3.0.0
Published
LaTeX input for Portable Text Editor in Sanity Studio.
Downloads
10,488
Readme
sanity-plugin-latex-input
For the v2 version, please refer to the v2-branch.
What is it?
sanity-plugin-latex-input adds support for latex schema type, so it can be used in Portable Text Editor (PTE) in Sanity Studio.

Installation
npm install sanity-plugin-latex-inputUsage
Import and add the plugin to your studio config in sanity.config.ts (or .js):
import {latexInput} from 'sanity-plugin-latex-input'
export default defineConfig({
/* ... */
plugins: [latexInput()],
})You may now use the type name latex in your schema, such as in portable text.
Example schema definition for portable text
const mathInlineIcon = () => (
<span>
<span style={{fontWeight: 'bold'}}>∑</span>b
</span>
)
const mathIcon = () => <span style={{fontWeight: 'bold'}}>∑</span>
export default {
name: 'portableTextWithLatex',
type: 'array',
title: 'Body',
of: [
{
type: 'block',
title: 'Block',
of: [{type: 'latex', icon: mathInlineIcon, title: 'Inline math'}],
},
{type: 'latex', icon: mathIcon, title: 'Math block'},
],
}The Portable Text editor will render a preview of the contents with KaTeX.
License
MIT-licensed. See LICENSE.
