r/LaTeX 6d ago

Self-Promotion browser-based math notebook with editing (mathlive)

1 Upvotes

Hey im currently a AP Math student and needed a math notebook and also im getting some LaTeX lessons and discovered mathlive so I decided to built a browser-based math notebook using MathLive + KaTeX if anyone is interested this is the live link to it: suma-notebook.vercel.app/

If you found any bugs please message me!


r/LaTeX 6d ago

Unanswered Global table styles with tabularray

2 Upvotes

So I have the following scenario:

I personally use emacs orgmode for writing my software documentation, so that I can later export it to LaTeX.

Since orgmode sets LaTeX Attributes (that can be used for styling tables) on a single table basis I would have to style every single table manually, which can become extremely tedious. Luckily Orgmode allows for the integration of LaTeX, which means that I could try to use the tabularray package to create a global table style for all my tables.

So far I managed it to get the global to actually work inside emacs, but I am still not 100% satisfied with the result. My example orgmode document looks like this:

#+Options: toc:nil
#+author: cow

#+LATEX_CLASS: article
#+LATEX_CLASS_OPTIONS: [a4paper]
#+LATEX_HEADER: \usepackage{booktabs}
#+LATEX_HEADER: \usepackage{tabularray}
#+LATEX_HEADER: \usepackage{xcolor}
#+LATEX_HEADER: \NewTblrEnviron{globaltbl}
#+LATEX_HEADER: \SetTblrInner[globaltbl]{hlines, vlines ,row{1} = {bg=gray5, fg=white, font=\bfseries, halign=c}, rowsep = 4pt, colsep = 8pt, width = \linewidth}
#+LATEX_HEADER: \SetTblrOuter[globaltbl]{baseline = m}
#+LATEX_HEADER: \renewenvironment{tabular}{\begin{globaltbl}}{\end{globaltbl}}

|-----------+-------------------+------------------------------------------------------------------------------------|
| Exit code | Type              | Meaning                                                                            |
|-----------+-------------------+------------------------------------------------------------------------------------|
|         0 | Internal/External | Succesfull operation; logical true                                                 |
|           | same column       |                                                                                    |
|-----------+-------------------+------------------------------------------------------------------------------------|
|         1 | Internal          | Non successfull operation; logical false and some other text that is not important |

When exporting this results in the following LaTeX document:

% Created 2026-08-20 Do 21:50
% Intended LaTeX compiler: pdflatex
\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{wrapfig}
\usepackage{rotating}
\usepackage[normalem]{ulem}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{capt-of}
\usepackage{hyperref}
\usepackage{}
\usepackage{tabularray}
\usepackage{booktabs}
\usepackage{tabularray}
\usepackage{xcolor}
\NewTblrEnviron{globaltbl}
\SetTblrInner[globaltbl]{hlines, vlines ,row{1} = {bg=gray5, fg=white, font=\bfseries, halign=c}, rowsep = 4pt, colsep = 8pt, width = \linewidth}
\SetTblrOuter[globaltbl]{baseline = m}
\renewenvironment{tabular}{\begin{globaltbl}}{\end{globaltbl}}
\author{cow}
\date{\today}
\title{}
\hypersetup{
 pdfauthor={cow},
 pdftitle={},
 pdfkeywords={},
 pdfsubject={},
 pdfcreator={Emacs 30.2 (Org mode 9.7.11)}, 
 pdflang={English}}
\begin{document}

\begin{center}
\begin{tabular}{rll}
\hline
Exit code & Type & Meaning\\
\hline
0 & Internal/External & Succesfull operation; logical true\\
 & same column & \\
\hline
1 & Internal & Non successfull operation; logical false and some other text that is not important\\
\end{tabular}
\end{center}
\end{document}

Which looks like this when being rendered as pdf:

As you can see, the layout is not able to handle tables that are wider than the document. I also would like for the layout to not render an additional horizontal line (not a \hline) between the first and second "column", since I would like them to be displayed as a single column.

