<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: TeX64</title>
    <description>The latest articles on Forem by TeX64 (@tex64).</description>
    <link>https://forem.com/tex64</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3815949%2Fbdc08292-f5ed-44ac-b198-997aaa83d8b2.jpg</url>
      <title>Forem: TeX64</title>
      <link>https://forem.com/tex64</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/tex64"/>
    <language>en</language>
    <item>
      <title>I Stopped Retyping Math Equations From Lecture Slides — Here's What I Use Now</title>
      <dc:creator>TeX64</dc:creator>
      <pubDate>Thu, 02 Apr 2026 00:38:22 +0000</pubDate>
      <link>https://forem.com/tex64/i-stopped-retyping-math-equations-from-lecture-slides-heres-what-i-use-now-58n0</link>
      <guid>https://forem.com/tex64/i-stopped-retyping-math-equations-from-lecture-slides-heres-what-i-use-now-58n0</guid>
      <description>&lt;p&gt;If you've ever taken a graduate-level math, physics, or engineering course, you know the pain. The professor puts up a slide with a beautiful Hamiltonian or a triple integral with a Jacobian, and your first thought is: &lt;em&gt;I'm going to need this in my thesis.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Your second thought: &lt;em&gt;I'm going to have to retype this entire thing in LaTeX, aren't I.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;And then you spend 20 minutes on it. And then you get a compile error. And then you spend 10 more minutes figuring out you had an extra closing brace somewhere in the middle of the subscript.&lt;/p&gt;

&lt;p&gt;I did this for two years during my master's degree before I found a better way.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem With the Existing Workflow
&lt;/h2&gt;

&lt;p&gt;There are actually good tools for converting images of equations to LaTeX. Mathpix Snip is the most well-known, and the accuracy is genuinely impressive. But here's what the workflow actually looks like in practice:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Take a screenshot of the slide&lt;/li&gt;
&lt;li&gt;Open the Mathpix app (or switch to the Mathpix tab)&lt;/li&gt;
&lt;li&gt;Paste the screenshot&lt;/li&gt;
&lt;li&gt;Wait for the conversion&lt;/li&gt;
&lt;li&gt;Copy the LaTeX output&lt;/li&gt;
&lt;li&gt;Switch back to your editor&lt;/li&gt;
&lt;li&gt;Paste into your .tex file&lt;/li&gt;
&lt;li&gt;Run the compiler&lt;/li&gt;
&lt;li&gt;Fix errors if any&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's nine steps. For every single equation. During a lecture where you're also trying to understand the material and take notes.&lt;/p&gt;

&lt;p&gt;I also tried pix2tex, which is an open-source Python-based OCR tool that runs locally. The math: it works reasonably well once you've got it set up. The problem: getting it set up on Apple Silicon took me an hour of dealing with PyTorch version conflicts. And even after that, the workflow is still "separate tool → copy → paste → switch back to editor."&lt;/p&gt;

&lt;p&gt;Google Gemini can do it too if you paste an image and ask nicely. Also a context switch.&lt;/p&gt;

&lt;p&gt;The core issue isn't any of these tools specifically. It's that &lt;strong&gt;the OCR lives outside the editor&lt;/strong&gt;. You're constantly breaking your flow to go get the LaTeX and bring it back.&lt;/p&gt;

&lt;h2&gt;
  
  
  What TeX64 Does Differently
&lt;/h2&gt;

