observable-framework-lib-tex
Library: TeX
Observable Framework documentation: Library: TeX Source: https://observablehq.com/framework/lib-tex
${tex\TeX} is a language for typesetting mathematical formulae. Observable provides a TeX tagged template literal implementation powered by ${tex\KaTeX}. It is available by default as tex in Markdown, but you can also import it like so:
import tex from "npm:@observablehq/tex";
There are two ways to use TeX. The first is a tex fenced code block:
```tex
E = mc^2
```
This produces a centered block:
E = mc^2
The second is an inline expression using the tex tagged template literal provided by the Observable standard library:
My favorite equation is ${tex`E = mc^2`}.
This produces:
My favorite equation is ${texE = mc^2}.
Here are some more examples.
c = \pm\sqrt{a^2 + b^2}
\Delta E^*_{00} = \sqrt{
\Big(\frac{\Delta L'}{k_LS_L}\Big)^2 +
\Big(\frac{\Delta C'}{k_CS_C}\Big)^2 +
\Big(\frac{\Delta H'}{k_HS_H}\Big)^2 +
R_T
\frac{\Delta C'}{k_CS_C}
\frac{\Delta H'}{k_HS_H}}
\def\f#1#2{#1f(#2)}
\f\relax{x} = \int_{-\infty}^\infty
\f\hat\xi\,e^{2 \pi i \xi x}
\,d\xi
For more, see the documentation website, in particular the list of supported functions.
More from spqw/skill-observable-framework
observable-framework-lib-deckgl
Using Deck.gl in Observable Framework for large-scale geospatial data visualization.
10observable-framework-lib-mapbox-gl
Using Mapbox GL JS in Observable Framework for vector tile maps.
4observable-framework-jsx
Using JSX (React components) in Observable Framework pages.
3observable-framework-embeds
How to embed Observable Framework pages and components into other websites.
3observable-framework-input-range
Range slider input component in Observable Framework — select a numeric value.
3observable-framework-input-date
Date picker input component in Observable Framework.
3