- Finally got it !by /u/Any-Fox-1822 on May 16, 2025 at 9:37 pm
Hello everyone! I'm a French uni student in CG / Game dev, and type design hobbyist. I've been using LaTeX since 3 years, and have decided to convert my first typeface into a metafont I plan to make it able to generate Serif, Sans Serif and Mono from the same source Project : https://github.com/BastienSANTE/Explore/tree/master submitted by /u/Any-Fox-1822 [link] [comments]
- Does anyone have recommendations for ways to emphasize bullet point son a beamer presantation ?by /u/GigaRedox on May 15, 2025 at 9:52 pm
Slides Hey, I am making a beamer prestation and want to highlight certain steps in my procedure during my bachelor thesis. Atm I'm simply underlining the important points, does anyone have another idea how I could highlight them ? submitted by /u/GigaRedox [link] [comments]
- Errors when creating circuit diagrams with circuitikz within LateX (crossposted from r/Anki)by /u/SpiralArc on May 15, 2025 at 9:28 pm
Hello all. I am trying to create cards of circuit diagrams that are syntax-based and therefore easily editable, similar to how one can create pretty math formulas with MathJax. Apparently you can use a LateX package called circuitkz to accomplish this, but I'm having a lot of trouble setting it up. I've already asked ChatGPT, but that can't help me either. I am using Windows 11 with Anki 24.06.2 with the "Opening the same window multiple time" and "Review heatmap" addons. I went into Anki's settings and checked off "generate LateX images." I downloaded MiKTeX and set it to where missing packages are installed on the fly. Within MiKTeX, I installed the "circuitikz" package, and restarted Anki. ChatGPT told me to create a latex_header.tex file within my profile folder with the contents... \documentclass[12pt]{article} \usepackage[utf8]{inputenc} \usepackage{amssymb,amsmath} \usepackage[american]{circuitikz} \pagestyle{empty} \setlength{\parindent}{0in} Bolded is the part where it supposedly includes the package. However, upon trying to create a simple card in Anki, for example... [latex] \begin{circuitikz} \draw (0,0) to[R, l=$R$] (2,0); \end{circuitikz} [/latex] it gives me the following error... Generated file: C:\Users\[censored for privacy]\AppData\Local\Temp\anki_temp\tmp.tex This is pdfTeX, Version 3.141592653-2.6-1.40.27 (MiKTeX 25.4) (preloaded format=latex.fmt) restricted \write18 enabled. entering extended mode (tmp.tex LaTeX2e <2024-11-01> patch level 2 L3 programming layer <2025-04-14> (C:\Users\[censored for privacy]\AppData\Local\Programs\MiKTeX\tex/latex/base\article.cls Document Class: article 2024/06/29 v1.4n Standard LaTeX document class (C:\Users\[censored for privacy]\AppData\Local\Programs\MiKTeX\tex/latex/base\size12.clo)) (C:\Users\[censored for privacy]\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\amssymb.sty (C:\Users\[censored for privacy]\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\amsfonts.sty)) (C:\Users\[censored for privacy]\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsmath.sty For additional information on amsmath, use the `?' option. (C:\Users\[censored for privacy]\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amstext.sty (C:\Users\[censored for privacy]\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsgen.sty)) (C:\Users\[censored for privacy]\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsbsy.sty) (C:\Users\[censored for privacy]\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsopn.sty)) (C:\Users\[censored for privacy]\AppData\Local\Programs\MiKTeX\tex/latex/l3backend\l3backend-dvi ps.def) (tmp.aux) ! LaTeX Error: Environment circuitikz undefined. See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ... l.9 \begin{circuitikz} ! Undefined control sequence. l.10 \draw (0,0) to[R, l=$R$] (2,0); (C:\Users\[censored for privacy]\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\umsa.fd) (C:\Users\[censored for privacy]\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\umsb.fd) ! LaTeX Error: \begin{document} ended by \end{circuitikz}. See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ... l.11 \end{circuitikz} [1] (tmp.aux) ) (see the transcript file for additional information) Output written on tmp.dvi (1 page, 332 bytes). Transcript written on tmp.log. The tmp.tex file that it created within C:\Users\[censored for privacy]\AppData\Local\Temp\anki_temp contains the following... \documentclass[12pt]{article} \special{papersize=3in,5in} \usepackage{amssymb,amsmath} \pagestyle{empty} \setlength{\parindent}{0in} \begin{document} \begin{circuitikz} \draw (0,0) to[R, l=$R$] (2,0); \end{circuitikz} \end{document} Apparently, it contains the amssymb and amsmath packages, but not circuitikz. Keep in mind, normal LaTeX formulas work. For example... [latex]\begin{math}\sum_{k = 1}^{\infty}\frac{1}{k}\end{math}[/latex] works just fine. It's just circuitikz that I'm having trouble with. Does anyone have a solution? submitted by /u/SpiralArc [link] [comments]
- page size vs. page dimensions?by /u/fethut1 on May 15, 2025 at 10:35 am
Sorry for my bad English. I am new to LaTeX and confused about page layout. I am reading about page layout, specically this article from LaTeX wikibook, https://en.wikibooks.org/wiki/LaTeX/Page_Layout. I thought size and dimensions are synonyms. But the aforementioned article refers to dimensions as parameters like \paperheight \paperwidth \hoffset \voffset ... It refers to page size as options such as letterpaper a4paper b4paper ... What are the connections between them? What I have read so far is that A page size defines only two parameters, \paperheight and \paperwidth. Certain dimensions are defined by document classes. Some text says that document class concern primarily with logical structure of documents, so I do not understand why do they preset these parameters. Certain dimensions, such as \textwidth and \textheight, are derived from other dimensions. Update I asked ChatGPT, not sure if this is correct. \paperwidth and \paperheight are logical paper size; they do not affect the actual output size. Use geometry with papersize=... or set \pdfpagewidth and \pdfpageheight for actual page size in the output file submitted by /u/fethut1 [link] [comments]
- How to input a separate bibliography only for one chapter in overleaf?by /u/Weird-Management-347 on May 14, 2025 at 11:51 pm
Does anyone know how to input an "isolated" bibliography only for one chapter (my chapters are in .tex, and I created an chap.bib specifically for this chapter), but I want the rest to remain with the ref.bib. I tried many different ways but none of them seem to work. Is it actually possible? Thank you in advance, I use overleaf. submitted by /u/Weird-Management-347 [link] [comments]
- How to fix this diagram??by /u/Illustrious_Tear_219 on May 14, 2025 at 4:39 pm
https://preview.redd.it/pzbgjvw5zr0f1.png?width=691&format=png&auto=webp&s=c83dee380887991b21a1d22482d3bb277134ed83 https://preview.redd.it/feg7h459zr0f1.png?width=202&format=png&auto=webp&s=b92955eba3020ca393a7b30ec46c004ecb12bcec https://preview.redd.it/3h77ybubzr0f1.png?width=270&format=png&auto=webp&s=e1f384ac76c11bbf1616f92ce56eb5ac57f14917 (1) is the diagram i got from the code. I want it to look like (2). Even shortening the arrows would be rly helpful. I'm literally so noob in latex that i don't understand ANYTHING from the forums i read on google. I don't want to use twix or smt else idk. I may be okay with matrixes but please explain like i am 5 years old. (I'ts my bachelor degree ending thesis and this is the first time I'm using latex T-T) submitted by /u/Illustrious_Tear_219 [link] [comments]
- Error: Missing Character: There is no (U+25E6) in font pplr9eby /u/alhamdu1i11a on May 14, 2025 at 10:54 am
Hey all, Wondering if someone knows how to deal with this error? I'm trying to add a degree symbol in an align environment. The symbol is actually rendering and is produced in the output, nonetheless latex is producing this error. I am on VSCode and my TeX distribution is texlive, Windows 11. Recipe (lualatex for biblatex): { "name": "latexmk (lualatex)", "tools": [ "lualatexmk" ] } Preamble: \usepackage{graphicx} \graphicspath{} \usepackage{ragged2e} \usepackage[sc]{mathpazo} \usepackage{amsmath} \usepackage{textcomp} \usepackage{unicode-math} \usepackage{svg} \usepackage{amssymb} \usepackage{gensymb} \usepackage{tabularx} \usepackage{enumitem} \usepackage{blindtext} \usepackage{array} \usepackage[T1]{fontenc} \usepackage{babel} \usepackage[autostyle]{csquotes} \usepackage{etoolbox} \usepackage{multirow} \usepackage{floatrow} \usepackage{mwe} \usepackage{listings} \usepackage{matlab-prettifier} \usepackage{pdfpages} \usepackage{hyperref} \usepackage[ style=apa, sorting=none, backend=biber, ]{biblatex} \usepackage{geometry} \geometry{ a4paper, total={170mm,257mm}, left=20mm, top=20mm, } \makeatletter \newcommand*{\toccontents}{\@starttoc{toc}} \makeatother Calling the \degree command here: \begin{align} T_{1,dry} &= 15 \text{\degree C}\\ . . . Error still prints even when \degree is taken outside braces. submitted by /u/alhamdu1i11a [link] [comments]
- Overleaf is back in Germanyby /u/Safe_Ordinary1381 on May 14, 2025 at 9:09 am
submitted by /u/Safe_Ordinary1381 [link] [comments]
- When the overleaf 502 takes a few seconds longer to load than beforeby /u/Hunky-Jesus on May 14, 2025 at 8:33 am
submitted by /u/Hunky-Jesus [link] [comments]
- Overleaf down?by /u/FantasticAgency1515 on May 14, 2025 at 7:10 am
https://preview.redd.it/wimu8evb6p0f1.png?width=861&format=png&auto=webp&s=b65bc052a88a376270661b1cebbcdf66f6e846a1 My issue or is it Overleaf's? submitted by /u/FantasticAgency1515 [link] [comments]
- Overleaf down?by /u/MrTorgue_ on May 14, 2025 at 6:21 am
Is overleaf down for anyone else? Located in EU W Edit: Seems to be for several people, as well as here in Norway. Fun times when thesis is due in two weeks 😵💫😵💫😵💫 submitted by /u/MrTorgue_ [link] [comments]
- Manipulating Axis Tick Labels in PGFPlotsby /u/Alexmm806 on May 14, 2025 at 12:43 am
Hello! I'm trying to make the "2" on the y-axis in the attached picture be on the other side of the y-axis so that the graph of the function there does not pass through it. Does anyone know how to make just the 2 go on the other side but keep the other y-axis tick labels as is? https://preview.redd.it/w8dxyd599n0f1.png?width=624&format=png&auto=webp&s=132075c6147f576f62ec257ad9bd7a4636729aa8 submitted by /u/Alexmm806 [link] [comments]
- Help latex chapter styleby /u/CudaC11 on May 13, 2025 at 6:19 pm
Can someone help me to create this latex sytle submitted by /u/CudaC11 [link] [comments]
- why the h377 can't you have a footnote in a figure caption?by /u/gannex on May 13, 2025 at 6:02 pm
I've tried a bunch of approaches and it's impossible. This makes LaTeX seem so broken to me tbh. I have learned every trick and workaround and I can make beautiful LaTeX documents at this point, but I can't have a footnote in a figure caption? That seems so basic!! submitted by /u/gannex [link] [comments]
- Good MathPix alternative with handwritten supportby /u/degel12345 on May 13, 2025 at 3:34 pm
I found the mathpix ocr to convert images to latex (and text). Is is really awesome but there are two drawbacks: - it is paid - it has problem with polish handwritten text, like below: https://preview.redd.it/xwz5y4b3jk0f1.png?width=1247&format=png&auto=webp&s=5880030788275db75c2c8a027c64ec8b52c4758f Are there any good alternatives that are either free or support polish handwritten formulas? In the end I want to get HTML of the image and put on my website. submitted by /u/degel12345 [link] [comments]
- Citations in list of figuresby /u/Era2k on May 13, 2025 at 12:49 pm
I have a citation in the caption of a figure. The citation is not the first citation in my text, but it appears as citation number one because it is included in the list of tables at the beginning of the document. Any way to avoid this? submitted by /u/Era2k [link] [comments]
- How to Align Equations Horizontallyby /u/Alexmm806 on May 12, 2025 at 11:32 pm
Hi! I'm trying to make a question set in the LaTeX exam class and I'm trying to align these equations horizontally (see picture) so that everything looks lined up. https://preview.redd.it/1p1eoo0nrf0f1.png?width=648&format=png&auto=webp&s=3bd0fef1b71b437b85eeed3b055aa5010351dc60 submitted by /u/Alexmm806 [link] [comments]
- How to create a macro like \cos or \log ?by /u/The_Blue_Man_ on May 12, 2025 at 6:34 pm
I was wondering how to create function-like macro. For exemple : here `$\cos 0$` there is a space between cos and 0 but here `$\cos(0)` there is not. submitted by /u/The_Blue_Man_ [link] [comments]
- How to see character count in LaTeXby /u/Renic301 on May 12, 2025 at 12:30 pm
Hi, so me and my group are writing our project on overleaf in LaTeX. We are very happy with it but have always just used word and docs. For our project report we are limited to a certain amount of pages, here 1 page is equal to 2400 characters. But like in word or docs, we can't figure out how to see the number of characters (NOT WORDS!) Edit: We are writing in Overleaf btw submitted by /u/Renic301 [link] [comments]
- Rant on LaTeX's notorious capacity issueby /u/AceWhite_1010 on May 12, 2025 at 10:42 am
Yeah I hit the "TeX capacity exceeded" error. Spent two days just trying to debug my preamble. It's stupid how this could possibly even happen. I just saw someone having exotic designs for their theorem envs and mine just lost its mind when I only have three tcb styles and declared only like 4 tcbtheorems. 139 lines me vs 700+ lines them, took an hour understanding what's happening, and half a day figuring out stupid LaTeX language and what does makeatletter makeatother mean. Then I asked ChatGPT, the classic. Debugging all the way till now, I switched back and forth from MikTeX to TeX Live at least three times, debugging issues that shouldn't even happen at the first place. So much till the point ChatGPT froze Firefox for a minute for the first time ever because I pasted so much stuff. And then two days later, after fixing why lualatex doesn't exist, why luatex needs a wrapper to make lualatex appear, after having to download another separate python file to run tex live, having to debug that file bcuz the file simply doesn't know how to look at PATH, after a couple careless mistakes here and there in VSCode's settings json, it started running again! Except the Build icon kept spinning for 5 minutes and threw the same exact issue, either capacity exceeded on line 1 which is an empty line, or line 89 which is my fourth newtcbtheorem. I really liked LaTeX as a powerful typesetting tool, but the accessibility sucked, holy crap. I used to watch videos claiming with the help of snippets and self-designed preambles (and of course, Vim, but oh well, I'm lazy, VSCode suffices for now), editing offline will be way faster (it kinda did seem so before these incidents!). But nope, I still haven't figured out why does minted not work and still requires some 3 other python packages that no single video / source ever mentioned. And nope, I still don't know what happened when error messages are harder than cryptic crosswords. And now my computer and directories are a mess, just because of some stupid flaw I have to go around which ended up just worsening. Thanks for your time. submitted by /u/AceWhite_1010 [link] [comments]
- References not working well?by /u/Delicious-Will-7291 on May 12, 2025 at 8:40 am
Hi, im currently writing my master thesis in overleaf and im running into some issues with the references. I used mendeley reference manager and when i import my references the citing doesn't go well. In code overleaf does recognize my source: https://preview.redd.it/0mj5xsddcb0f1.png?width=859&format=png&auto=webp&s=a0778ced206934386e3d2acf89db5aeb8d79f532 But in text it doesn't cite like its suppose to? https://preview.redd.it/ihyza0j9cb0f1.png?width=267&format=png&auto=webp&s=e7a427d1b5e5eb2a07d721aaf8abb8fa8d9cda65 This is the error: https://preview.redd.it/9ulvs5mkcb0f1.png?width=1212&format=png&auto=webp&s=0a4b21d32f0ffb3c2869e7de63eea23e0683265d How does it still recognize it in code but when loading its suddenly undefined? submitted by /u/Delicious-Will-7291 [link] [comments]
- Miktex theme is changing to dark whenever I try to download updatesby /u/Total_Afternoon_3079 on May 11, 2025 at 9:52 pm
Hi everyone, After recently updating MiKTeX, I noticed that TeXworks automatically switched to dark mode. I used to work with the light theme, but now I can't find any option within the application to disable the dark mode. My system (Windows 10/11) is set to dark theme, but I would still prefer TeXworks to stay in light mode. Is there any way to force TeXworks to use the light theme regardless of the system setting? Maybe through a config file or command line option? Any help would be greatly appreciated! Thanks in advance submitted by /u/Total_Afternoon_3079 [link] [comments]
- Miktex theme is changing to dark whenever I try to download updatesby /u/Total_Afternoon_3079 on May 11, 2025 at 9:51 pm
Hi everyone, After recently updating MiKTeX, I noticed that TeXworks automatically switched to dark mode. I used to work with the light theme, but now I can't find any option within the application to disable the dark mode. My system (Windows 10/11) is set to dark theme, but I would still prefer TeXworks to stay in light mode. Is there any way to force TeXworks to use the light theme regardless of the system setting? Maybe through a config file or command line option? Any help would be greatly appreciated! Thanks in advance submitted by /u/Total_Afternoon_3079 [link] [comments]
- In the title of a BibTeX entry, is it preferable to write {W}ord{S}tyle or {WordStyle}, or does it make no difference?by /u/Franck_Dernoncourt on May 11, 2025 at 9:40 pm
Example: Consider that BibTeX entry: @inproceedings{li-etal-2025-instructany2pix, title = "{I}nstruct{A}ny2{P}ix: Image Editing with Multi-Modal Prompts", author = "Li, Shufan and Singh, Harkanwar and Grover, Aditya", editor = "Chiruzzo, Luis and Ritter, Alan and Wang, Lu", booktitle = "Findings of the Association for Computational Linguistics: NAACL 2025", month = apr, year = "2025", address = "Albuquerque, New Mexico", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2025.findings-naacl.36/", pages = "594--619", ISBN = "979-8-89176-195-7", abstract = "Image Editing has made incredible progress in recent years. Earliest work only supported caption-guided editing. Recently, free-form text instructions and reference images are incorporated to allow more flexibility. However, existing methods still struggle with complicated editing instructions involving multiple objects or reference images. We present InstructAny2Pix, a novel image editing model that leverages a multi-modal LLM to execute complicated edit instructions. Compared with previous, works, InstructAny2Pix extends the flexibility of edit instructions in three ways: First, it can perform complex instructions involving multiple object edits; Second, it supports interleaving text instructions with multiple reference images; Third, it supports audio and music inputs as part of edit prompts, unlocking many creative applications, such as album cover generation and music-inspired merchandise design. To evaluate the effectiveness of InstructAny2Pix, we propose two new benchmark datasets MM-Inst and Dream-booth++ consisting of human written, multi-modal prompts. InstructAny2Pix outperforms baselines in these two proposed multi-modal benchmarks, as well as conventional image editing benchmarks such as InstructPix2Pix." } Is it preferable write {I}nstruct{A}ny2{P}ix or {InstructAny2Pix}, or that makes no difference? submitted by /u/Franck_Dernoncourt [link] [comments]
- Two competing LaTeX templatesby /u/adityager on May 10, 2025 at 10:45 pm
https://preview.redd.it/day96nyc310f1.png?width=979&format=png&auto=webp&s=c226b6b8bbf7648b36d46093c2d35cb26237a5a0 https://preview.redd.it/mkh0vodo810f1.png?width=768&format=png&auto=webp&s=1ec191d9383eee5d905b01ea820684c5e7900721 Which of these two templates do you like more? Both are pretty old, so if you have other layout suggestions that aren't reflected in either of them, I'd love to hear those too. (see here https://scoutmathematics.wordpress.com/wp-content/uploads/2022/02/combin_book_1-7-20-57.pdf ) submitted by /u/adityager [link] [comments]
- I'm pushing the limits of what LaTex can do. A selection of my notes from my first year of engineeringby /u/human0006 on February 17, 2024 at 9:05 am
submitted by /u/human0006 [link] [comments]
- Please don't delete your post after it is answeredby /u/JimH10 on January 28, 2018 at 5:40 pm
Not a mod. But I was hoping to raise awareness that if you post a question that gets an answer then other people also benefit from that exchange. We've all googled a LaTeX question and found an old answer, and been glad it is there. Some people lurk here, picking things up over time. I'm not sure why so many people delete exchanges. There are good reasons to delete things sometimes, but asking for a clarification on a technical point does not seem, at least to me, to be one of them. The only other thing I can think is that those folks think that their question is clogging up the stream. I was hoping with this post to convince them that they are mistaken, and to leave it in place. In particular, if the answerer spends 15 mins on that answer and you delete the question, then you've been not too kind back to the person who was kind to you. submitted by /u/JimH10 [link] [comments]