&lt;p&gt;TeX64 is a local-first LaTeX editor for macOS (&lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;https://tex64.com&lt;/a&gt;). I started using it primarily because I was tired of Overleaf's free-tier compile limits during my thesis crunch, but I quickly discovered it had built-in equation OCR.&lt;/p&gt;

&lt;p&gt;The workflow is:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Take a screenshot (&lt;code&gt;Cmd+Shift+4&lt;/code&gt; on macOS)&lt;/li&gt;
&lt;li&gt;Paste it into TeX64 (&lt;code&gt;Cmd+V&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;LaTeX code appears&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's it. Three steps. You never leave the editor.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real Examples From My Coursework
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Example 1: Partition Function (Statistical Mechanics)
&lt;/h3&gt;

&lt;p&gt;The slide showed: &lt;code&gt;Z = Σ_n exp(-β E_n)&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;TeX64 OCR output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;Z = &lt;span class="k"&gt;\sum&lt;/span&gt;&lt;span class="p"&gt;_{&lt;/span&gt;n&lt;span class="p"&gt;}&lt;/span&gt; e&lt;span class="p"&gt;^{&lt;/span&gt;-&lt;span class="k"&gt;\beta&lt;/span&gt; E&lt;span class="p"&gt;_&lt;/span&gt;n&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Exact. Ready to paste.&lt;/p&gt;

&lt;h3&gt;
  
  
  Example 2: Fourier Transform Definition
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;&lt;span class="k"&gt;\hat&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;f&lt;span class="p"&gt;}&lt;/span&gt;(&lt;span class="k"&gt;\xi&lt;/span&gt;) = &lt;span class="k"&gt;\int&lt;/span&gt;&lt;span class="p"&gt;_{&lt;/span&gt;-&lt;span class="k"&gt;\infty&lt;/span&gt;&lt;span class="p"&gt;}^{&lt;/span&gt;&lt;span class="k"&gt;\infty&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt; f(x) &lt;span class="k"&gt;\,&lt;/span&gt; e&lt;span class="p"&gt;^{&lt;/span&gt;-2&lt;span class="k"&gt;\pi&lt;/span&gt; i x &lt;span class="k"&gt;\xi&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;\,&lt;/span&gt; dx
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Including the &lt;code&gt;\,&lt;/code&gt; spacing before &lt;code&gt;dx&lt;/code&gt;. That's a nice detail I would have forgotten.&lt;/p&gt;

&lt;h3&gt;
  
  
  Example 3: Quantum State Vector Expansion
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;|&lt;span class="k"&gt;\psi\rangle&lt;/span&gt; = &lt;span class="k"&gt;\sum&lt;/span&gt;&lt;span class="p"&gt;_{&lt;/span&gt;n=0&lt;span class="p"&gt;}^{&lt;/span&gt;&lt;span class="k"&gt;\infty&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt; c&lt;span class="p"&gt;_&lt;/span&gt;n |n&lt;span class="k"&gt;\rangle&lt;/span&gt;, &lt;span class="k"&gt;\quad&lt;/span&gt; c&lt;span class="p"&gt;_&lt;/span&gt;n = &lt;span class="k"&gt;\langle&lt;/span&gt; n | &lt;span class="k"&gt;\psi&lt;/span&gt; &lt;span class="k"&gt;\rangle&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The bra-ket notation came out correctly — &lt;code&gt;\langle&lt;/code&gt;, &lt;code&gt;\rangle&lt;/code&gt;, the whole thing.&lt;/p&gt;

&lt;h2&gt;
  
  
  When OCR Gets It Wrong
&lt;/h2&gt;

&lt;p&gt;It's not 100% perfect. Complex multi-line expressions sometimes have minor issues.&lt;/p&gt;

&lt;p&gt;This is where TeX64's AI assistant, &lt;strong&gt;Axiom&lt;/strong&gt;, becomes useful. When I get a compile error after an OCR paste, I can ask Axiom to look at the log. It reads the actual compile output and shows me a diff: "line 47, change this to that." One click to apply.&lt;/p&gt;

&lt;p&gt;Everything — OCR, editing, error fixing — stays in one app.&lt;/p&gt;

&lt;h2&gt;
  
  
  Honest Limitations
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;macOS only.&lt;/strong&gt; Apple Silicon and Intel Mac only.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You still need MacTeX or TeX Live.&lt;/strong&gt; TeX64 is the editor, not the TeX distribution.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OCR is for math, not text.&lt;/strong&gt; It won't transcribe surrounding prose from a slide.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Handwriting accuracy drops a bit.&lt;/strong&gt; Clean PDF slides work much better than photographed handwriting.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Free tier has limits.&lt;/strong&gt; Heavy OCR usage requires a paid plan.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why This Actually Matters
&lt;/h2&gt;

&lt;p&gt;The difference between "screenshot → paste → done" and "screenshot → open app → paste → copy → switch app → paste → compile" is not just time. The first stays in flow. The second breaks it.&lt;/p&gt;

&lt;p&gt;If you're writing LaTeX on a Mac and frequently pulling equations from slides or PDFs, it's worth trying TeX64 just for this feature.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;https://tex64.com&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I Was Told to Write My Thesis in LaTeX. Here's How I Actually Got Started.</title>
      <dc:creator>TeX64</dc:creator>
      <pubDate>Wed, 01 Apr 2026 01:11:16 +0000</pubDate>
      <link>https://forem.com/tex64/i-was-told-to-write-my-thesis-in-latex-heres-how-i-actually-got-started-l6e</link>
      <guid>https://forem.com/tex64/i-was-told-to-write-my-thesis-in-latex-heres-how-i-actually-got-started-l6e</guid>
      <description>&lt;p&gt;My advisor’s email said: “Please submit your thesis in LaTeX format.”&lt;/p&gt;

&lt;p&gt;I had two reactions: first, mild panic — I’d never written anything in LaTeX. Second, the overconfident thought that I could figure it out over a long weekend.&lt;/p&gt;

&lt;p&gt;Spoiler: the weekend came and went. I was still staring at a wall of compile errors I couldn’t parse.&lt;/p&gt;




&lt;h2&gt;
  
  
  Three Attempts, Three Failures
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Attempt 1: MacTeX + TeXShop&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I downloaded MacTeX (the full 5GB installation — took forever), opened the bundled TeXShop editor, pasted in a sample document, hit compile, and got this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;! LaTeX Error: File `amsmath.sty' not found.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Spent an hour searching Stack Overflow. The suggested fix was to run &lt;code&gt;tlmgr install amsmath&lt;/code&gt; in the terminal. Ran it. Got a different error. Gave up.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Attempt 2: VSCode + LaTeX Workshop&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;People on Reddit swore by this setup. So I installed VSCode, installed the LaTeX Workshop extension, copied a settings.json snippet from a blog post, and managed to compile a basic document. Then I tried to write Japanese text in it. Characters came out garbled. I spent ninety minutes debugging the encoding issue before abandoning this path too.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Attempt 3: Overleaf&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Fine. I’ll use the browser-based one. No installation required, real-time preview, beautiful. Worked great right up until my thesis hit 80 pages and the free tier started timing out on compiles. The paid plan was $19/month. I wasn’t ready to commit.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Finally Worked: TeX64
&lt;/h2&gt;

&lt;p&gt;A classmate mentioned &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;TeX64&lt;/a&gt;, a macOS-native LaTeX editor. I was skeptical — I’d already wasted hours on three other tools. But I tried it, and something clicked.&lt;/p&gt;

&lt;h3&gt;
  
  
  The First Thing I Noticed: It Tells You What’s Wrong
&lt;/h3&gt;

&lt;p&gt;When I opened TeX64 for the first time, the app ran a quick diagnostic of my environment. Instead of a cryptic error, I saw something like:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;⚠ &lt;strong&gt;latexmk not found.&lt;/strong&gt; It looks like MacTeX isn’t installed. You can download it here: [link]&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This might sound like a small thing. But after hours of Googling vague error messages, having software just &lt;em&gt;tell me what the problem is&lt;/em&gt; felt almost revolutionary. I installed MacTeX by following the link, restarted TeX64, and it worked.&lt;/p&gt;

&lt;p&gt;TeX64 runs entirely on your Mac — Apple Silicon and Intel both — with all compilation happening locally. Once MacTeX is installed, you don’t need an internet connection to write or compile.&lt;/p&gt;

&lt;h3&gt;
  
  
  Axiom: An AI That Actually Understands LaTeX Errors
&lt;/h3&gt;

&lt;p&gt;Every LaTeX beginner eventually hits this wall: the compile fails with an error message that makes no sense to a human.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;! Misplaced alignment tab character &lt;span class="p"&gt;&amp;amp;&lt;/span&gt;.
l.34  &lt;span class="p"&gt;&amp;amp;&lt;/span&gt; 2x + 3y
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I’d stare at this for ten minutes, cross-reference it with a LaTeX cheat sheet, wonder if I was missing a package, and eventually just delete whatever I’d written and start over.&lt;/p&gt;

&lt;p&gt;TeX64 has a built-in AI assistant called Axiom. When a compile fails, Axiom reads the error log alongside your .tex files and gives you a plain-English explanation:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"The &lt;code&gt;&amp;amp;&lt;/code&gt; character on line 34 is being used outside an alignment environment like &lt;code&gt;align&lt;/code&gt; or &lt;code&gt;tabular&lt;/code&gt;. Try wrapping your equations in &lt;code&gt;\begin{align} ... \end{align}&lt;/code&gt;."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And then Axiom proposes a fix as a diff. You can review exactly what would change before applying it. It never silently modifies your files.&lt;/p&gt;

&lt;p&gt;I went from "I’ll just delete this and rewrite it" to "okay, I understand what went wrong and I know how to fix it." That mindset shift mattered a lot in the early weeks.&lt;/p&gt;

&lt;h3&gt;
  
  
  Building Equations Without Memorizing Commands
&lt;/h3&gt;

&lt;p&gt;One of the things that makes LaTeX intimidating for beginners is that math requires learning a whole new vocabulary of commands.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;&lt;span class="k"&gt;\int&lt;/span&gt;&lt;span class="p"&gt;_{&lt;/span&gt;0&lt;span class="p"&gt;}^{&lt;/span&gt;&lt;span class="k"&gt;\infty&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt; e&lt;span class="p"&gt;^{&lt;/span&gt;-x&lt;span class="p"&gt;^&lt;/span&gt;2&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;\,&lt;/span&gt; dx = &lt;span class="k"&gt;\frac&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\sqrt&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\pi&lt;/span&gt;&lt;span class="p"&gt;}}{&lt;/span&gt;2&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;TeX64 has a visual math palette: a panel where you click symbols and see the equation rendered in real time. Click the integral sign, set the bounds, and TeX64 writes the LaTeX for you. The generated code is clean and editable. You can see what &lt;code&gt;\int_{0}^{\infty}&lt;/code&gt; looks like as you build it, and gradually the syntax starts to make sense.&lt;/p&gt;

&lt;p&gt;After two weeks of building equations with the palette and seeing the corresponding code, I found I could write many of them from memory without thinking.&lt;/p&gt;

&lt;h3&gt;
  
  
  SyncTeX: Click PDF, Jump to Source
&lt;/h3&gt;

&lt;p&gt;SyncTeX syncs your PDF preview and source file bidirectionally. Click anywhere in the PDF, and your editor jumps to the corresponding line in the .tex file.&lt;/p&gt;

&lt;p&gt;When your thesis is 100+ pages across multiple files, finding the source of any given paragraph becomes a real chore. With SyncTeX, I just click in the PDF wherever I want to edit, and I’m there instantly.&lt;/p&gt;




&lt;h2&gt;
  
  
  Honest Limitations
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;macOS only.&lt;/strong&gt; TeX64 won’t run on Windows or Linux.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You still need MacTeX.&lt;/strong&gt; TeX64 is an editor, not a LaTeX compiler. You’ll need MacTeX or TeX Live installed separately. TeX64 walks you through this if it’s missing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;No real-time collaboration.&lt;/strong&gt; Overleaf is still the better choice for simultaneous co-authoring.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AI features have usage limits on the free tier.&lt;/strong&gt; Basic editing, compilation, and SyncTeX are free with no account required. Heavy use of Axiom or OCR requires a paid plan.&lt;/p&gt;




&lt;h2&gt;
  
  
  How to Get Started
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Go to &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt; and download the app.&lt;/li&gt;
&lt;li&gt;Open TeX64 — it will detect if MacTeX is missing and guide you through installing it.&lt;/li&gt;
&lt;li&gt;Create a new document and try compiling the template.&lt;/li&gt;
&lt;li&gt;If anything goes wrong, ask Axiom.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;TeX64 shortens the path from "I don’t know where to start" to "I’m actually writing LaTeX." For Mac users, that’s worth a lot.&lt;/p&gt;

&lt;p&gt;Check it out at &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>devjournal</category>
      <category>tooling</category>
      <category>writing</category>
    </item>
    <item>
      <title>I Used to Dread Writing Matrices in LaTeX. Here's What Changed.</title>
      <dc:creator>TeX64</dc:creator>
      <pubDate>Tue, 31 Mar 2026 00:33:52 +0000</pubDate>
      <link>https://forem.com/tex64/i-used-to-dread-writing-matrices-in-latex-heres-what-changed-1of2</link>
      <guid>https://forem.com/tex64/i-used-to-dread-writing-matrices-in-latex-heres-what-changed-1of2</guid>
      <description>&lt;p&gt;There's a specific kind of frustration that only LaTeX users understand. You're trying to write a 5×5 matrix at midnight before a deadline, and your compile output says:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;! Extra alignment tab has been changed to &lt;span class="k"&gt;\cr&lt;/span&gt;.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You stare at the error. You count the ampersands. You count them again. You find the row where you put four &lt;code&gt;&amp;amp;&lt;/code&gt; symbols instead of three. You fix it. You recompile. Now a different row is wrong.&lt;/p&gt;

&lt;p&gt;If you've been there, this article is for you.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Hidden Cost of LaTeX Matrix Syntax
&lt;/h2&gt;

&lt;p&gt;Writing matrices in LaTeX requires precise bookkeeping. For every row, you need exactly &lt;em&gt;(n-1)&lt;/em&gt; ampersands for an &lt;em&gt;n&lt;/em&gt;-column matrix, a &lt;code&gt;\\\\&lt;/code&gt; at the end of every row except the last, and the correct &lt;code&gt;\\begin{pmatrix}&lt;/code&gt; variant depending on whether you want round brackets, square brackets, or none.&lt;/p&gt;

&lt;p&gt;None of this is difficult conceptually. But it's deeply mechanical, and mechanical tasks done under cognitive load produce mistakes. When you're thinking about linear algebra — about what the matrix &lt;em&gt;means&lt;/em&gt; — you don't want to be counting ampersands.&lt;/p&gt;

&lt;p&gt;I've written LaTeX for about six years across undergrad, grad school, and work. Matrices have always been the part I dreaded most. I tried a few different approaches:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Online matrix generators&lt;/strong&gt; — You fill in rows and columns on a website and it spits out LaTeX. Works fine, but you're constantly context-switching between browser and editor. And they're useless offline.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Snippets and templates&lt;/strong&gt; — I built a library of snippet templates in my editor: 2×2, 3×3, and so on. Helped for common sizes but fell apart for anything irregular.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Just memorizing the syntax&lt;/strong&gt; — The classic approach. Still fails under pressure.&lt;/p&gt;

&lt;h2&gt;
  
  
  Finding TeX64
&lt;/h2&gt;

&lt;p&gt;A few months ago I switched my main LaTeX workflow to &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;TeX64&lt;/a&gt;, a macOS-native LaTeX editor. I was originally drawn to it for its AI error-fixing, but the feature I ended up using most for daily work was something simpler: the visual math input palette.&lt;/p&gt;

&lt;p&gt;The palette lets you build equations by clicking symbols and templates. For matrices, you select the matrix template, specify the dimensions, and a correctly-structured skeleton is generated immediately. Each cell is a tab-stop you fill in order.&lt;/p&gt;

&lt;p&gt;The crucial part: it renders in real time. You see the actual typeset output as you fill in the cells, not the raw LaTeX. This completely changes the feedback loop. Instead of write → compile → read error → count ampersands → fix → recompile, you get an immediate visual signal. You can see if a cell is wrong before you've even finished typing the row.&lt;/p&gt;

&lt;p&gt;Here's what a session looks like now: I click the 4×4 matrix template, tab through the 16 cells filling in my coefficients, glance at the preview to confirm it looks right, and move on. The whole thing takes maybe 30 seconds. The generated LaTeX is clean and standard — I can edit it by hand afterward if I need to.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where the AI Comes In
&lt;/h2&gt;

&lt;p&gt;TeX64 has a built-in AI assistant called Axiom. It reads your entire project — all your &lt;code&gt;.tex&lt;/code&gt; files, your compile log, your BibTeX — and responds to natural language requests.&lt;/p&gt;

&lt;p&gt;For matrices specifically, Axiom is useful for a few different things:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Generating complex structures from description.&lt;/strong&gt; If I need a block matrix or a tridiagonal matrix, describing it in English is faster than building it manually. "Write a block matrix with A in the top left, B in the top right, and zeros everywhere else" — Axiom produces the LaTeX, presents it as a diff, and I apply it with one click.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fixing errors.&lt;/strong&gt; If a matrix-related compile error slips through, I paste the log into Axiom and ask it to fix the issue. It identifies the line, explains what's wrong, and shows the corrected code as a diff. Never modifies files silently — always shows you what will change before applying.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Converting from images.&lt;/strong&gt; TeX64 has equation OCR built in. If I have a matrix in a PDF paper I'm citing, or a photo of handwritten notes, I can paste the image and get editable LaTeX back. This is especially useful when reusing equations from older papers rather than retyping everything from scratch.&lt;/p&gt;

&lt;h2&gt;
  
  
  A Concrete Example
&lt;/h2&gt;

&lt;p&gt;Last week I was writing a section on Markov chains and needed a 5×5 transition probability matrix. Before TeX64, this would have taken me 10+ minutes between typing, error-hunting, and formatting.&lt;/p&gt;

&lt;p&gt;Here's what happened instead:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Axiom: "Write a 5×5 stochastic matrix where each row sums to 1, use variable names p_{ij}"&lt;/li&gt;
&lt;li&gt;Axiom produced the skeleton with proper subscript notation&lt;/li&gt;
&lt;li&gt;I replaced the placeholder values with my actual probabilities using the visual editor&lt;/li&gt;
&lt;li&gt;Total time: about 4 minutes, zero compile errors&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Not dramatic, but multiply that by the 30-40 matrices that appear in a typical research paper, and the time savings add up significantly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Honest Limitations
&lt;/h2&gt;

&lt;p&gt;I want to be straightforward about what TeX64 isn't:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;macOS only.&lt;/strong&gt; If you're on Windows or Linux, this isn't for you. TeX64 runs on Apple Silicon and Intel Macs only.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Requires MacTeX or TeX Live.&lt;/strong&gt; TeX64 is an editor, not a full LaTeX distribution. You still need a LaTeX installation for compilation. First-time setup takes about 20 minutes, and TeX64's environment diagnostics will tell you exactly what's missing. But it's a real prerequisite.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Heavy AI/OCR usage requires a paid plan.&lt;/strong&gt; There's a free tier, and you don't need an account to start. But if you're doing a lot of AI-assisted editing or OCR conversions, you'll eventually hit the free limits.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real-time collaboration isn't the focus.&lt;/strong&gt; If you're co-writing with three coauthors on a shared document, Overleaf is better for that use case. TeX64 is optimized for solo or small-team work where you want local compilation and the full power of a native Mac app.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Part That Surprised Me
&lt;/h2&gt;

&lt;p&gt;I expected the visual matrix editor to feel like a crutch — something I'd use when I was lazy, then abandon when I got back to "real" LaTeX work. That didn't happen.&lt;/p&gt;

&lt;p&gt;The reason is that the output is regular LaTeX. There's no abstraction layer, no proprietary format. The visual editor is just a fast way to &lt;em&gt;generate&lt;/em&gt; standard code. Once it's in your file, it's identical to what you'd write by hand. You can edit it by hand. Other tools can read it. It compiles with any LaTeX engine.&lt;/p&gt;

&lt;p&gt;That's the design choice that makes it actually useful rather than just a toy: it accelerates the mechanical parts without creating lock-in.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;If you write LaTeX on a Mac and matrices are a regular part of your work — papers, theses, homework sets, anything — it's worth trying. The free tier is enough to get a real sense of the workflow.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I turned a notebook full of handwritten math into a LaTeX paper — here's how</title>
      <dc:creator>TeX64</dc:creator>
      <pubDate>Mon, 30 Mar 2026 01:14:43 +0000</pubDate>
      <link>https://forem.com/tex64/i-turned-a-notebook-full-of-handwritten-math-into-a-latex-paper-heres-how-cpk</link>
      <guid>https://forem.com/tex64/i-turned-a-notebook-full-of-handwritten-math-into-a-latex-paper-heres-how-cpk</guid>
      <description>&lt;p&gt;Here's a scenario I'll bet some of you recognize: you've been working through a problem by hand for weeks. Your notebook is full of half-finished derivations, scribbled integrals, matrices with question marks next to them. And now you need to turn that mess into a proper LaTeX document.&lt;/p&gt;

&lt;p&gt;I had exactly this situation last winter. Forty-odd pages of handwritten notes from a research project, and a paper deadline looming. I knew I couldn't retype everything — especially not the equations. There had to be a better way.&lt;/p&gt;

&lt;h2&gt;
  
  
  The copy-paste treadmill
&lt;/h2&gt;

&lt;p&gt;The first tool I tried was Mathpix Snip. It's well-known in academic circles for a reason: the OCR accuracy on mathematical notation is genuinely impressive. You screenshot a handwritten equation, and you get clean LaTeX back within seconds.&lt;/p&gt;

&lt;p&gt;The problem wasn't the accuracy. The problem was the &lt;em&gt;workflow&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Every single equation involved:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Take a screenshot or photo&lt;/li&gt;
&lt;li&gt;Switch to the OCR tool&lt;/li&gt;
&lt;li&gt;Wait for conversion&lt;/li&gt;
&lt;li&gt;Copy the LaTeX&lt;/li&gt;
&lt;li&gt;Switch back to my editor&lt;/li&gt;
&lt;li&gt;Paste and adjust&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;For a single equation, that's fine. For forty pages? It's death by a thousand context switches. By day two I was dreading opening my notes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Finding TeX64
&lt;/h2&gt;

&lt;p&gt;I stumbled across &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;TeX64&lt;/a&gt; while searching for "latex editor mac ocr built in" or something like that. It's a macOS-only LaTeX editor — Apple Silicon and Intel both supported — and the key thing that caught my eye was that OCR is baked directly into the editor itself.&lt;/p&gt;

&lt;p&gt;No separate app. No browser tab. No clipboard dance. You drop an image into the editor and the converted LaTeX appears in your document.&lt;/p&gt;

&lt;p&gt;That sounded too good to be true, so I downloaded it (free tier, no account needed) and tried it on a page of my worst handwriting.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it actually looks like
&lt;/h2&gt;

&lt;p&gt;After installing MacTeX (TeX64 needs an existing TeX distribution — it'll tell you if it can't find one), I opened my project and dropped in a photo of my notebook.&lt;/p&gt;

&lt;p&gt;A few seconds later, this appeared in my &lt;code&gt;.tex&lt;/code&gt; file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;&lt;span class="nt"&gt;\begin{align}&lt;/span&gt;
  &lt;span class="k"&gt;\frac&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\partial&lt;/span&gt; &lt;span class="k"&gt;\rho&lt;/span&gt;&lt;span class="p"&gt;}{&lt;/span&gt;&lt;span class="k"&gt;\partial&lt;/span&gt; t&lt;span class="p"&gt;}&lt;/span&gt; + &lt;span class="k"&gt;\nabla&lt;/span&gt; &lt;span class="k"&gt;\cdot&lt;/span&gt; (&lt;span class="k"&gt;\rho&lt;/span&gt; &lt;span class="k"&gt;\mathbf&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;u&lt;span class="p"&gt;}&lt;/span&gt;) &lt;span class="p"&gt;&amp;amp;&lt;/span&gt;= 0 &lt;span class="k"&gt;\\&lt;/span&gt;
  &lt;span class="k"&gt;\rho&lt;/span&gt; &lt;span class="k"&gt;\left&lt;/span&gt;( &lt;span class="k"&gt;\frac&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\partial&lt;/span&gt; &lt;span class="k"&gt;\mathbf&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;u&lt;span class="p"&gt;}}{&lt;/span&gt;&lt;span class="k"&gt;\partial&lt;/span&gt; t&lt;span class="p"&gt;}&lt;/span&gt; + &lt;span class="k"&gt;\mathbf&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;u&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;\cdot&lt;/span&gt; &lt;span class="k"&gt;\nabla&lt;/span&gt; &lt;span class="k"&gt;\mathbf&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;u&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;\right&lt;/span&gt;) &lt;span class="p"&gt;&amp;amp;&lt;/span&gt;= -&lt;span class="k"&gt;\nabla&lt;/span&gt; p + &lt;span class="k"&gt;\mu&lt;/span&gt; &lt;span class="k"&gt;\nabla&lt;/span&gt;&lt;span class="p"&gt;^&lt;/span&gt;2 &lt;span class="k"&gt;\mathbf&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;u&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="nt"&gt;\end{align}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;My handwritten Navier-Stokes equations, correctly transcribed, sitting right in my document in editable LaTeX. No switching apps. No clipboard. Just there.&lt;/p&gt;

&lt;p&gt;I tested it on a few more pages. Printed math from a textbook screenshot? Near-perfect. My cleaner handwriting? Very good. My worst late-night scrawl? Mostly correct, with a few characters that needed manual fixing.&lt;/p&gt;

&lt;p&gt;The pattern I noticed: TeX64 is excellent on math notation specifically. The structural stuff — &lt;code&gt;\frac&lt;/code&gt;, &lt;code&gt;\int&lt;/code&gt;, &lt;code&gt;\sum&lt;/code&gt;, matrix brackets — comes through cleanly. Individual symbols occasionally need correction, but the scaffolding is almost always right.&lt;/p&gt;

&lt;h2&gt;
  
  
  The workflow I landed on
&lt;/h2&gt;

&lt;p&gt;Here's what actually worked for my paper:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;For each section of notes:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Photograph the page (phone camera, decent lighting)&lt;/li&gt;
&lt;li&gt;Drop into TeX64 — OCR runs automatically&lt;/li&gt;
&lt;li&gt;Read through the output, fix any misread symbols&lt;/li&gt;
&lt;li&gt;Use Axiom (TeX64's AI assistant) to clean up formatting&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That last step was something I didn't expect to use much but ended up relying on constantly. Axiom can read your compile logs — and since OCR output often has subtle structural errors (mismatched brackets, missing &lt;code&gt;\end&lt;/code&gt; tags), those errors showed up frequently.&lt;/p&gt;

&lt;p&gt;Instead of debugging LaTeX by hand, I'd ask Axiom: "What's wrong with this compile?" It would look at the actual log, identify the line, and show me a diff. One click to apply.&lt;/p&gt;

&lt;p&gt;Example interaction:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Me: "Why is this not compiling?"&lt;br&gt;
Axiom: "Line 312: &lt;code&gt;\begin{align*}&lt;/code&gt; is not closed. Here's the fix:"&lt;br&gt;
[shows diff]&lt;br&gt;
[I click Apply]&lt;br&gt;
Done.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That flow — photograph → OCR → Axiom cleanup → compile — got me through forty pages of notes in about two days instead of the week I'd budgeted for.&lt;/p&gt;

&lt;h2&gt;
  
  
  SyncTeX made verification fast
&lt;/h2&gt;

&lt;p&gt;One thing that helped enormously with checking my work: SyncTeX is built in. You click anywhere in the PDF and jump to the corresponding source line. Click in the source and jump to the PDF location.&lt;/p&gt;

&lt;p&gt;For verifying that a converted equation rendered correctly, this is incredibly useful. Instead of manually scrolling through both windows to find where something is, you click once and you're there.&lt;/p&gt;

&lt;h2&gt;
  
  
  Honest limits
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;macOS only.&lt;/strong&gt; This is a hard stop — TeX64 doesn't run on Windows or Linux.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You still need MacTeX or TeX Live installed.&lt;/strong&gt; TeX64 is the editor; it needs an external TeX distribution to compile. The setup takes maybe 20 minutes if you haven't done it before (TeX64 will walk you through it if MacTeX is missing).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Handwritten text OCR isn't as strong as math OCR.&lt;/strong&gt; This tool is clearly optimized for mathematical notation. Regular handwritten prose came through with more errors, so I still typed out my non-equation text.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Free tier has limits.&lt;/strong&gt; For a paper's worth of OCR, you'll likely bump into the usage cap and want the paid plan. That said, it's worth trying on free to see if the accuracy meets your needs before committing.&lt;/p&gt;

&lt;h2&gt;
  
  
  The one thing that changed my workflow
&lt;/h2&gt;

&lt;p&gt;Before TeX64, the OCR step and the editing step were two separate places in my brain. I had to context-switch between "get the LaTeX" mode and "write the paper" mode.&lt;/p&gt;

&lt;p&gt;Having OCR inside the editor eliminated that. When I'm looking at a page of notes and need to pull an equation into my document, I don't leave the app. I drop the image. It appears. I keep writing.&lt;/p&gt;

&lt;p&gt;That's it. That's the whole difference. And for paper-writing momentum, it turned out to matter a lot.&lt;/p&gt;

&lt;p&gt;If you're on a Mac and you're facing a stack of handwritten research notes: &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt;. Worth a try.&lt;/p&gt;

</description>
      <category>latex</category>
      <category>academic</category>
      <category>macos</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I Finally Ditched Overleaf for a Local LaTeX Editor — Here's What Actually Works</title>
      <dc:creator>TeX64</dc:creator>
      <pubDate>Sun, 29 Mar 2026 11:15:18 +0000</pubDate>
      <link>https://forem.com/tex64/i-finally-ditched-overleaf-for-a-local-latex-editor-heres-what-actually-works-2cgg</link>
      <guid>https://forem.com/tex64/i-finally-ditched-overleaf-for-a-local-latex-editor-heres-what-actually-works-2cgg</guid>
      <description>&lt;p&gt;Last October, I was thirty pages from finishing my master's thesis draft when Overleaf hung. Not an error. Not a crash. Just... spinning. "Compiling" for four minutes. Then a timeout.&lt;/p&gt;

&lt;p&gt;I refreshed. It happened again. It was 11 PM, the university Wi-Fi was holding up fine, but Overleaf was clearly under load. Apparently thesis season is thesis season for everyone.&lt;/p&gt;

&lt;p&gt;That night, I decided I was finally going to figure out local LaTeX on my Mac.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Actually Needed
&lt;/h2&gt;

&lt;p&gt;I'd tried local setups before. The problem wasn't compiling — MacTeX handles that fine. The problem was the editing experience. After two years of Overleaf, I'd gotten used to certain things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Equation rendering as you type&lt;/strong&gt; — seeing math rendered without a full compile&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Some kind of input assist for math symbols&lt;/strong&gt; — I can never remember &lt;code&gt;\varepsilon&lt;/code&gt; vs &lt;code&gt;\epsilon&lt;/code&gt;, or exactly how &lt;code&gt;\underbrace&lt;/code&gt; nests&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Smart error handling&lt;/strong&gt; — Overleaf at least shows you which line errored. Bare TeX errors are cryptic.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;TeXShop is great but stripped-down. VS Code + LaTeX Workshop is powerful but took me three hours to configure properly (and the SyncTeX setup broke twice). TeXstudio works but feels like a Windows app wearing a thin macOS disguise.&lt;/p&gt;

&lt;p&gt;I needed something that felt like a real Mac app and didn't require a weekend of configuration to use.&lt;/p&gt;

&lt;h2&gt;
  
  
  Enter TeX64
&lt;/h2&gt;

&lt;p&gt;A colleague mentioned &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;TeX64&lt;/a&gt; in a Slack thread about local LaTeX setups. I downloaded it, and within twenty minutes I had my existing project compiling.&lt;/p&gt;

&lt;p&gt;Let me walk you through what actually surprised me.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Visual Math Palette
&lt;/h3&gt;

&lt;p&gt;This was the thing that made me feel like someone actually thought about the experience of writing math.&lt;/p&gt;

&lt;p&gt;TeX64 has a symbol palette that lets you build equations by clicking — integral sign, limits, numerator, denominator — and shows you the rendered output in real time. The LaTeX it generates is completely standard and hand-editable afterwards.&lt;/p&gt;

&lt;p&gt;Here's what this actually saves me: I write a lot of probability and statistics. I can never remember:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Is it &lt;code&gt;\mathbb{E}&lt;/code&gt; or &lt;code&gt;\mathds{E}&lt;/code&gt;?&lt;/li&gt;
&lt;li&gt;How do I get a properly sized conditional probability bar in &lt;code&gt;P(A | B)&lt;/code&gt;?&lt;/li&gt;
&lt;li&gt;What's the command for the Hadamard product again?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of tab-switching to a LaTeX reference site and losing my train of thought, I click the symbol, it inserts, and I keep writing. It sounds like a small thing. Over a 120-page document, it adds up.&lt;/p&gt;

&lt;h3&gt;
  
  
  Axiom: The AI That Actually Reads Your Errors
&lt;/h3&gt;

&lt;p&gt;TeX64 comes with an AI assistant called Axiom. I was skeptical — I've seen a lot of "AI writing assistants" that basically just dump generic suggestions.&lt;/p&gt;

&lt;p&gt;Axiom is different because it reads your compile log and your actual source files together.&lt;/p&gt;

&lt;p&gt;Here's a real example from my thesis: I had a &lt;code&gt;\begin{align}&lt;/code&gt; block that I'd copied from an older paper and pasted into a new section. Somewhere in the copy-paste, the closing &lt;code&gt;\end{align}&lt;/code&gt; got dropped. The compile error I got was:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;! LaTeX Error: &lt;span class="nt"&gt;\begin{align*}&lt;/span&gt; on input line 492 ended by &lt;span class="nt"&gt;\end{document}&lt;/span&gt;.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That message, to a LaTeX beginner, tells you essentially nothing useful. Axiom looked at the log and the source and said: "Line 492 opens an &lt;code&gt;align*&lt;/code&gt; environment that doesn't close before end of document. I found the likely location for a closing tag — here's the diff."&lt;/p&gt;

&lt;p&gt;One click. Fixed.&lt;/p&gt;

&lt;p&gt;It also generates LaTeX from natural language, which I use mostly for boilerplate I'd otherwise Google every time: tables, matrix environments, theorem/proof blocks. You describe it, it inserts clean LaTeX, you adjust as needed.&lt;/p&gt;

&lt;h3&gt;
  
  
  It Runs Entirely Offline
&lt;/h3&gt;

&lt;p&gt;This is the fundamental point for me. The compilation runs on your Mac, using your local TeX installation (MacTeX or TeX Live). No internet means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;No Overleaf timeouts&lt;/strong&gt; — my M2 MacBook Air compiles a 120-page document in about 8 seconds, every time, regardless of what time of day it is&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No data going to a server&lt;/strong&gt; — for sensitive research, this matters&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Works on trains, planes, cafes with spotty Wi-Fi&lt;/strong&gt; — I wrote a significant chunk of my thesis on a Shinkansen&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  SyncTeX That Actually Responds
&lt;/h3&gt;

&lt;p&gt;Click a paragraph in the PDF, jump to the source line. Click a source line, highlight it in the PDF. This is standard SyncTeX and Overleaf has it too — but when it's running locally with no round-trip to a server, the jump is instantaneous. It changes how you proof-read. You can actually scroll through the PDF and hop back to fix things fluidly.&lt;/p&gt;

&lt;h2&gt;
  
  
  What You Should Know Before Switching
&lt;/h2&gt;

&lt;p&gt;I want to be honest about the limitations, because "I found a thing and everything is perfect now" is not how software works.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;It's macOS only.&lt;/strong&gt; If you need to hand off to a Windows collaborator who also wants to compile locally, they'll need a different tool.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You still need MacTeX or TeX Live.&lt;/strong&gt; TeX64 is the editor; it doesn't ship with a TeX distribution. Installing MacTeX takes about 20 minutes the first time (it's a ~4GB download). After that, everything's local.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real-time collaborative editing doesn't exist here.&lt;/strong&gt; If you and your advisor are doing live back-and-forth edits simultaneously, Overleaf still wins. My workflow was to share via GitHub and Overleaf was only for sync, not real-time co-editing, so this wasn't a dealbreaker.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Heavy AI and OCR features have usage limits on the free tier.&lt;/strong&gt; The basic Axiom functionality and the visual palette work without a paid plan. Heavier OCR workloads or very frequent AI completions may require upgrading.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Actual Workflow Now
&lt;/h2&gt;

&lt;p&gt;For context: I'm a grad student in applied math. I write a lot of equations, a lot of theorems, occasional figures with TikZ.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open TeX64 with my project (multi-file, one root &lt;code&gt;main.tex&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Compile is fast, SyncTeX is instant&lt;/li&gt;
&lt;li&gt;When I need a new equation, palette for the tricky parts, hand-type the rest&lt;/li&gt;
&lt;li&gt;When compile fails, Axiom usually finds it in one try&lt;/li&gt;
&lt;li&gt;PDF opens in a side panel, SyncTeX to jump around while proofreading&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I've been on this setup for about five months. I have not had a single "Overleaf is slow right now" moment. That alone was worth the switch.&lt;/p&gt;




&lt;p&gt;If you're on a Mac and you're done with the "Overleaf is timing out again" problem, give &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;TeX64&lt;/a&gt; a try. Free to download, you can have a project compiling within an hour if you already have MacTeX installed.&lt;/p&gt;

</description>
      <category>latex</category>
      <category>macos</category>
      <category>productivity</category>
      <category>ai</category>
    </item>
    <item>
      <title>I Wasted Hours Picking LaTeX Packages. Then I Tried Asking an AI That Reads My Project</title>
      <dc:creator>TeX64</dc:creator>
      <pubDate>Sun, 29 Mar 2026 11:14:19 +0000</pubDate>
      <link>https://forem.com/tex64/i-wasted-hours-picking-latex-packages-then-i-tried-asking-an-ai-that-reads-my-project-4134</link>
      <guid>https://forem.com/tex64/i-wasted-hours-picking-latex-packages-then-i-tried-asking-an-ai-that-reads-my-project-4134</guid>
      <description>&lt;p&gt;Every LaTeX user has been there.&lt;/p&gt;

&lt;p&gt;You want to do something — display source code, format a theorem, draw a diagram — and you know a package exists for it. But &lt;em&gt;which one&lt;/em&gt;? There are always three or four candidates, and they're all slightly different. You open the CTAN docs, they're 80 pages long. You search Stack Overflow, you find a thread from 2011 where three people recommend three different things and the accepted answer says "it depends."&lt;/p&gt;

&lt;p&gt;Thirty minutes later you've committed to one package without really understanding why, and you're already second-guessing yourself.&lt;/p&gt;

&lt;p&gt;This was my life for most of my master's thesis. Then I started using &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;TeX64&lt;/a&gt;, a local-first LaTeX editor for macOS, and specifically its AI assistant called Axiom. And the "which package?" problem basically disappeared.&lt;/p&gt;

&lt;h2&gt;
  
  
  The specific problem with package discovery
&lt;/h2&gt;

&lt;p&gt;The issue isn't that documentation is bad. It's that when you're trying to pick a package, you're asking a &lt;em&gt;comparative&lt;/em&gt; question: "Given that I want to do X, and given what's already in my project, which option fits best?"&lt;/p&gt;

&lt;p&gt;That question doesn't have a good answer in a single package's documentation. You need someone who knows the whole ecosystem, knows your context, and can give you a recommendation with a reason.&lt;/p&gt;

&lt;p&gt;Google can get you close, but it gives you generic advice. Stack Overflow threads are either too general ("use whatever you like!") or too specific to someone else's setup. CTAN is comprehensive but not opinionated.&lt;/p&gt;

&lt;p&gt;What I wanted was something like asking a more experienced co-author: "Hey, which package would you use for this?"&lt;/p&gt;

&lt;h2&gt;
  
  
  What Axiom does differently
&lt;/h2&gt;

&lt;p&gt;Axiom is the AI assistant built into TeX64. What makes it actually useful for package selection is this: &lt;strong&gt;it reads your entire project before responding.&lt;/strong&gt; Not just the file you have open — all your &lt;code&gt;.tex&lt;/code&gt; files, your compile log, your &lt;code&gt;.bib&lt;/code&gt; file.&lt;/p&gt;

&lt;p&gt;So when you ask "which package should I use for X?", it answers in the context of your actual setup. It knows what you've already loaded, what your document class is, what errors you're getting.&lt;/p&gt;

&lt;p&gt;Here's an example. I was writing a paper and wanted to add algorithm pseudocode. I asked:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"I need to write algorithm pseudocode. What's the best package right now — algorithm2e, algorithmicx, or something else?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Axiom replied:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Both are actively maintained. &lt;code&gt;algorithm2e&lt;/code&gt; is self-contained and simpler to configure — good if you just need standard pseudocode without much customization. &lt;code&gt;algorithmicx&lt;/code&gt; with &lt;code&gt;algpseudocode&lt;/code&gt; gives you more control over formatting and is closer to the Algol style you see in CS papers. Since your document class is &lt;code&gt;IEEEtran&lt;/code&gt;, I'd suggest &lt;code&gt;algorithm2e&lt;/code&gt; — it plays well with IEEE margins without extra tuning. Want me to add it to your preamble?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's the kind of answer I actually needed. Not generic, not just a list — a recommendation with a reason, grounded in my actual document setup.&lt;/p&gt;

&lt;h2&gt;
  
  
  The error-based reverse lookup
&lt;/h2&gt;

&lt;p&gt;The other pattern I use constantly: I get an error, and instead of searching for what's missing, I just ask.&lt;/p&gt;

&lt;p&gt;Recent example. Compile error:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;! Undefined control sequence.
l.83 &lt;span class="k"&gt;\ce&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;H2O&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I pasted it into Axiom and asked what was happening. Response:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"&lt;code&gt;\ce&lt;/code&gt; is a command from the &lt;code&gt;mhchem&lt;/code&gt; package, which isn't loaded in your document. Add &lt;code&gt;\usepackage[version=4]{mhchem}&lt;/code&gt; to your preamble — the &lt;code&gt;version=4&lt;/code&gt; ensures you're using the current API rather than the legacy interface. Here's the diff:"&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight diff"&gt;&lt;code&gt;&lt;span class="gi"&gt;+ \usepackage[version=4]{mhchem}
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;One click to apply. That took about ten seconds total.&lt;/p&gt;

&lt;p&gt;Before TeX64, I would have searched "LaTeX undefined control sequence ce", found a thread that mentions &lt;code&gt;mhchem&lt;/code&gt;, figured out which version option to use, and applied it manually. Maybe five minutes on a good day. Now it's ten seconds.&lt;/p&gt;

&lt;h2&gt;
  
  
  The diff-before-apply design
&lt;/h2&gt;

&lt;p&gt;Something I appreciate about how Axiom is built: it &lt;strong&gt;never modifies your files silently.&lt;/strong&gt; Every change goes through a diff display first, and you confirm before it's applied.&lt;/p&gt;

&lt;p&gt;This matters more than it sounds. I've used other AI-in-editor integrations that just... change things. Then you don't know what changed, you're not sure if the change is correct, and your confidence in the document erodes.&lt;/p&gt;

&lt;p&gt;Axiom shows you the change, explains it, and waits for your confirmation. If I disagree with the suggestion, I can just say no and ask for a different approach. The files stay untouched until I explicitly say yes.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it handles "I don't know what I need"
&lt;/h2&gt;

&lt;p&gt;Sometimes you don't even know what you're looking for. You just know the output looks wrong.&lt;/p&gt;

&lt;p&gt;I tried: "My numbered lists inside theorem environments are using the wrong counter — the list items are numbered 1, 2, 3 but they inherit the theorem number weirdly. How do I fix this?"&lt;/p&gt;

&lt;p&gt;Axiom figured out I was mixing &lt;code&gt;enumerate&lt;/code&gt; with &lt;code&gt;amsthm&lt;/code&gt; in a way that caused counter conflicts, suggested using &lt;code&gt;enumitem&lt;/code&gt; with &lt;code&gt;\setlist&lt;/code&gt; to reset counters inside theorem environments, and showed exactly where to add what.&lt;/p&gt;

&lt;p&gt;It could have just recommended &lt;code&gt;enumitem&lt;/code&gt; in the abstract. Instead it diagnosed the specific problem in my specific setup. That's the part that actually saves time.&lt;/p&gt;

&lt;h2&gt;
  
  
  Honest limitations
&lt;/h2&gt;

&lt;p&gt;A few things worth knowing before you dive in:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;macOS only.&lt;/strong&gt; TeX64 is a native Mac app — Apple Silicon and Intel both work. No Windows version.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You still need a TeX distribution.&lt;/strong&gt; TeX64 is an editor, not a compiler. You'll need MacTeX or TeX Live installed separately. TeX64 has a built-in environment checker that walks you through the installation if you don't have it — so it's not a hidden trap, but it's not plug-and-play either.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AI features have usage limits on the free tier.&lt;/strong&gt; The free plan is enough to get a feel for how Axiom works. If you're writing regularly and asking Axiom questions daily, you'll probably want a paid plan. Heavy OCR and AI usage requires Basic or Pro.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Axiom is helpful but not infallible.&lt;/strong&gt; Occasionally it suggests a package that technically works but isn't the optimal choice for a particular edge case. Especially with more obscure packages, the recommendations are good but worth double-checking.&lt;/p&gt;

&lt;h2&gt;
  
  
  The actual time savings
&lt;/h2&gt;

&lt;p&gt;Before TeX64, I'd say package-related detours were costing me 30-60 minutes per writing session during my thesis. Each "which package for this?" question, each undefined command error, each "why isn't this rendering right?" moment triggered a search-and-experiment loop.&lt;/p&gt;

&lt;p&gt;With Axiom, those questions take seconds to minutes. The answer comes with context and a diff. I say yes, it's done.&lt;/p&gt;

&lt;p&gt;The cumulative effect over a 200-page thesis is significant.&lt;/p&gt;




&lt;p&gt;If you're on macOS and writing LaTeX regularly, it's worth trying. Free tier, no account required to start. &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>latex</category>
      <category>macos</category>
      <category>ai</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I Used to Retype Every Equation from Old PDFs. Here's How I Stopped.</title>
      <dc:creator>TeX64</dc:creator>
      <pubDate>Fri, 27 Mar 2026 09:52:41 +0000</pubDate>
      <link>https://forem.com/tex64/i-used-to-retype-every-equation-from-old-pdfs-heres-how-i-stopped-h5g</link>
      <guid>https://forem.com/tex64/i-used-to-retype-every-equation-from-old-pdfs-heres-how-i-stopped-h5g</guid>
      <description>&lt;p&gt;There's a particular kind of pain that only LaTeX writers know: you're working on a new paper, you need an equation from an old PDF — your own thesis from three years ago, a colleague's preprint, a textbook chapter — and the &lt;code&gt;.tex&lt;/code&gt; source file is gone. Just the PDF.&lt;/p&gt;

&lt;p&gt;So you open both windows side by side and start retyping.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;\mathbb{E}_{q_\phi(z|x)}\left[\log p_\theta(x|z)\right] - D_{\mathrm{KL}}\left(q_\phi(z|x) \| p(z)\right)&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Symbol by symbol, subscript by subscript. You compile. Something's off. You scan back through. Missed a closing brace on line 3. Fix it. Recompile. Now the spacing is wrong because you typed &lt;code&gt;\mathbb{E}&lt;/code&gt; where it should have been &lt;code&gt;\mathcal{L}&lt;/code&gt;. Another fix.&lt;/p&gt;

&lt;p&gt;Twenty minutes for one equation. You have eleven more to go.&lt;/p&gt;




&lt;h2&gt;
  
  
  The "obvious" solution and why it's still annoying
&lt;/h2&gt;

&lt;p&gt;Most people who've been through this enough times have landed on Mathpix. It's genuinely excellent at what it does — take a screenshot of an equation, get back LaTeX. The accuracy on printed math is remarkable.&lt;/p&gt;

&lt;p&gt;But here's what the Mathpix workflow actually looks like in practice:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Switch to Mathpix&lt;/li&gt;
&lt;li&gt;Trigger the screenshot tool&lt;/li&gt;
&lt;li&gt;Drag over the equation&lt;/li&gt;
&lt;li&gt;Wait for conversion&lt;/li&gt;
&lt;li&gt;Copy the result&lt;/li&gt;
&lt;li&gt;Switch back to your LaTeX editor&lt;/li&gt;
&lt;li&gt;Paste it in the right place&lt;/li&gt;
&lt;li&gt;Switch to Mathpix for the next one&lt;/li&gt;
&lt;li&gt;Repeat&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's eight steps per equation. If you have thirty equations to extract from an old paper, you'll execute that loop two hundred and forty times. The individual steps are tiny, but the context switching is real — every time you jump between apps, you lose a tiny bit of momentum. After an hour of it, you feel vaguely exhausted without having written a single original sentence.&lt;/p&gt;

&lt;p&gt;There are also open-source alternatives like pix2tex (LaTeX-OCR) and texify, which are free and run locally. But they all share the same fundamental problem: they exist outside your editor.&lt;/p&gt;




&lt;h2&gt;
  
  
  What "OCR inside the editor" actually means
&lt;/h2&gt;

&lt;p&gt;I came across &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;TeX64&lt;/a&gt; — a local-first LaTeX editor for macOS — while looking for something to replace my aging TeXShop setup. The OCR feature wasn't even what I was initially interested in, but it's what I kept coming back to.&lt;/p&gt;

&lt;p&gt;Here's what TeX64's OCR actually does differently: instead of being a separate application you invoke and paste from, it's integrated directly into the editor. You trigger it with a keyboard shortcut, drag over any equation anywhere on your screen (a PDF in Preview, a browser page, a screenshot you have open), and the converted LaTeX code appears at your cursor position.&lt;/p&gt;

&lt;p&gt;No app switch. No clipboard. No paste.&lt;/p&gt;

&lt;p&gt;The first time I used it, I spent a genuinely embarrassing moment looking around to see if something had gone wrong because it felt too fast and too simple to have actually worked.&lt;/p&gt;




&lt;h2&gt;
  
  
  Practical walkthrough
&lt;/h2&gt;

&lt;p&gt;Say I'm writing a new paper and I need to reuse the GMM likelihood derivation from my master's thesis (only have the PDF).&lt;/p&gt;

&lt;p&gt;With TeX64, the process is:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open the PDF in a separate window (Preview, or TeX64's built-in PDF viewer — whichever you prefer)&lt;/li&gt;
&lt;li&gt;Position your cursor in the &lt;code&gt;.tex&lt;/code&gt; file where you want the equation&lt;/li&gt;
&lt;li&gt;Hit the OCR shortcut&lt;/li&gt;
&lt;li&gt;Drag over the equation in the PDF&lt;/li&gt;
&lt;li&gt;The LaTeX code appears at your cursor&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No step 3 that's "switch apps." No step 5 that's "paste." The editor is already focused; the code goes directly in.&lt;/p&gt;

&lt;p&gt;For a moderately complex equation like this one:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;&lt;span class="k"&gt;\log&lt;/span&gt; p(&lt;span class="k"&gt;\mathbf&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;x&lt;span class="p"&gt;}&lt;/span&gt;) = &lt;span class="k"&gt;\log&lt;/span&gt; &lt;span class="k"&gt;\sum&lt;/span&gt;&lt;span class="p"&gt;_{&lt;/span&gt;k=1&lt;span class="p"&gt;}^{&lt;/span&gt;K&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;\pi&lt;/span&gt;&lt;span class="p"&gt;_&lt;/span&gt;k &lt;span class="k"&gt;\mathcal&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;N&lt;span class="p"&gt;}&lt;/span&gt;(&lt;span class="k"&gt;\mathbf&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;x&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;\mid&lt;/span&gt; &lt;span class="k"&gt;\boldsymbol&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\mu&lt;/span&gt;&lt;span class="p"&gt;}_&lt;/span&gt;k, &lt;span class="k"&gt;\boldsymbol&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\Sigma&lt;/span&gt;&lt;span class="p"&gt;}_&lt;/span&gt;k)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;TeX64 gets it right on the first try about 90% of the time in my experience. When it doesn't (usually a subscript issue or a missing brace), there's another feature that saves the day.&lt;/p&gt;




&lt;h2&gt;
  
  
  When OCR makes a small mistake: Axiom to the rescue
&lt;/h2&gt;

&lt;p&gt;TeX64 has a built-in AI assistant called Axiom that reads your compile logs and proposes fixes with actual diffs. When an OCR-extracted equation fails to compile, Axiom looks at the error message and typically identifies the specific issue in about two seconds.&lt;/p&gt;

&lt;p&gt;The workflow becomes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;OCR extracts equation (90% chance it's perfect)&lt;/li&gt;
&lt;li&gt;If compile error → Axiom reads the log, shows diff, one click to fix&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Compared to staring at a compile log that says &lt;code&gt;! Missing } inserted&lt;/code&gt; somewhere in a 500-line file, this is a meaningful time save.&lt;/p&gt;




&lt;h2&gt;
  
  
  Honest limitations
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;macOS only.&lt;/strong&gt; TeX64 is exclusively for Mac (Apple Silicon and Intel both work great). If your lab runs Windows or Linux, this isn't an option for you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You still need MacTeX or TeX Live.&lt;/strong&gt; TeX64 is an editor, not a full LaTeX distribution. You need a working TeX installation separately. The app will walk you through this if you don't have one, but plan for a 30-minute setup if you're starting fresh.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Free tier has limits on OCR volume.&lt;/strong&gt; There's a free tier that's genuinely useful for getting started, but if you're extracting dozens of equations a day, you'll likely want one of the paid plans. It's reasonably priced compared to Mathpix, but it's not free for heavy use.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Not for real-time collaboration.&lt;/strong&gt; If you need multiple people editing the same document simultaneously, Overleaf is still the right tool. TeX64 is local-first and built for individual work.&lt;/p&gt;




&lt;h2&gt;
  
  
  The bottom line
&lt;/h2&gt;

&lt;p&gt;The equation-from-PDF problem isn't hard to solve, but most solutions involve adding a tool &lt;em&gt;outside&lt;/em&gt; your editor and living with the friction. TeX64 solves it by putting OCR &lt;em&gt;inside&lt;/em&gt; the editor, which turns out to make a bigger difference than you'd expect.&lt;/p&gt;

&lt;p&gt;I've been using it for my PhD thesis for about eight months now. The OCR feature alone has probably saved me north of ten hours of retyping time, and that's a conservative estimate.&lt;/p&gt;

&lt;p&gt;If you're on a Mac and write LaTeX regularly, it's worth spending twenty minutes with it. You can download it at &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt; — the free tier is enough to get a real sense of whether the workflow works for you.&lt;/p&gt;

</description>
      <category>latex</category>
      <category>macos</category>
      <category>productivity</category>
      <category>academic</category>
    </item>
    <item>
      <title>My TikZ Diagrams Kept Failing to Compile — Here's What Finally Fixed It</title>
      <dc:creator>TeX64</dc:creator>
      <pubDate>Fri, 27 Mar 2026 08:54:24 +0000</pubDate>
      <link>https://forem.com/tex64/my-tikz-diagrams-kept-failing-to-compile-heres-what-finally-fixed-it-l1o</link>
      <guid>https://forem.com/tex64/my-tikz-diagrams-kept-failing-to-compile-heres-what-finally-fixed-it-l1o</guid>
      <description>&lt;p&gt;If you've written TikZ diagrams in LaTeX, you've probably hit this wall: the diagram looks perfectly fine in your head, you compile, and then a wall of cryptic error messages appears in the log.&lt;/p&gt;

&lt;p&gt;Not errors you can fix in 30 seconds. Errors like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;! Package pgf Error: No shape 'rounded rectangle' is known.
&amp;lt;to be read again&amp;gt;
               \relax
l.94 }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You look at line 94. It's just a closing brace. The actual problem is twenty lines earlier, in a &lt;code&gt;\usetikzlibrary&lt;/code&gt; call that's missing a library you didn't know existed.&lt;/p&gt;

&lt;p&gt;I spent three hours on this exact problem before a lab mate pointed me toward TeX64. I want to share what I learned.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why TikZ Errors Are Especially Painful
&lt;/h2&gt;

&lt;p&gt;Regular LaTeX errors are annoying but usually interpretable. "Undefined control sequence" means you misspelled a command. "Missing $ inserted" means you forgot math mode. There's a 1:1 relationship between the message and the fix.&lt;/p&gt;

&lt;p&gt;TikZ errors don't work this way. The error propagates through layers of PGF internals before surfacing, so by the time you see the message, you're looking at the wrong line number pointing at the wrong part of your code.&lt;/p&gt;

&lt;p&gt;Common TikZ error traps that cost me hours over the years:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Library fragmentation&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;TikZ features are split across dozens of libraries: &lt;code&gt;shapes.geometric&lt;/code&gt;, &lt;code&gt;shapes.misc&lt;/code&gt;, &lt;code&gt;shapes.symbols&lt;/code&gt;, &lt;code&gt;arrows.meta&lt;/code&gt;, &lt;code&gt;calc&lt;/code&gt;, &lt;code&gt;positioning&lt;/code&gt;, &lt;code&gt;fit&lt;/code&gt;, &lt;code&gt;backgrounds&lt;/code&gt;... The default installation gives you almost nothing. Every time you use a new shape or feature, you need the right library, and there's no autocomplete telling you which one.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;&lt;span class="c"&gt;% Need diamond? That's shapes.geometric&lt;/span&gt;
&lt;span class="c"&gt;% Need cloud? That's shapes.symbols&lt;/span&gt;
&lt;span class="c"&gt;% Need rounded rectangle? That's shapes.misc&lt;/span&gt;
&lt;span class="c"&gt;% Need to do math in coordinates? That's calc&lt;/span&gt;
&lt;span class="k"&gt;\usetikzlibrary&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;shapes.geometric, shapes.misc, shapes.symbols, calc, positioning&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You only learn this by hitting errors and reading the manual. Or spending 20 minutes on a StackOverflow search.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. LuaLaTeX-only libraries&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;graphdrawing&lt;/code&gt;, &lt;code&gt;force&lt;/code&gt;, &lt;code&gt;layered&lt;/code&gt; — these only work with LuaLaTeX. If you're using pdfLaTeX (which most people do by default), they fail silently or with a confusing error message. Switching to LuaLaTeX means re-checking whether all your other packages are compatible.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Package option conflicts&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;TikZ depends on &lt;code&gt;xcolor&lt;/code&gt;. Beamer also loads &lt;code&gt;xcolor&lt;/code&gt;. If the options conflict, you get:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;! LaTeX Error: Option clash for package xcolor.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The fix is to load &lt;code&gt;xcolor&lt;/code&gt; explicitly with the right options before &lt;code&gt;tikz&lt;/code&gt;, but figuring out which options are clashing requires reading both packages' source code or getting lucky on a forum.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Externalization path issues&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you use PGFPlots with external data files, the path resolution depends on where LaTeX thinks the working directory is — which depends on your editor, your build system configuration, and your project structure. Move one folder and nothing works.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Standard Approach and Its Limits
&lt;/h2&gt;

&lt;p&gt;For years, my workflow was: get an error → copy the relevant part of the log → paste into ChatGPT → read the explanation → manually apply the suggested fix → compile again → repeat.&lt;/p&gt;

&lt;p&gt;This works, but it has friction. You have to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Know which part of the log is actually relevant&lt;/li&gt;
&lt;li&gt;Provide enough context about your project (what packages you're using, what your file structure looks like)&lt;/li&gt;
&lt;li&gt;Manually apply the fix&lt;/li&gt;
&lt;li&gt;Hope the AI's suggestion doesn't break something else in your project it doesn't know about&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  What TeX64 Does Differently
&lt;/h2&gt;

&lt;p&gt;TeX64 is a local-first LaTeX editor for macOS. All compilation runs on your machine — no cloud, no internet required. It includes an AI assistant called Axiom that's specifically built for LaTeX, and it handles the TikZ error situation fundamentally differently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Axiom reads your compile log automatically.&lt;/strong&gt; You don't paste anything. You compile, the error appears, you switch to the Axiom panel and say "fix this error." Axiom already has the log.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Axiom knows your entire project.&lt;/strong&gt; It has access to all your &lt;code&gt;.tex&lt;/code&gt; files, your preamble, your build configuration. When I got the &lt;code&gt;xcolor&lt;/code&gt; conflict error, Axiom knew I was using Beamer (I hadn't told it anything) and responded: "The conflict is between Beamer's xcolor options and TikZ's. Load xcolor explicitly before both packages with the dvipsnames option."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Axiom shows diffs, not just explanations.&lt;/strong&gt; Instead of getting an explanation you have to manually implement, you get a before/after diff. One click applies it. Axiom never modifies files without showing you what it's about to do.&lt;/p&gt;

&lt;p&gt;Here's how it looked for my &lt;code&gt;rounded rectangle&lt;/code&gt; problem:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight diff"&gt;&lt;code&gt;&lt;span class="gd"&gt;- \usetikzlibrary{arrows.meta}
&lt;/span&gt;&lt;span class="gi"&gt;+ \usetikzlibrary{arrows.meta, shapes.geometric, shapes.misc}
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Applied, recompiled, it worked. The three hours I'd already spent staring at the same error felt absurd in retrospect.&lt;/p&gt;




&lt;h2&gt;
  
  
  Other Ways This Helped My Workflow
&lt;/h2&gt;

&lt;p&gt;Once I started using TeX64 more seriously, Axiom helped in situations I hadn't anticipated.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;arXiv citation lookup.&lt;/strong&gt; I'll tell Axiom "add a citation for [paper title]" and it searches arXiv, finds the paper, and inserts the BibTeX entry. My bibliography workflow went from "open browser, find paper, copy BibTeX, paste into bib file" to "describe the paper in one sentence."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Generating TikZ code from descriptions.&lt;/strong&gt; I described a flowchart I wanted ("three boxes connected by arrows with a decision diamond in the middle") and Axiom generated working TikZ code. Not always perfect, but it gives you something to edit rather than starting from a blank screen.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Log-first error diagnosis.&lt;/strong&gt; For errors that aren't TikZ-specific — &lt;code&gt;undefined reference&lt;/code&gt;, &lt;code&gt;missing endcsname&lt;/code&gt;, etc. — Axiom spots patterns across the whole log that you'd miss reading line by line.&lt;/p&gt;




&lt;h2&gt;
  
  
  Honest Limitations
&lt;/h2&gt;

&lt;p&gt;TeX64 is macOS-only. If you're on Windows or Linux, this isn't an option (yet).&lt;/p&gt;

&lt;p&gt;You need a working TeX distribution. MacTeX is the standard — it's about 4GB and takes a bit to install, but TeX64's environment diagnostics will guide you through it if you haven't set it up.&lt;/p&gt;

&lt;p&gt;The AI features have usage limits on the free tier. Heavy Axiom use (multiple projects, lots of back-and-forth) may require a paid plan.&lt;/p&gt;

&lt;p&gt;Real-time collaboration isn't built in. If you're co-writing a paper with several people simultaneously, Overleaf is still the better choice. TeX64 is for the solo-writing workflow.&lt;/p&gt;




&lt;h2&gt;
  
  
  Is It Worth Switching From Overleaf?
&lt;/h2&gt;

&lt;p&gt;If you're collaborating with multiple people in real-time: maybe not. Overleaf's killer feature is the shared real-time editing, and TeX64 doesn't replicate that.&lt;/p&gt;

&lt;p&gt;If you mostly write alone (which is most thesis writers, most of the time): local LaTeX has real advantages. No compile minute limits. No internet dependency. Faster compilation. My 150-page thesis document compiles in under 10 seconds on an M2 MacBook Air. On Overleaf's free tier, that same document would time out.&lt;/p&gt;

&lt;p&gt;The Axiom integration is what tips it over for me. TikZ errors are just one example — having an AI that understands your whole project and proposes specific diffs is meaningfully different from pasting logs into a chat interface.&lt;/p&gt;




&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;If you want to try it: &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt;. Free tier is available. You'll need MacTeX installed — TeX64's environment diagnostics will walk you through it if you're starting from scratch.&lt;/p&gt;

&lt;p&gt;For TikZ-heavy documents especially, I'd say the time savings from Axiom alone justify the setup time. I've lost days over the years to TikZ compilation errors that Axiom would have fixed in 30 seconds. That math doesn't take long to work out.&lt;/p&gt;

</description>
      <category>latex</category>
      <category>macos</category>
      <category>ai</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I Found a Way to Preview LaTeX Equations Without Compiling Every Time</title>
      <dc:creator>TeX64</dc:creator>
      <pubDate>Fri, 27 Mar 2026 07:55:48 +0000</pubDate>
      <link>https://forem.com/tex64/i-found-a-way-to-preview-latex-equations-without-compiling-every-time-3bn</link>
      <guid>https://forem.com/tex64/i-found-a-way-to-preview-latex-equations-without-compiling-every-time-3bn</guid>
      <description>&lt;p&gt;There's a specific kind of frustration that only LaTeX users know.&lt;/p&gt;

&lt;p&gt;You've been staring at a block of nested fractions and summations for ten minutes. You &lt;em&gt;think&lt;/em&gt; it's right. You hit compile. You wait 40 seconds. The PDF opens. The equation is on line 3 of the PDF and it's... almost right. One subscript is off. You fix it, compile again, wait again.&lt;/p&gt;

&lt;p&gt;By the time you get the equation right, you've forgotten what point you were trying to make with it.&lt;/p&gt;

&lt;p&gt;I did this for two years. Then I found a different way.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I Actually Needed
&lt;/h2&gt;

&lt;p&gt;The compile loop isn't just slow — it's cognitively expensive. Every time you have to wait, you break focus. And the worst part is that you don't actually &lt;em&gt;need&lt;/em&gt; to compile the whole document just to check whether an equation looks right. You just need to see the rendered output while you're building it.&lt;/p&gt;

&lt;p&gt;What I wanted was simple: &lt;strong&gt;click a symbol, see it rendered, immediately.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  TeX64's Visual Math Palette
&lt;/h2&gt;

&lt;p&gt;I came across &lt;strong&gt;TeX64&lt;/strong&gt;, a local-first LaTeX editor for macOS (&lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt;), while looking for alternatives to my TeXShop setup.&lt;/p&gt;

&lt;p&gt;The feature that immediately caught my attention: a &lt;strong&gt;visual equation palette&lt;/strong&gt; that shows you a live-rendered preview as you click symbols and build your equation — with zero compilation.&lt;/p&gt;

&lt;p&gt;Here's what the workflow looks like:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open the palette&lt;/li&gt;
&lt;li&gt;Click the integral symbol → &lt;code&gt;\int_{a}^{b}&lt;/code&gt; appears&lt;/li&gt;
&lt;li&gt;Fill in the bounds and integrand&lt;/li&gt;
&lt;li&gt;The rendered equation updates in real-time in the preview pane&lt;/li&gt;
&lt;li&gt;Happy with it? Copy the LaTeX code and paste into your &lt;code&gt;.tex&lt;/code&gt; file&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The output is completely standard LaTeX — not some proprietary format — so you can hand-edit it afterward or drop it into any project.&lt;/p&gt;

&lt;p&gt;For equations I know cold (like basic derivatives), I still type them by hand. But for anything involving unusual notation — multi-index tensor expressions, operator norms, custom arrow decorations — the palette is way faster than guessing the command and compiling to check.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Other Parts of TeX64 I Use Daily
&lt;/h2&gt;

&lt;p&gt;Beyond the palette, a few other things earned their place in my workflow:&lt;/p&gt;

&lt;h3&gt;
  
  
  Axiom (the AI assistant)
&lt;/h3&gt;

&lt;p&gt;TeX64 has a built-in AI called Axiom that understands your whole project — all &lt;code&gt;.tex&lt;/code&gt; files, compile logs, BibTeX. When a compile error pops up, Axiom reads the log and &lt;strong&gt;shows you a diff of exactly what to fix&lt;/strong&gt;. Not a vague hint. An actual before/after.&lt;/p&gt;

&lt;p&gt;I had a mysterious &lt;code&gt;Missing \begin{document}&lt;/code&gt; error that turned out to be a broken &lt;code&gt;\usepackage&lt;/code&gt; argument three files away. Axiom found it. I would have spent 20 minutes on that.&lt;/p&gt;

&lt;p&gt;Axiom also takes natural language: "write the Gaussian integral with substitution" → produces valid LaTeX. Useful for equations you only write once a year and never bother memorizing.&lt;/p&gt;

&lt;h3&gt;
  
  
  Equation OCR
&lt;/h3&gt;

&lt;p&gt;Paste a screenshot — handwritten notes, a textbook page, a PDF — and TeX64 converts the math to LaTeX. It handles both handwriting and printed equations. If you've used Mathpix before, this is that, but integrated into the editor.&lt;/p&gt;

&lt;p&gt;I photographed a whiteboard derivation from a lecture and had it in my thesis source file in about 15 seconds.&lt;/p&gt;

&lt;h3&gt;
  
  
  SyncTeX
&lt;/h3&gt;

&lt;p&gt;Click anywhere in the PDF → jump to the corresponding source line. Click a source line → jump to the PDF. This is standard in most decent LaTeX setups, but TeX64's implementation is snappy and works out of the box.&lt;/p&gt;

&lt;h3&gt;
  
  
  Offline, local-first
&lt;/h3&gt;

&lt;p&gt;Everything compiles on your Mac. No internet required. No files going to a cloud server. If your university VPN goes down in the middle of a deadline crunch, nothing changes.&lt;/p&gt;




&lt;h2&gt;
  
  
  Honest Limitations
&lt;/h2&gt;

&lt;p&gt;A few things worth knowing before you download:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;macOS only&lt;/strong&gt; — Apple Silicon and Intel both supported, but no Windows or Linux&lt;/li&gt;
&lt;li&gt;You still need MacTeX or TeX Live installed separately for compilation (the equation palette preview works without it, but actual document builds need a TeX distribution)&lt;/li&gt;
&lt;li&gt;No real-time collaboration — if you're co-authoring with someone who needs simultaneous editing, Overleaf still wins that specific use case&lt;/li&gt;
&lt;li&gt;The AI and OCR features have usage limits on the free tier; heavier use requires a Basic or Pro plan&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;Download from &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt;. There's a free tier and you &lt;strong&gt;don't need to create an account&lt;/strong&gt; to start using it — just download and open.&lt;/p&gt;

&lt;p&gt;If you don't have MacTeX, TeX64 will detect this on first launch and walk you through the installation. That part takes maybe 15 minutes.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Takeaway
&lt;/h2&gt;

&lt;p&gt;The compile-wait-check loop is one of those frictions that feels normal because you've just accepted it. But once you've used a real-time equation preview for a week, going back feels awful.&lt;/p&gt;

&lt;p&gt;TeX64's visual palette didn't change my entire workflow — I still write LaTeX, I still compile, I still get errors. But the part that used to be the most interruptive (verifying equation syntax mid-thought) is now basically instant.&lt;/p&gt;

&lt;p&gt;If you're on a Mac and writing math-heavy documents, it's worth trying.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I Was Paying $10/Month Just for Math OCR — Here's What I Use Instead</title>
      <dc:creator>TeX64</dc:creator>
      <pubDate>Fri, 27 Mar 2026 07:27:08 +0000</pubDate>
      <link>https://forem.com/tex64/i-was-paying-10month-just-for-math-ocr-heres-what-i-use-instead-2lc0</link>
      <guid>https://forem.com/tex64/i-was-paying-10month-just-for-math-ocr-heres-what-i-use-instead-2lc0</guid>
      <description>&lt;p&gt;For two years I paid Mathpix $10 a month to convert math equations from images into LaTeX. It was worth it at first. Snap a photo of a textbook page, get clean LaTeX in seconds — genuinely magic.&lt;/p&gt;

&lt;p&gt;But then I started doing the mental math. How often was I actually using it? Some months, every day. Some months, maybe a dozen times. And every month, without fail, $10 charged to the card.&lt;/p&gt;

&lt;p&gt;The real problem wasn't the price. It was the workflow.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Actual Problem With "Tool Per Task" Setups
&lt;/h2&gt;

&lt;p&gt;My routine looked like this: I'm in my LaTeX editor, I need a formula from a lecture slide PDF. So I minimize the editor, open Mathpix, snip the equation, copy the LaTeX, switch back to the editor, paste it, resume writing.&lt;/p&gt;

&lt;p&gt;Six steps. Every time. For what should be a two-second operation.&lt;/p&gt;

&lt;p&gt;I'm not saying it was unbearable. It wasn't. But multiply that by 20 equations in a paper and you've added a non-trivial amount of context-switching friction to your day. I kept wondering: why is OCR a separate app at all?&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Looked At First
&lt;/h2&gt;

&lt;p&gt;Before I found what I ended up using, I tried a few things:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pix2Text&lt;/strong&gt; — An open-source Python library with surprisingly good accuracy. It does what Mathpix does, for free. But it lives in the terminal. There's no integration with any editor, so the copy-paste ceremony doesn't go away. I'm not going to write a VS Code plugin for myself every time I want to avoid a SaaS subscription.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SmartSnip&lt;/strong&gt; — A macOS snipping tool that outputs LaTeX. Clean UI, good accuracy, even has a local model option. I actually used this for a month. But again: it's a standalone tool. Same switching problem as Mathpix.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Browser-based options&lt;/strong&gt; — DeepSeek's formula OCR is shockingly good and free. But "open browser, upload image, copy result" isn't exactly seamless when you're deep in a 60-page document.&lt;/p&gt;

&lt;h2&gt;
  
  
  Then I Found TeX64
&lt;/h2&gt;

&lt;p&gt;A comment on a Japanese tech blog mentioned that TeX64, a macOS LaTeX editor, had OCR built into the editor itself. I'd never heard of it.&lt;/p&gt;

&lt;p&gt;I downloaded it that evening.&lt;/p&gt;

&lt;p&gt;The editor is solid. It detected my existing MacTeX installation without any configuration, opened my thesis project, and rendered the PDF in a split view. SyncTeX worked out of the box — click a paragraph in the PDF, jump to the source line. That alone was a quality-of-life improvement over my previous setup.&lt;/p&gt;

&lt;p&gt;But the OCR: I took a screenshot of an equation from a lecture slide — a moderately complex one with summations and subscripts — and pasted it into TeX64. Three seconds later, the cursor was sitting right after:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;&lt;span class="k"&gt;\sum&lt;/span&gt;&lt;span class="p"&gt;_{&lt;/span&gt;k=0&lt;span class="p"&gt;}^{&lt;/span&gt;n&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;\binom&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;n&lt;span class="p"&gt;}{&lt;/span&gt;k&lt;span class="p"&gt;}&lt;/span&gt; x&lt;span class="p"&gt;^&lt;/span&gt;k y&lt;span class="p"&gt;^{&lt;/span&gt;n-k&lt;span class="p"&gt;}&lt;/span&gt; = (x + y)&lt;span class="p"&gt;^&lt;/span&gt;n
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I didn't touch another application. I didn't open a browser. I didn't leave my editor.&lt;/p&gt;

&lt;p&gt;That's the thing. OCR in TeX64 isn't a feature bolted on the side — it's integrated into the editing flow. You stay in the editor.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Else TeX64 Does That I Didn't Expect to Care About
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Axiom, the AI assistant&lt;/strong&gt;: When I get a compile error, I used to copy the log, paste it into ChatGPT, and wait for a response. Axiom reads the actual compile log, figures out the problem, and shows me a diff with the fix. One click to apply. It reads all my &lt;code&gt;.tex&lt;/code&gt; files and my BibTeX, so it understands the full project context. It also searches arXiv and can insert BibTeX entries directly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Visual equation palette&lt;/strong&gt;: Click symbols to build equations, see the rendered output in real time. I know LaTeX well enough that I don't need this constantly, but for complex matrix notation or obscure symbols, it beats hunting through documentation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Local-first&lt;/strong&gt;: Everything compiles on my Mac. No cloud, no internet required for compiling. My thesis drafts don't touch anyone's servers. This matters more to me than I expected.&lt;/p&gt;

&lt;h2&gt;
  
  
  What You Should Know Before Trying It
&lt;/h2&gt;

&lt;p&gt;TeX64 is macOS only. If you're on Windows or Linux, stop reading here — it's not for you.&lt;/p&gt;

&lt;p&gt;You still need MacTeX (or TeX Live) installed separately. TeX64 doesn't bundle a TeX distribution. First-time setup takes a bit, but TeX64's environment diagnostics walk you through it and detect what's missing.&lt;/p&gt;

&lt;p&gt;The OCR has a free tier. If you're doing heavy OCR work daily, you'll hit limits and need a paid plan. For most users — occasional to moderate equation conversion — the free tier is fine or the paid plan is cheaper than Mathpix anyway.&lt;/p&gt;

&lt;p&gt;Real-time collaborative editing isn't a thing here. If you and your advisor are both editing a document simultaneously in Overleaf, TeX64 doesn't replace that. It's for solo work.&lt;/p&gt;

&lt;h2&gt;
  
  
  Should You Try It?
&lt;/h2&gt;

&lt;p&gt;If you're a macOS user who writes LaTeX regularly — for a thesis, for research papers, for anything that involves equations — and you're currently paying for a separate OCR tool, the answer is probably yes.&lt;/p&gt;

&lt;p&gt;The free tier doesn't even require an account to start. Download, open your project, try the OCR once. If it clicks, it clicks.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>latex</category>
      <category>macos</category>
      <category>productivity</category>
      <category>ai</category>
    </item>
    <item>
      <title>My thesis was taking forever to write — turns out LaTeX was the bottleneck, not me</title>
      <dc:creator>TeX64</dc:creator>
      <pubDate>Fri, 27 Mar 2026 06:31:10 +0000</pubDate>
      <link>https://forem.com/tex64/my-thesis-was-taking-forever-to-write-turns-out-latex-was-the-bottleneck-not-me-4e1b</link>
      <guid>https://forem.com/tex64/my-thesis-was-taking-forever-to-write-turns-out-latex-was-the-bottleneck-not-me-4e1b</guid>
      <description>&lt;p&gt;I was three months from my thesis deadline writing maybe 200–300 words of actual content per day in LaTeX. Not because I didn't know what to write — I had notes, outlines, and research. The words just weren't making it onto the page fast enough.&lt;/p&gt;

&lt;p&gt;One evening I timed myself. In a 60-minute writing session, here's where the time actually went:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;22 minutes&lt;/strong&gt;: Writing actual text&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;19 minutes&lt;/strong&gt;: Debugging compile errors&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;12 minutes&lt;/strong&gt;: Looking up math syntax&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;7 minutes&lt;/strong&gt;: Managing bibliography entries&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's 38 minutes — more than half my session — fighting with LaTeX tooling. I wasn't slow at writing. I was slow at everything &lt;em&gt;around&lt;/em&gt; writing.&lt;/p&gt;

&lt;h2&gt;
  
  
  The compile error trap
&lt;/h2&gt;

&lt;p&gt;Every LaTeX writer knows the loop: write something, compile, get an error, open the log, stare at 200 lines of output, find the relevant line, understand what it means, fix it, compile again.&lt;/p&gt;

&lt;p&gt;The log output for a missing package looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;! LaTeX Error: File `algorithm2e.sty' not found.

Type X to quit or &amp;lt;RETURN&amp;gt; to continue,
or enter new name. (Default extension: sty)

Enter file name:
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you're experienced, you immediately know: install the package, add &lt;code&gt;\usepackage{algorithm2e}&lt;/code&gt;. If you're mid-thesis and context-switching constantly, it takes a minute to even process what the error is saying.&lt;/p&gt;

&lt;p&gt;Now multiply that by every session for months.&lt;/p&gt;

&lt;h2&gt;
  
  
  Finding TeX64
&lt;/h2&gt;

&lt;p&gt;I came across &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;TeX64&lt;/a&gt; through a GitHub discussion thread about local-first LaTeX editors for macOS. It's a Mac-native LaTeX editor with something called Axiom — an AI assistant that reads your entire project (all &lt;code&gt;.tex&lt;/code&gt; files, your compile logs, your &lt;code&gt;.bib&lt;/code&gt; file) before responding.&lt;/p&gt;

&lt;p&gt;The "reads your compile log" part caught my attention.&lt;/p&gt;

&lt;p&gt;I downloaded it, opened my thesis project, and tried to trigger an error on purpose by removing a &lt;code&gt;\usepackage&lt;/code&gt; line. Compiled. Axiom showed up with the error explanation and a diff showing exactly what to add back. I clicked apply.&lt;/p&gt;

&lt;p&gt;That was... it. No log-reading, no searching, no manual edit.&lt;/p&gt;

&lt;p&gt;I've been using it for a few months now, and here's what's actually changed.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Axiom does that generic AI can't
&lt;/h2&gt;

&lt;p&gt;When I paste a LaTeX error into ChatGPT, I get a reasonable but generic answer. "This usually means the package is missing — try adding &lt;code&gt;\usepackage{bm}&lt;/code&gt; to your preamble."&lt;/p&gt;

&lt;p&gt;Axiom knows my preamble. It knows what packages I'm already using, which files are included via &lt;code&gt;\input{}&lt;/code&gt;, what my bibliography file is called, and what the root file is. So when it answers, it's answering about &lt;em&gt;my&lt;/em&gt; specific project, not a hypothetical one.&lt;/p&gt;

&lt;p&gt;The diff system is also important. Axiom shows you exactly what change it wants to make before touching anything. You can read the diff, decide whether it looks right, and either apply it or tell Axiom to try something else. Your files never change silently.&lt;/p&gt;

&lt;h2&gt;
  
  
  Equation input without syntax lookup
&lt;/h2&gt;

&lt;p&gt;TeX64 has a visual math palette — click symbols to build equations and see them rendered in real time. I know some LaTeX writers find palettes patronizing, but for me the issue was always the &lt;em&gt;less common&lt;/em&gt; environments.&lt;/p&gt;

&lt;p&gt;I know &lt;code&gt;\frac{}{}&lt;/code&gt; and &lt;code&gt;\sum&lt;/code&gt; by heart. But &lt;code&gt;\begin{cases}&lt;/code&gt; vs &lt;code&gt;\begin{array}&lt;/code&gt; for piecewise functions? The exact syntax for &lt;code&gt;\underbrace&lt;/code&gt;? Whether it's &lt;code&gt;\mathbf&lt;/code&gt; or &lt;code&gt;\boldsymbol&lt;/code&gt; for vectors in a particular context? Those I had to look up every time.&lt;/p&gt;

&lt;p&gt;The palette handles all of those. And the rendered preview means I can see the output immediately rather than compiling just to check whether a symbol looks right.&lt;/p&gt;

&lt;p&gt;The other thing — OCR. You can paste a screenshot of handwritten notes or a printed equation from a PDF, and TeX64 converts it to LaTeX. I started photographing whiteboard derivations from my advisor's office and pasting them directly into my thesis. That workflow alone has probably saved me a few hours total.&lt;/p&gt;

&lt;h2&gt;
  
  
  Bibliography management that doesn't break flow
&lt;/h2&gt;

&lt;p&gt;My old reference workflow: find the paper on Google Scholar, click "Cite", select BibTeX, copy the entry, switch to my &lt;code&gt;.bib&lt;/code&gt; file, paste, fix any formatting issues, switch back, write &lt;code&gt;\cite{key}&lt;/code&gt;, compile to verify.&lt;/p&gt;

&lt;p&gt;That's not terrible, but it pulls you completely out of writing mode. You're context-switching to a search engine, a citation manager, a text file, and back.&lt;/p&gt;

&lt;p&gt;With Axiom, I describe what I want to cite and it searches arXiv. I pick from the results and it adds the BibTeX entry to my &lt;code&gt;.bib&lt;/code&gt; file. The whole thing happens inside the editor without a browser tab.&lt;/p&gt;

&lt;h2&gt;
  
  
  The local-first part matters more than I expected
&lt;/h2&gt;

&lt;p&gt;TeX64 is local-first — everything runs on your Mac. I use an M2 MacBook Air and my 140-page thesis compiles in about 9 seconds. No waiting for a server.&lt;/p&gt;

&lt;p&gt;I was on Overleaf before, and the compile waits weren't terrible — but they existed. There's a kind of cognitive tax to submitting a compile and waiting for a response. When the compile is instant and local, you iterate more freely.&lt;/p&gt;

&lt;p&gt;TeX64 also works completely offline for editing and compiling. Only the AI (Axiom) and OCR features need internet. For a researcher who sometimes works on planes or in places with flaky wifi, that matters.&lt;/p&gt;

&lt;h2&gt;
  
  
  Being honest about the limitations
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;macOS only&lt;/strong&gt;. If you're on Windows or Linux, this isn't for you.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You still need MacTeX or TeX Live&lt;/strong&gt; installed separately. TeX64 is an editor, not a TeX distribution. (It does detect if you're missing one and walks you through installation.)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No real-time collaboration&lt;/strong&gt;. If you need multiple people editing the same document simultaneously, Overleaf still wins on that front.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Heavy AI/OCR usage requires a paid plan&lt;/strong&gt;. The free tier is reasonable for getting started, but if you're relying on Axiom constantly, you'll want to look at the paid tiers.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Would I recommend switching?
&lt;/h2&gt;

&lt;p&gt;If you're writing a long-form LaTeX document on a Mac and you're spending more time on tooling than on content, yes — try it. The friction reduction is real.&lt;/p&gt;

&lt;p&gt;The core insight from my timing exercise was that my writing problem wasn't a writing problem. It was an environment problem. Fixing the environment didn't make me a better writer, but it cleared enough space that the writing could actually happen.&lt;/p&gt;

&lt;p&gt;You can download TeX64 at &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt;. Free to start, no account needed.&lt;/p&gt;

</description>
      <category>latex</category>
      <category>macos</category>
      <category>ai</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Why I Finally Ditched Word's Equation Editor (And What I Use Now)</title>
      <dc:creator>TeX64</dc:creator>
      <pubDate>Fri, 27 Mar 2026 05:41:35 +0000</pubDate>
      <link>https://forem.com/tex64/why-i-finally-ditched-words-equation-editor-and-what-i-use-now-2pk</link>
      <guid>https://forem.com/tex64/why-i-finally-ditched-words-equation-editor-and-what-i-use-now-2pk</guid>
      <description>&lt;p&gt;Let me paint you a picture. It's 11pm. You're halfway through writing a section on Bayesian inference for your thesis. You need to type a posterior distribution formula — nothing exotic, just a fraction with a couple of Greek letters and subscripts.&lt;/p&gt;

&lt;p&gt;In Microsoft Word, this is what happens: you leave the keyboard, click "Insert," click "Equation," find the fraction template, click again, navigate to the Greek letters panel, find μ and σ, click back into the numerator field, type the exponential, go back to the denominator…&lt;/p&gt;

&lt;p&gt;Five minutes later, you have one equation. And you've broken your flow at least six times.&lt;/p&gt;

&lt;p&gt;That was me, about 18 months ago. I'd been a loyal Word user for years, and I want to be fair — Word's equation editor is genuinely fine for simple math. If you're writing a short homework assignment with a handful of formulas, it gets the job done. But when your document has 80+ equations, when you need properly formatted matrices, when you need equation numbering that doesn't drift around when you move paragraphs — that's where it starts to fall apart.&lt;/p&gt;

&lt;h2&gt;
  
  
  The specific things that broke me
&lt;/h2&gt;

&lt;p&gt;Here's what finally pushed me over the edge:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Equation numbering.&lt;/strong&gt; Word's equation numbering is surprisingly fragile. Once I had a long chapter with numbered equations, and after reorganizing a few sections, a handful of numbers were wrong. Fixing them took the better part of an afternoon. LaTeX's &lt;code&gt;\label&lt;/code&gt; and &lt;code&gt;\ref&lt;/code&gt; system handles this automatically.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Matrix input.&lt;/strong&gt; Word uses its own variant of UnicodeMath syntax that doesn't match standard LaTeX. So &lt;code&gt;\begin{pmatrix}&lt;/code&gt; doesn't work — you have to use &lt;code&gt;\matrix()&lt;/code&gt; instead. This matters when you're sharing work with collaborators who use LaTeX, or when you need to submit to a journal that wants &lt;code&gt;.tex&lt;/code&gt; files.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Performance.&lt;/strong&gt; Around 90 equations, Word started getting noticeably sluggish. Scrolling, cursor movement, undo — all slightly laggy. Probably the real-time rendering overhead. LaTeX compiles separately and then the PDF is static, so this just isn't a problem.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I was nervous about switching to LaTeX
&lt;/h2&gt;

&lt;p&gt;Here's the thing that kept me from switching for too long: I assumed I'd have to memorize a ton of commands.&lt;/p&gt;

&lt;p&gt;And yes, for common stuff, LaTeX commands aren't that bad:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;&lt;span class="k"&gt;\frac&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;1&lt;span class="p"&gt;}{&lt;/span&gt;2&lt;span class="p"&gt;}&lt;/span&gt;      &lt;span class="c"&gt;% fraction&lt;/span&gt;
&lt;span class="k"&gt;\sqrt&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;x&lt;span class="p"&gt;}&lt;/span&gt;         &lt;span class="c"&gt;% square root&lt;/span&gt;
&lt;span class="k"&gt;\alpha&lt;/span&gt;, &lt;span class="k"&gt;\beta&lt;/span&gt;    &lt;span class="c"&gt;% Greek letters&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;But once you get into less-common territory — tensor notation, double integrals, custom matrix environments — I found myself constantly interrupting my writing to Google the right syntax. That friction was real, and it made LaTeX feel harder than it needed to be.&lt;/p&gt;

&lt;h2&gt;
  
  
  Enter TeX64 and its visual math palette
&lt;/h2&gt;

&lt;p&gt;A colleague pointed me toward &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;TeX64&lt;/a&gt;, a LaTeX editor for macOS. I was skeptical at first — I'd used other LaTeX editors and found them either overwhelming (TeXShop, Emacs + AUCTeX) or too basic.&lt;/p&gt;

&lt;p&gt;What won me over was the &lt;strong&gt;interactive math palette&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The concept is simple: it's a panel of symbols, operators, and templates organized by category. You click what you want, and the corresponding LaTeX code gets inserted into your document. But here's the key thing — it also shows you a live rendered preview of what the equation looks like as you build it.&lt;/p&gt;

&lt;p&gt;This feels a lot like Word's equation editor (you're still clicking things visually) except the output is real, compilable LaTeX. Once it's in your file, you can hand-edit it, copy it, use it in other documents — it's just LaTeX.&lt;/p&gt;

&lt;p&gt;For me, this bridged the gap. I could use the palette for symbols I didn't have memorized, and gradually I found myself typing common ones directly. The palette became a training tool as much as a convenience.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;&lt;span class="c"&gt;% Example: I used the palette to build this, then learned to type it manually&lt;/span&gt;
&lt;span class="k"&gt;\mathbf&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;A&lt;span class="p"&gt;}&lt;/span&gt; = &lt;span class="nt"&gt;\begin{pmatrix}&lt;/span&gt;
  a&lt;span class="p"&gt;_{&lt;/span&gt;11&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="p"&gt;&amp;amp;&lt;/span&gt; a&lt;span class="p"&gt;_{&lt;/span&gt;12&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="p"&gt;&amp;amp;&lt;/span&gt; a&lt;span class="p"&gt;_{&lt;/span&gt;13&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;\\&lt;/span&gt;
  a&lt;span class="p"&gt;_{&lt;/span&gt;21&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="p"&gt;&amp;amp;&lt;/span&gt; a&lt;span class="p"&gt;_{&lt;/span&gt;22&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="p"&gt;&amp;amp;&lt;/span&gt; a&lt;span class="p"&gt;_{&lt;/span&gt;23&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;\\&lt;/span&gt;
  a&lt;span class="p"&gt;_{&lt;/span&gt;31&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="p"&gt;&amp;amp;&lt;/span&gt; a&lt;span class="p"&gt;_{&lt;/span&gt;32&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="p"&gt;&amp;amp;&lt;/span&gt; a&lt;span class="p"&gt;_{&lt;/span&gt;33&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="nt"&gt;\end{pmatrix}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  The OCR thing is genuinely impressive
&lt;/h2&gt;

&lt;p&gt;TeX64 also has equation OCR built in. You screenshot or photograph a math expression — from a textbook, a whiteboard, a PDF — and it converts it to LaTeX.&lt;/p&gt;

&lt;p&gt;I was dubious. But it works. I took a photo of a page from a signal processing textbook, pasted it into TeX64, and got back something I could use with minor edits. The accuracy on printed math is high. Handwritten equations are hit or miss, but even a 70% accurate starting point is faster than typing from scratch.&lt;/p&gt;

&lt;p&gt;For thesis work, this is a significant time save when you're referencing formulas from papers or books and don't want to retype everything.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI error fixing that actually works
&lt;/h2&gt;

&lt;p&gt;TeX64 has an AI assistant called Axiom that reads your compile logs and proposes fixes. This matters more than it sounds.&lt;/p&gt;

&lt;p&gt;LaTeX error messages are notoriously cryptic:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;! Undefined control sequence.
l.312 &lt;span class="k"&gt;\underbrace&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Axiom looks at the full log, understands the project context, and tells you something like: "You're missing &lt;code&gt;\usepackage{amsmath}&lt;/code&gt; in your preamble — this command requires it." It shows the fix as a diff so you can review before applying.&lt;/p&gt;

&lt;p&gt;It also does natural language → LaTeX generation: "Write the formula for the normal distribution" → you get the actual code. Useful when you know what you want mathematically but can't remember the exact syntax.&lt;/p&gt;

&lt;h2&gt;
  
  
  SyncTeX for large documents
&lt;/h2&gt;

&lt;p&gt;One feature I didn't know I needed until I had it: SyncTeX. This is the bidirectional PDF ↔ source link.&lt;/p&gt;

&lt;p&gt;Click somewhere in the compiled PDF → your cursor jumps to that line in the source. Click a line in the source → the PDF scrolls to that part.&lt;/p&gt;

&lt;p&gt;When your thesis is 150 pages across 8 files, this is invaluable. "Which file has the equation I'm looking for?" is no longer a problem.&lt;/p&gt;

&lt;h2&gt;
  
  
  The honest limitations
&lt;/h2&gt;

&lt;p&gt;I want to be upfront about the downsides:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;macOS only.&lt;/strong&gt; TeX64 doesn't run on Windows or Linux. If you're not on a Mac, it's not an option.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You still need to install a TeX distribution.&lt;/strong&gt; TeX64 doesn't include the LaTeX compiler — you need MacTeX or TeX Live installed separately. This is a one-time setup (about 20-30 minutes), but it's a real step that Word obviously doesn't require.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Not for real-time collaboration.&lt;/strong&gt; If you're cowriting with someone and need to work simultaneously in the same document, Overleaf is better for that specific use case. TeX64 is a solo writing tool.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Heavy AI/OCR use requires a paid plan.&lt;/strong&gt; There's a free tier to start, but if you're using OCR or Axiom heavily, you'll hit limits and need to upgrade.&lt;/p&gt;

&lt;h2&gt;
  
  
  So should you switch?
&lt;/h2&gt;

&lt;p&gt;If you're a Mac user who writes documents with significant math content, and you've started feeling the friction of Word's equation editor — yes, I think it's worth trying.&lt;/p&gt;

&lt;p&gt;The visual math palette removes the biggest psychological barrier to LaTeX (the "I have to memorize everything" feeling), and the rest of the editor is genuinely well-designed for academic writing workflows.&lt;/p&gt;

&lt;p&gt;The free tier is a good starting point. You can get a real feel for it without committing to anything.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://tex64.com" rel="noopener noreferrer"&gt;tex64.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>latex</category>
      <category>macos</category>
      <category>productivity</category>
      <category>academic</category>
    </item>
  </channel>
</rss>
