LaTeX has a ton of different flavors, releases, and installations: MacTeX, MiKTeX, TeXworks, XeTeX, pdfTeX, LuaTeX… If you’re using Linux and just want to edit LaTeX files in Visual Studio Code and have them automatically rendered as PDFs, follow these instructions:
On Arch-based distros, install the packages listed here. On Debian-based systems,
sudo apt install texlive.Install some Perl dependencies:
sudo cpan Log::Log4perl Log::LogDispatch Log::Dispatch::File YAML::Tiny File::HomeDirIf you want to use FontAwesome on Arch-based systems, install the
oft-font-awesomepackage and then do the following (source):sudo ln -s /usr/share/fontconfig/conf.avail/09-texlive-fonts.conf /etc/fonts/conf.d/09-texlive-fonts.conf fc-cache && mkfontscale && mkfontdirOn Debian-based systems, install the font package with apt:
sudo apt install texlive-fonts-recommended texlive-fonts-extraInstall the VS Code extension called “LaTeX Workshop”.
If you want to use the fontspec package and get an error saying that “the fontspec package requires either XeTeX or LuaTex”, add the magic command
% !TEX program = xelatexto the top of your .tex file.If your installation needed to add some paths to your PATH but VS Code isn’t seeing them, try opening VS Code from the shell (with
code path/to/workspace) so that it inherits$PATHfrom the interactive shell. (There might be a way to change the bin path in the settings for LaTeX Workshop, but I haven’t needed to find that setting yet.)