Pangram verdict · v3.3
We believe that this document is fully human-written
AI likelihood · overall
HumanArticle text · 96 words · 1 segments analyzed
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.