Latex formula into picture

format(png, svg, jpg):
height for png or jpeg:
公式:

简介

本服务将latex公式变成svg, png 或 jpeg 格式的图片

服务也可以使用 GET 的方式

其中{formula}为Latex公式,内容需要转码, 如 \begin{cases} 变成 %5Cbegin%7Bcases%7D
查看 查看PNG

服务使用了NodeJS的库: MathJax@3, sharp

equ

非 /api 目录下,只能使用普通的 html
如下代码只能在 /api 目录下使用
// https://vercel.com/docs/functions/runtimes/node-js
// 
export default function handler(request, response) {
  const { name = 'World' } = request.query;
  return response.send(`Hello ${name}! 
/api/who?name=[your name] , /api/hi?name=[your name], /api/hello?name=[your name]`); }