Skip to content
HN On Hacker News ↗

WYSIWYG LaTeX Editor for Browsers

▲ 117 points 40 comments by theanonymousone 2w ago HN discussion ↗

Pangram verdict · v3.3

We believe that this document is fully human-written

0 %

AI likelihood · overall

Human
100% human-written 0% AI-generated
SEGMENTS · HUMAN 1 of 1
SEGMENTS · AI 0 of 1
WORD COUNT 96
PEAK AI % 0% · §1
Analyzed
Jun 26
backend: pangram/v3.3
Segments scanned
1 windows
avg 96 words each
Distribution
100 / 0%
human / AI fraction
Verdict
Human
Pangram v3.3

Article text · 96 words · 1 segments analyzed

Human AI-generated
§1 Human · 0%

It may take a few minutes to download template files for the first time. Please be patient Step 1: Download latest release from Github. Extract the files and put them into your webpage directory. Step 2: Include the src tag in your page. <script src="PdfTeXEngine.js"></script> Step 3: Initial the engine. const engine = new LaTeXEngine(); await engine.loadEngine();

Step 4: Load the tex files/pictures/fonts to engines. const engine = new LaTeXEngine(); engine.writeMemFSFile("main.tex", "\documentclass{...");

Step 5: Set the main file and fire the compilation. engine.setEngineMainFile("main.tex"); let r = await engine.compileLaTeX(); // r contains PDF binray and compilation log.