2024-10-15
Prerequisites Install Docker (skipped here).
Installing TeX Live with Docker Find the official image on Docker Hub: https://hub.docker.com/r/texlive/texlive
Pull the image and start a container:
docker pull texlive/texlive docker run -it --name latex texlive/texlive:latest /bin/bash Editing LaTeX in Docker with VS Code Method 1: Direct container access
Install the Dev Containers extension in VS Code. Click the remote environment button in the bottom left, select “Attach to Running Container”, and open the working directory.
read more