home.social

#texlatex — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #texlatex, aggregated by home.social.

  1. Behold an innovation in academic publishing that, astonishingly, is an IMPROVEMENT, not an abomination.

    Instead of marking up proofs and sending them back, I am allowed to make direct edits to the publisher's source file in LaTeX.

    Is this genuinely new, or have I just been publishing in old fogey journals? I still smart over having been forced to change a beautiful LaTeX document into MICROSOFT WORD DOC, of all things, when the article was accepted back in 2021.

    #academicChatter #texLaTeX

  2. Look at these lovely vintage style #TeXLaTeX docs by Foad Farimani! Exactly what I needed! (without knowing it...)

    github.com/Foadsf

  3. Hm cool.
    Es gibt für #texlatex ein Braille Paket.

    ctan.org/pkg/braille

    Damit kann ich Texte schreiben und es wird automatisch in Braille übersetzt. 😃

    Wenn ich jetzt keinen speziellen Braille Drucker habe, gibt es mit normalen Laserdruckern oder Nadeldruckern ggf. einen Trick, wie ich bspw. so drucken kann, dass sich ein Relief ergibt?
    Ich meine manche Druckerzeugnisse aus Laserdruckern hinterlassen ein leichtes Relief.
    Kann man das durch Mehrfachdruck an gleicher Stelle verstärken? 🤔

  4. Traditional TeX users’ favourite band is Computer Modern Talking. ☝️🤓

    #nonsense #TeXLaTeX

  5. Die aktuelle „TeXnische Komödie“ (Mitgliederzeitschrift von DANTE) enthält einen langen Artikel über die Verwendung einer OpenType-Schulschrift mit TeX live 2019, XeLaTeX und 7 bit ASCII.

    Ich verstehe wirklich nicht, warum der nicht abgelehnt wurde – so etwas war 2019 schon veraltet, ist nur noch peinlich und wirft ein ganz schlechtes Licht auf die TeX-Szene.

    #TeXLaTeX #DANTE #OpenType #TeXlive

  6. Die letzten Tage Arbeiten an Pounce & Pandemonium waren sehr computerlastig - so ist das beim Textsatz mit LaTeX. Aber jetzt habe ich eine erste Version meiner Character Sheets fertig und kann ein bisschen analog darauf schauen.

    Da wird definitiv noch eine verbesserte Version kommen. Aber im Moment versuche ich mich darauf zu konzentrieren, erste Playtests zu ermöglichen. Das hier war ein wichtiger Schritt.

    #pounceandpandemonium #forgedinthedark #texlatex

  7. I made a little extension to my Python-based LaTeX math renderer so it can be used to draw equations and Sympy expressions directly in the terminal as sixel graphics. Install with `pip install sixelmath` and give it a try! (in a sixel-supported terminal, of course).

    Source: github.com/cdelker/sixelmath

    #sixel #python #sympy #TeXLaTeX #terminal #equations #ziamath #konsole

  8. Bisher habe ich github.com/amazingrando/blades heruntergeladen und es in eine brauchbare Form gebracht: die große Markdown-Datei aufgeteilt. Daraus baut sich jetzt per hugo eine Website und per LaTeX ein PDF-Dokument.

    Durch die ersten Seiten der Regeln bin ich auch schon durch. Spannend wird es dann bei den Playbooks. Aber irgendwann werde ich dann Pounce & Pandemonium auf frei verfügbar machen. :cc: :cc_by: :cc_nc_us:

    #pbta #forgedinthedark #texlatex #hugo #PounceAndPandemonium #CatAndCanary

  9. Jemand eine Idee, was da beim kompilieren mit #latexmk schief läuft? Ich bekomme immer die Fehlermeldung:
    "C:\texlive\2025\bin\windows\runscript.tlu:933: command failed with exit code 12:
    perl.exe c:\texlive\2025\texmf-dist\scripts\latexmk\latexmk.pl -synctex=1 -interaction=nonstopmode -file-line-error -pdf -outdir=u:/Schule/EFG2 u:/Schule/EFG2/Test_GSM_251009"

    Wenn ich das von der Kommandozeile mache geht es

    #texlatex

  10. I just discovered , a very fast and simple cross-platform PDF viewer that is designed around reading books or scientific papers. I auto-reloads when the file changes, so is well-suited for a workflow. Reloading is quasi-instant and also doesn't redraw everything with this dreaded flicker like many other viewers do (looking at you 😑). Right-clicking on an internal link a opens a real, scrollable subwindow preview, nice! 👍

    github.com/ahrm/sioyek

  11. The interactive calculation sheet for #engineering, based on #emacs, #orgmode, #texlatex and #sympy is available in English [1], although the blog article is in German [2]. The template is also in English [3].

    #Orgmode is so impressive, you could use #maxima, #octave, #gnuplot, #graphviz and almost 40 other languages with all their libraries right out of the box [4].

    Have fun!

    [1] vennemann-online.de/flossblog/
    [2] vennemann-online.de/flossblog/
    [3] vennemann-online.de/flossblog/
    [4] orgmode.org/worg/org-contrib/b

  12. After so many people were amazed by #latexmk's capabilities to auto-refresh a LaTeX document preview, check this out:

    latex-lsp/texlab: An implementation of the Language Server Protocol for LaTeX github.com/latex-lsp/texlab?ta

    I didn't think there would be a language server for TeX documents but there you go!

    In #Emacs/#Eglot, you now get auto-completion of all macros that are loaded by your project, even your own. 🤯

    #texlatex #lsp

  13. Does anyone have a config to share for
    - #TeXLaTeX editing,
    - that uses #latexmk
    - and #Emacs for editing *and* pdf previewing?

    `latexmk` is running fine, but the previewing part is not (yet)

  14. is great for auto-compiling your documents.

    However, it fails in some cases and I'm currently bitten by a nasty one:

    - \includgraphics'ed PDF is corrupt (It's a missing, unlocked / @datalad file)
    - that stops biblatex from properly finishing the .bcf XML file
    - *before* fetching the missing PDF (with ), latexmk runs biber on the now corrupt .bcf (fails and deletes the .bbl)
    - vicious cycle repeats literally forever - latexmk is in an endless loop 🙄

  15. @isibell Guess you mean #latexmk.

    latexmk --lualatex -pretex=’\newcommand\thecolor{white}' -usepretex foo.tex

    You can simplify it by using config files as latexmkrc. Having a look at 'texdoc latexmk' helps a lot here.

    #TeXLaTeX