Skip to content

suresh-chandran-pulikkal/Resume-latex-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

markdown

LaTeX Resume Compiler

Generate a professional PDF resume from LaTeX source on openSUSE Linux.

Prerequisites

  • openSUSE (Leap or Tumbleweed)
  • Basic LaTeX installation

Quick Start

  1. 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.

About

Latex code to build resume.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages