From openhands-skills
Installs texlive packages via apt-get and uses pdflatex to compile LaTeX documents into PDFs on Linux. Useful for academic papers, research publications, or LaTeX docs.
npx claudepluginhub openhands/extensionsThis skill uses the workspace's default tool permissions.
PdfLatex is a tool that converts Latex sources into PDF. This is specifically very important for researchers, as they use it to publish their findings. It could be installed very easily using Linux terminal, though this seems an annoying task on Windows. Installation commands are given below.
Converts LaTeX academic papers between publisher formats (e.g., Springer/IPOL to MDPI/IEEE/Nature) by extracting content, injecting into new templates, fixing formatting, and compiling PDFs.
Converts Markdown documents to professional LaTeX with TikZ visualizations and compiles to PDF. Use for presentation-quality PDFs, reports with diagrams, or print-ready documentation.
Transforms LaTeX documents into accessible tagged PDFs (PDF/UA-1, PDF/A-2b) for screen readers using LuaLaTeX. Creates copy and Makefile target.
Share bugs, ideas, or general feedback.
PdfLatex is a tool that converts Latex sources into PDF. This is specifically very important for researchers, as they use it to publish their findings. It could be installed very easily using Linux terminal, though this seems an annoying task on Windows. Installation commands are given below.
apt-get install texlive-latex-base
apt-get install texlive-fonts-recommended
apt-get install texlive-fonts-extra
apt-get install texlive-latex-extra
Once installed as above, you may be able to create PDF files from latex sources using PdfLatex as below.
pdflatex latex_source_name.tex
Ref: http://kkpradeeban.blogspot.com/2014/04/installing-latexpdflatex-on-ubuntu.html