Replies: 2 comments 1 reply
-
Interesting.
I mean, you are installing Podman and docker stuff, and you are pulling a large docker image. And you are updating, although you may be doing it manually just by pulling the updated image. On my system, installing texlive is simply Still, I think people should be allowed to do things their own ways. And I believe we can make this work well also with VimTeX. The main thing is to change the executable. I believe the main thing you want here is for VimTeX to run the #!/bin/bash
podman run --rm -it --group-add keep-groups -v `pwd`:/workdir \
registry.gitlab.com/islandoftex/images/texlive:latest \
latexmk $@ Now you can configure VimTeX with let g:vimtex_compiler_latexmk = {
\ 'executable' : '/path/to/latexmk-wrapper.sh',
\} |
Beta Was this translation helpful? Give feedback.
-
The primary benefit is that I just install one program and then all other programs are just containers. I keep the OS installation itself minimal. The other is that I use Debian and if I used TeX from the repository I would be on the 2023 version. :) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I use LaTeX with a Docker image. It's an unorthodox way to LaTeX, but it has the benefit of staying updated and not needing to install anything.
I mostly use a Makefile to do the LaTeX work:
What's a good use to use this plugin with this setup?
I get "not an executable" errors because the executables are not directly on my computer. Anyway to route these through the container and/or disable?
Beta Was this translation helpful? Give feedback.
All reactions