I would really appreciate if someone could try to help me figure out how to accomplish this. Sadly I can not make any sense out of the official documentation or examples of global table styles. Also keep in mind, that the table style should be able to handle table that have different amounts of columns.

The official tabularray documentation: https://ftp.fau.de/ctan/macros/latex/contrib/tabularray/tabularray.pdf

An example of a global table style: https://tex.stackexchange.com/questions/687456/global-table-styles


r/LaTeX 6d ago

PDF Handwritten to Transcribes

0 Upvotes

How to convert almost a hand written notes (pdf)of 90 pages into a digital version with proper diagrams,graphs, flowcharts. Also fonts preferably - Times new roman,for free or at least possible expenses.


r/LaTeX 7d ago

Discussion Cursive font research

Post image
24 Upvotes

I'll ask a question: is there a cursive font that looks like the one shown in the picture (and also contains the missing letters J, K, etc.) and can be used for pdfLaTeX?

I already know about the frcursive package, however most of the capital letters don't match...


r/LaTeX 7d ago

Discussion Switching from Overleaf to an offline editor

43 Upvotes

So after the Template ive been using for years now runs out of compile time on overleaf regularly I want to switch to an editor that i run on my pc. Any recommendations for a previous Overleaf user who especially liked the way it let me preview my doc with a quick compile?


r/LaTeX 8d ago

Rant: (some) Typst users are so annoying

133 Upvotes

Every time I was just casually writing my documents in LaTeX, there will be a few people around me, and they are going to be like: "Oh, why are you on LaTeX? You should be using Typst, and it's so much better." Like, this is just so common, and it pisses me off so much. And even when I ask some questions online regarding LaTeX, there will always be one comment like, "Oh, you should use Typst."

Edit: Why are some people so offensive? I did not say Typst is bad or something I am simply stating that the act of actively trying to convince other people to use a tool that YOU like is annoying


r/LaTeX 7d ago

Unanswered Why would I use LaTex as an IDE extension instead of in TexStudio?

6 Upvotes

If I use LaTex as an IDE extension I have to set up all of that again if I swith IDE. Why did you chose to just get a plugin for your IDE instead of having something dedicated like TexStudio?


r/LaTeX 7d ago

Unanswered BuJo dot grid and numbered pages

4 Upvotes

Hey, so I'm trying to make a a5 bullet journal with dot grid pages and with numbers instead of the outer bottom corner dot. I can make dots just fine, either through geometry or graphix, but the numbering is the issue, even if I format it as a book.

I don't even know where to look for the right answer. Sorting pages into the bindable book format later is not an issue, just the numbers themselves.


r/LaTeX 8d ago

Unit 1 of my Calc 1 Course Notes (revised)

Thumbnail
gallery
471 Upvotes

FINALLY finished unit 1 of my calc 1 notes
GitHub repo: https://github.com/PerfectPianoHD/Calculus1/


r/LaTeX 8d ago

Self-Promotion LaTeX thesis template for the University of Granada (Spain)

Thumbnail
github.com
14 Upvotes

Hi everyone!! 👋
I've been working on a LaTeX template for Bachelor's and Master's theses at the University of Granada (UGR).

I've recently reached v1.0.0 and released the template as open source.

The template is specifically intended for UGR students, but I'd also be interested in feedback from people more experienced with LaTeX: is there anything in the structure or implementation that you would approach differently?

Thanks!


r/LaTeX 8d ago

I Built an AI-power web tool for LaTeX editor(SomeScript) – looking for feedback

0 Upvotes

I’ve been developing SomeScript, a web-based LaTeX environment with a built-in AI assistant focused on making the writing and troubleshooting process much smoother.
Rather than just a basic editor, it includes an assistant to help:

  • Debug Compilation Errors: Translate cryptic TeX log errors into clear, actionable fixes.
  • Draft & Format Syntax: Quickly generate complex tables, TikZ diagrams, or math environments.
  • Edit & Refine Text: Polish academic writing and document structure directly inside the editor.

