Hi Noam,
I see that Typst is like combining easier syntax (markdown-like) with a LaTeX-like quality of output with a smaller codebase, and so easier to install and web-friendly. Putting it into the backend omits the syntax/learning benefits while it keeps some limitations compared to full LaTeX ...
Search found 10233 matches
- Sun Jun 08, 2025 11:38 am
- Forum: LyX
- Topic: Announcing TyX - A LyX-like experience rewritten for Typst and the modern era
- Replies: 4
- Views: 4389
- Sun Jun 08, 2025 12:46 am
- Forum: LyX
- Topic: Announcing TyX - A LyX-like experience rewritten for Typst and the modern era
- Replies: 4
- Views: 4389
Re: Announcing TyX - A LyX-like experience rewritten for Typst and the modern era
Hi Noam,
welcome to the forum!
Most of our users work with LaTeX, some with LyX, and we are happy to support LyX users as well, especially when it involves ERT.
TyX sounds interesting. My first understanding is, that it may be a front-end/editor and the backend shall be Typst. When the backend is ...
welcome to the forum!
Most of our users work with LaTeX, some with LyX, and we are happy to support LyX users as well, especially when it involves ERT.
TyX sounds interesting. My first understanding is, that it may be a front-end/editor and the backend shall be Typst. When the backend is ...
- Tue Jun 03, 2025 2:01 pm
- Forum: Math & Science
- Topic: Help: Creating Pascal-esque triangle (different structure and numbers) with TikZ for academic paper
- Replies: 1
- Views: 5995
Re: Help: Creating Pascal-esque triangle (different structure and numbers) with TikZ for academic paper
Hi,
welcome to the forum!
I'm glad you got these books. I wrote them, and I'm happy when I hear that people read the books. I hope you liked them! Would you please be so kind to post a review for each on Amazon? (even if you got them in another bookstore). Reviews help me find readers and convince ...
welcome to the forum!
I'm glad you got these books. I wrote them, and I'm happy when I hear that people read the books. I hope you liked them! Would you please be so kind to post a review for each on Amazon? (even if you got them in another bookstore). Reviews help me find readers and convince ...
- Sat May 31, 2025 8:19 pm
- Forum: Graphics, Figures & Tables
- Topic: Draw line around text
- Replies: 2
- Views: 8323
- Wed May 28, 2025 11:43 pm
- Forum: Presentations and Posters
- Topic: customize beamer miniframes bullets spacing
- Replies: 2
- Views: 7401
Re: customize beamer miniframes bullets spacing
Hi,
you can patch the
Stefan
you can patch the
\slideentry
command, after loading the miniframes
theme:Code: Select all
\makeatletter
\patchcmd{\slideentry}{\ifbeamer@compress}%
{\ifbeamer@compress\ifnum#2>1\ifnum#3=1\advance\beamer@xpos by 1\relax\fi\fi}{}{}
\makeatother
- Mon May 26, 2025 12:23 am
- Forum: Document Classes
- Topic: Emergency stop error in running preamble
- Replies: 6
- Views: 13526
Re: Emergency stop error in running preamble
No problem, that's why we have a forum for LaTeX users to talk. 
And by the way, after an update, the email notifications stopped working in the forum; when I noticed your posts without receiving a notification, I found it and fixed it; another good reason to talk here.
Stefan

And by the way, after an update, the email notifications stopped working in the forum; when I noticed your posts without receiving a notification, I found it and fixed it; another good reason to talk here.
Stefan
- Sun May 25, 2025 3:39 pm
- Forum: Document Classes
- Topic: Emergency stop error in running preamble
- Replies: 6
- Views: 13526
Re: Emergency stop error in running preamble
Hi Bob,
that's probably you compile preamble.tex (that starts without \documentclass as preamble.tex is actually be input after \documentclass in your document, and of course it contains no \end as in your first post's error message) and not your document. Ensure that your editor compiles your ...
that's probably you compile preamble.tex (that starts without \documentclass as preamble.tex is actually be input after \documentclass in your document, and of course it contains no \end as in your first post's error message) and not your document. Ensure that your editor compiles your ...
- Sat May 24, 2025 2:21 pm
- Forum: Document Classes
- Topic: Emergency stop error in running preamble
- Replies: 6
- Views: 13526
Re: Emergency stop error in running preamble
Hi Bob,
you have \documentclass[a4paper,12pt]{book} in the preamble, but \documentclass[openany]{book} in the document, you cannot have both. Remove one (better from the preamble) and see if it's better.
Stefan
you have \documentclass[a4paper,12pt]{book} in the preamble, but \documentclass[openany]{book} in the document, you cannot have both. Remove one (better from the preamble) and see if it's better.
Stefan
- Tue May 13, 2025 5:07 pm
- Forum: Math & Science
- Topic: Multiline Equation with Alignment
- Replies: 2
- Views: 8002
Re: Multiline Equation with Alignment
You can nest split or aligned environments, or use an alignat environment for aligning at several places, but a quick easy way is to have an invisible equal sign:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{split}
x &= a + b + c + d \\
&= e + f + g + h ...
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{split}
x &= a + b + c + d \\
&= e + f + g + h ...
- Fri May 09, 2025 5:39 pm
- Forum: Graphics, Figures & Tables
- Topic: Spreadtab Package - Autoround Key
- Replies: 4
- Views: 8946
Re: Spreadtab Package - Autoround Key
With STset;
%!TEX lualatex
\documentclass{article}
\usepackage{spreadtab}
\begin{document}
\STset{autoround=2}
\begin{spreadtab}{{tabular}{|lrcr|}}
\hline
@Materials & & & (0.00*4)+0+750.0234 \\ %CCLLC=$50/D*4D %CT=$750
\hline
\end{spreadtab}
\end{document}
Try the "Run LaTeX here" button ...
%!TEX lualatex
\documentclass{article}
\usepackage{spreadtab}
\begin{document}
\STset{autoround=2}
\begin{spreadtab}{{tabular}{|lrcr|}}
\hline
@Materials & & & (0.00*4)+0+750.0234 \\ %CCLLC=$50/D*4D %CT=$750
\hline
\end{spreadtab}
\end{document}
Try the "Run LaTeX here" button ...