Skip to content
/ resume Public template
forked from rohit-gohri/resume

My Resume, made in LaTeX, published using a CI pipeline

Notifications You must be signed in to change notification settings

per-fide/resume

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Resume

Build Status

Automatically built resume with LaTeX. The structure for sections is defined in resume.cls file. While the content is in resume.tex.

Based on the CV For Freshers template on Overleaf.

Resources

Building

Install a LaTeX distribution that includes pdflatex.

Windows

Use Scoop

scoop install latex

Run

mkdir dist
pdflatex.exe -output-directory dist resume.tex

Docker

Use the tianon/latex image.

Run

mkdir dist
docker run -v `pwd`:`pwd` -w `pwd` tianon/latex pdflatex -output-directory dist -interaction errorstopmode -halt-on-error resume.tex

Included Commands

\mydate

Create new date and displays it according to {shortmonthname}. {year} format

% Default day is 01
\mydate{3}{2017}
% Feb. 2017

% Use full date so that format can be changed in future without having to change all dates
\mydate[1]{3}{2017}
% Mar. 2017

% Only print year by providing empty month
\mydate{}{2017}
% 2017

\rSubsectionHeading

Command to print subsection heading. Output depends on number of non empty arguments

% 2 Params
\rSubsectionHeading
    {Netaji Subhas Institute of Technology}
    { \mydate{8}{2013} - \mydate{6}{2017} }
    {}{}

2ParamsPreview

% 3 Params
\rSubsectionHeading
    {Netaji Subhas Institute of Technology}
    { \mydate{8}{2013} - \mydate{6}{2017} }
    {B.E. in Computer Engineering}
    {}

3ParamsPreview

% 4 Params
\rSubsectionHeading
    {Netaji Subhas Institute of Technology}
    { \mydate{8}{2013} - \mydate{6}{2017} }
    {\normalfont B.E. in Computer Engineering}
    {Delhi, IN}

4ParamsPreview

\showif

Instead of commenting out blocks skip content conditionally so that atleast it is checked by latex to be valid.

% Default is false
\showif{Test Content}
%
\showif[false]{Test Content}
%
\showif[true]{Test Content}
% Test Content

Also works for blocks of content:

\showif[false]{
\begin{rSection}{Activities} \itemsep -2pt
    \item XXXXXXXXXXXXXXX
    \item YYYYYYYYYYYYYYY
    \item ZZZZZZZZZZZZZZZ
\end{rSection}
}
%

Packages Used

Use icons from fontawesome. List of available icons in docs.

Used to setup custom date format and custom date command.

For \href links and PDF metadata.

For Palatino font for the whole document.

For setting Document margins.

For conditional logic in showif command.

About

My Resume, made in LaTeX, published using a CI pipeline

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TeX 100.0%