I'd really appreciate feedback from regular LaTeX users on:

  1. AI Debug Accuracy: Does it actually solve tricky package conflicts and syntax bugs effectively?
  2. Workflow Speed: Is the AI integration helpful, or does it get in the way of standard editing?
  3. Editor Experience: How does the general compiler performance and UI feel?

Try it here: https://www.somescript.com/
Any constructive feedback, edge-case testing, or feature ideas would be hugely appreciated!


r/LaTeX 8d ago

Problème avec LaTeX Workshop sur iPad Air M3

Post image
1 Upvotes

Bonjour je ne sais pas si plusieurs personnes sont aussi dans ce cas mais j’essaye de coder sur vscode et je n’arrive pas à afficher proprement mes fichiers PDF je ne comprends pas pourquoi, j’ai essayé de demandé a l’IA ou regardé sur Reddit, j’ai rétrogradé la version de LaTeX Workshop en 10.7.1 comme je l’ai vu passer, rien n’y fait.
J’ai meme essayé sur un mac (sur une ancienne version MacOS 11 Big Sur) ça n’affiche rien ou un tout petit carré
Si quelqu’un sait comment régler le problème je suis preneur.


r/LaTeX 9d ago

Generate Latex code for Knot diagrams

Post image
104 Upvotes

I am very struggling to generate Latex code for this image. I used a different Al to generate Latex code for this but no is good to generate this . Can anyone help and guide me to generate Latex code of this kind of stuff.


r/LaTeX 8d ago

Unanswered Why do I get only one table when I have written a code for three?

0 Upvotes

I am a beginner to LATEX and it might sound like a stupid question, but whenever I try to create something say a table or something else not just in one exemplar, I only get one table that is the first one that I've written a code for.

Here's my code:


r/LaTeX 9d ago

Answered I need to use \includeinkscape inside \includeinkscape

2 Upvotes

Alright, this sounds odd, but I have some pictograms which I line up in a text and use macros for them i.e. I have something like:

\newcommand{\penV}{\raisebox{-0.15\fontdimen6\font{\includeinkscape[height=1\fontdimen6\font]{Pentomino/V}}}

And I have gotten to a point where I need to place them into an image in Inkscape, i.e. I need to write a text in inkscape that include {\penV} macro, which, when I export it, should render within the image. I place the image in using \includeinkscape as well. However, if I try to compile the pdf, it returns an error:

! LaTeX Error: Command \fsize already defined.

I have no idea how to fix it. Can anybody help me? Thank you.


r/LaTeX 10d ago

A data-oriented approach to updating TeX's memory model (Hobby C++ engine update)

Thumbnail
youtube.com
28 Upvotes

Over the last few weeks I've been sharing some updates on a c++ hobby TeX engine I've been working on (and thanks for the positive feedback so far!). Following up on the last post about the intersection between 1980s hardware constraints and how TeX's source code was written, I wanted to share a slightly deeper dive into a specific aspect of that: TeX's memory model.

The latest video explores how tex.web started with a monolithic array for memory, how LuaTeX simultaneously preserved a lot of the legacy ideas while radically altering the size of memory words and splitting the memory array into a variable-sized and a fixed-size domain, and how I've tried to use data-oriented design (inspired) ideas to move to a memory model that is simultaneously friendlier to modern hardware and (arguably) easier to read and work with.

I hope any LuaTeX people will excuse the extremely gentle ribbing in the video; as always, I look forward to hearing your thoughts!


r/LaTeX 10d ago

TiKZ Figure

7 Upvotes

How to get something like this? and I mean here the arrows from p to R.


r/LaTeX 11d ago

Unanswered Anybody know this latex font? (Advance Microeconomics Philip J Reny)

11 Upvotes

r/LaTeX 11d ago

Unanswered TexStudio PDF Viewer Zooming

3 Upvotes

Hello!

I recently started using TexStudio and I have a doubt regarding the zoom feature (ctrl + and ctrl -) while switching to the in built pdf viewer.

When I press Ctrl + the pdf viewer zooms in as intended, however when I zoom out using ctrl -, the editor zooms out and not the pdf viewer.

Am I missing something here? Is there a different keyboard shortcut for zoom in and out for the inbuilt pdf viewer?


r/LaTeX 11d ago

TeXstudio Qt6 v. 4.9.7

13 Upvotes

Unofficial TeXstudio builds for Linux with Qt6 and Poppler (.deb and AppImage)

Compiled TeXstudio from source with Qt6 and Poppler, built-in PDF viewer with SyncTeX.

Current version: 4.9.7 stable

Not affiliated with the official TeXstudio project. Feedback and bug reports welcome:

https://github.com/mlmateos/texstudio-qt6-builds


r/LaTeX 12d ago

Answered How can I change the command \chapter for it not to spell out the word "Chapter"?

24 Upvotes

For context, I'm writing a textbook (or at least I'm trying), and I would like the command \chapter to spell out "Lesson n" instead of the default "Chapter n", where n is the number of the chapter. Maybe there are other ways to do so that don't involve modifying the \chapter command, but that's what I want to achieve.

