typst.html (3181B)
1 <!DOCTYPE html> 2 <html dir="ltr" lang="en"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 5 <meta http-equiv="Content-Language" content="en" /> 6 <meta name="viewport" content="width=device-width" /> 7 <meta name="keywords" content="blog, git, dev-log, life-log" /> 8 <meta name="description" content="The smart Latex alternative" /> 9 <meta name="author" content="linusbehrens" /> 10 <meta name="generator" content="saait (https://git.codemadness.org/saait/file/README.html)" /> 11 <title>Typst - Linus Blog</title> 12 13 <link rel="preconnect" href="https://rsms.me/"> 14 <link rel="stylesheet" href="https://rsms.me/inter/inter.css"> 15 <link rel="preconnect" href="https://fonts.googleapis.com"> 16 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 17 <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&display=swap" rel="stylesheet"> 18 19 <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> 20 <link rel="stylesheet" href="typeface.css" type="text/css" media="screen" /> 21 <link rel="stylesheet" href="print.css" type="text/css" media="print" /> 22 23 <link rel="alternate" href="atom.xml" type="application/atom+xml" title="Linus Blog Atom Feed" /> 24 <link rel="alternate" href="atom_content.xml" type="application/atom+xml" title="Linus Blog Atom Feed with content" /> 25 <link rel="icon" href="/favicon.png" type="image/png" /> 26 </head> 27 <body> 28 <nav id="menuwrap"> 29 <table id="menu" width="100%" border="0"> 30 <tr> 31 <td id="links" align="left"> 32 <a href="index.html">Blog</a> | 33 <a href="/git/" title="Git repository with some of my projects">Git</a> <!-- | --> 34 <!-- <a href="/releases/">Releases</a> | --> 35 <!-- <a href="gopher://codemadness.org">Gopherhole</a> --> 36 </td> 37 <td id="links-contact" align="right"> 38 <span class="hidden"> | </span> 39 <!-- <a href="feeds.html">Feeds</a> | --> 40 <a href="pgp.asc">PGP</a> | 41 <a href="mailto:mail@linus-behrens.de">Mail</a> 42 </td> 43 </tr> 44 </table> 45 </nav> 46 <hr class="hidden" /> 47 <main id="mainwrap"> 48 <div id="main"> 49 <article> 50 <header> 51 <h1>Typst</h1> 52 <p> 53 <strong>Last modification on </strong> <time>2025-06-01</time> 54 </p> 55 </header> 56 57 <p>When ever editing big text projects I used <span 58 class="math inline">$\LaTeX$</span>. Just because Latex is the right 59 tool for the job.</p> 60 <p>But as it turned out there has been a simpler tool for the job. And 61 it is called Typst.</p> 62 <p>Why it is simpler:</p> 63 <ul> 64 <li>It is FOSS</li> 65 <li>Ready to write: no <code>\document{begin}</code></li> 66 <li>Markdown based syntax where it can: eg. headings with 67 <code>=</code></li> 68 <li>Easy math syntax</li> 69 <li>Simple coding constructs instead of single use case based 70 macros</li> 71 <li>FOSS templates ready to clone</li> 72 <li>Renders preview from buffer: instant update without having to 73 safe</li> 74 </ul> 75 <div class="sourceCode" id="cb1"><pre 76 class="sourceCode typ"><code class="sourceCode typst"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a>lim_(x->oo) 1/x = 0</span></code></pre></div> 77 <p>Their <a href="https://github.com/typst">GitHub Page</a></p> 78 79 </article> 80 </div> 81 </main> 82 </body> 83 </html>