markdown
Generate a professional PDF resume from LaTeX source on openSUSE Linux.
- openSUSE (Leap or Tumbleweed)
- Basic LaTeX installation
- Install required packages:
sudo zypper install texlive-scheme-full texlive-xetex
Compile your resume:
pdflatex my-cv-in-latex-code.tex
pdflatex my-cv-in-latex-code.tex # Run twice for proper references
Your PDF will be generated as my-cv-in-latex-code.pdf
Advanced Options Using XeLaTeX (recommended for font support)
xelatex my-cv-in-latex-code.tex
xelatex my-cv-in-latex-code.tex
Clean Build (remove temporary files)
rm -f *.aux *.log *.out *.toc
Automation For frequent compilation, create a compile.sh script:
#!/bin/bash
xelatex my-cv-in-latex-code.tex
xelatex my-cv-in-latex-code.tex
rm -f *.aux *.log *.out
Make it executable:
chmod +x compile.sh
./compile.sh
Troubleshooting Missing fonts: Install additional packages:
sudo zypper install texlive-fontsextra texlive-fontconfig
Missing templates: Install common LaTeX packages:
sudo zypper install texlive-latex-extra texlive-latex-recommended
Recommended Workflow Edit your .tex file
Run the compiler
Check the PDF output
Commit changes:
git add my-cv-in-latex-code.tex
git commit -m "Updated resume content"
git push
License This project is licensed under the Non commercial License - see the LICENSE-NC file for details.