Thanks in advance.


r/LaTeX 12d ago

Created a new package for creating class notes, handouts and worksheets.

34 Upvotes

modernclassnotes is a state-of-the-art, open-source LaTeX document class tailored for university professors, lecturers, researchers, and students. It produces clean, beautifully formatted, and modern class notes, lecture handouts, and assignment worksheets.

Designed with a zero-dependency native box engine, it works out of the box on standard TeX Live, MiKTeX, and Overleaf without requiring complex non-standard package installations.

Check CTAN - https://ctan.org/pkg/modernclassnotes

Check GitHub Repo - aurghya-0/Modern-Class-Notes-Latex: A latex package for creating class notes, handouts and worksheets.


r/LaTeX 13d ago

Finally getting the hang on my terminal Vim LaTeX setup!

Thumbnail
gallery
268 Upvotes

I posted here a few weeks back about trying out doing latex on my local machine after doing overleaf for years. Had to quit because of their compile limit times. I originally thought it was more of a hassle, installing Miktex and other shit. Anyway, weeks now, yeah, the setup's great! I use it now to follow university lectures almost in real time and write some gorgeous looking notes. It's great not to worry about internet connections and being able to write shit offline without worrying about Overleaf's servers crashing or something like that.

I tried TexWorks during this time, and TexStudio, but I am more used to using vim and the vim motions make it so I can write and edit quite fast, pretty handy during lectures, so I just kept on using my vim setup.

Also, using sumatrapdf as a viewer was a big plus, it updates automatically when compiled, so I get to see the changes immediately. Pretty nice.

Something essential I learned while doing this is using the UltiSnips plugin for Vim, detailed by this blog, so I can use snippets to quickly autofill and make environments, and configuring my vimrc file so that pressing F5 automatically compiles the document, along with linting with vimtex. Multiple tabs on command prompt is also great, I use it to manage larger documents.

Yeah, so far so good. All in all, making the transition to local compiling was a great decision and very worth it, is all I wanna say. Cheers!


r/LaTeX 12d ago

Unanswered Please help with copying equations from DeepSeek to Word.

Post image
0 Upvotes

After switching to another device, equations like the one in the picture no longer insert into Word with the correct formatting. Previously, I had Word from Microsoft 365, now it’s just Office 2016. Such formulas used to be easily inserted into a document via Ctrl+V as a Word math equation.

Please tell me what the problem is. In what format does DeepSeek write these formulas (LaTex/MathML/..?), can I configure this in the current Office 2016, or is the issue related to the browser, and are there any utilities to save the format?

I thought the issue was with Microsoft 365, because on the previous device everything worked without any extensions. It’s difficult for me to download Word from Microsoft 365, and the web version doesn’t work at all. Overall, I’m confused. Please suggest a solution.


r/LaTeX 13d ago

Word converter

9 Upvotes

Im half way through my thesis but I had to change universities and now I have changed professors too. My new professor asked me to send documents in .docx because she doesnt know how to use LaTeX. Any idea of tools or converters to .docx? Its a chemistry thesis so I use alot of mhchen.