{"id":14577908,"url":"https://github.com/avinal/resume","last_synced_at":"2025-04-06T22:07:03.210Z","repository":{"id":54862283,"uuid":"331926173","full_name":"avinal/resume","owner":"avinal","description":"Compact and Minimal LaTeX Resume Template","archived":false,"fork":false,"pushed_at":"2024-10-19T13:16:04.000Z","size":2674,"stargazers_count":74,"open_issues_count":1,"forks_count":30,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T11:42:28.641Z","etag":null,"topics":["cv","cv-template","latex","latex-cv","latex-resume","latex-resume-template","latex-template","resume","resume-template"],"latest_commit_sha":null,"homepage":"","language":"TeX","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lppl-1.3c","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/avinal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-01-22T11:29:58.000Z","updated_at":"2025-03-30T05:54:37.000Z","dependencies_parsed_at":"2025-01-07T16:09:45.369Z","dependency_job_id":null,"html_url":"https://github.com/avinal/resume","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avinal%2Fresume","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avinal%2Fresume/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avinal%2Fresume/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avinal%2Fresume/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/avinal","download_url":"https://codeload.github.com/avinal/resume/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247557767,"owners_count":20958047,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cv","cv-template","latex","latex-cv","latex-resume","latex-resume-template","latex-template","resume","resume-template"],"created_at":"2024-09-07T17:01:22.528Z","updated_at":"2025-04-06T22:07:03.185Z","avatar_url":"https://github.com/avinal.png","language":"TeX","funding_links":[],"categories":["Popular \u0026 New LaTeX Templates"],"sub_categories":["Others"],"readme":"# Compact and Minimal Resume Template\n\nThis CV (Resume) template is compact, minimal, easy to modify and beautiful. See [My Resume](resume.tex) below.\n\n\u003cimg src=\"resume.png\" align=center alt=\"Example CV\"\u003e\n\n\n## How to use this template?\n\nIf you are new to LaTeX, start with the [example.tex](example.tex) file. \n\nThere are lots of custom commands and environments to make this resume template easy to use.\n\n- Name and Qualification (academic degree) *(Required)*\n\n    ```tex\n        \\fullname{FirstName}{LastName}{Degree}\n    ```\n\n- Resume Title - To be shown below the name *(Optional)*\n\n    ```tex\n        \\cvtitle{Your Resume Title}\n    ```\n\n- Email ID *(Required)*\n\n    ```tex\n        \\email{email@example.com}\n    ```\n\n- Website/Portfolio *(Optional)*\n\n    ```tex\n        \\website{https://www.example.com}{Website Text}\n    ```\n\n- GitHub *(Optional)*\n\n    ```tex\n        \\github{https://github.com/username}{GitHub Text}\n    ```\n\n- LinkedIn *(Optional)*\n\n    ```tex\n        \\github{https://www.linkedin.com/in/username}{LinkedIn Text}\n    ```\n\n- Phone *(Optional)*\n\n    ```tex\n        \\phonenumber{0123456789}\n    ```\n\n- Current Date (any format) *(Required)*\n\n    ```tex\n        \\currentdate{DD Month YYYY}\n    ```\n\n- Sections - Create sections\n\n    ```tex\n        \\section{Section Name}\n    ```\n\n- Combo Sections - Subsection with details\n\n    ```tex\n        \\combosection{Subsection Name}{Location/Extra Info}{Duration}{\n            Desciption\n        }\n    ```\n\n- Tight List Environment - to create compact bulleted list\n\n    ```tex\n        \\begin{tightlist}\n            \\item itemA\n            \\item itemB\n        \\end{tightlist}\n\n- Extend for a verbose resume - you can put all description at once and compile either full or compact version, default is compact. To compile full version add `extended` in `\\documentclass`. \n\n    ```tex\n        \\ifextended\n            This is the full content.\n        \\else\n            This is compact content.\n        \\fi\n    ```\n\n- You can also use *fontawesome* icons. For the list of available icons, check [here](https://mirror.unpad.ac.id/ctan/fonts/fontawesome/doc/fontawesome.pdf#section.4).\n\n    ```tex\n        \\faicon{icon-name} % you can also use direct icon commands\n    ```\n\n## Requirement(s)\nYou must compile this resume with `XeLaTex` or `LuaLaTeX` *(pdfLaTeX is incompatible with fontawesome)*. While using Overleaf, choose `Compiler` from the menu.\n\nThis resume template uses following extra packages:  \n- [fontawesome](https://ctan.org/pkg/fontawesome) - For fontawesome icons\n- [xcolor](https://ctan.org/pkg/xcolor) - Custom coloring\n- [fontspec](https://ctan.org/pkg/fontspec) - Custom font selection \n- [fancyhdr](https://ctan.org/pkg/fancyhdr) - Custom header and footer design\n- [titlesec](https://ctan.org/pkg/titlesec) - Format sections, subsections, chapters\n- [hyperref](https://ctan.org/pkg/hyperref) - Link and PDF options\n- [geometry](https://ctan.org/pkg/geometry) - Document dimensioning \n\nIn addition, the [Roboto](https://fonts.google.com/specimen/Roboto) font family is required. *(Fonts are bundled with the project)*\n\n\n## License\n\nCopyright 2024 Avinal Kumar\nThis work may be distributed and/or modified under the conditions of the [LaTeX Project Public License](https://www.latex-project.org/lppl/lppl-1-3c/), either version 1.3 of this license any later version.\n\n\n## Acknowledgements\n\nThis resume template is inspired by [Alessandro Rossini's Adaptive CV](https://www.overleaf.com/latex/templates/adaptive-cv/vfngmmqpmmsb), [Debarghya Das's Deedy CV](https://www.latextemplates.com/template/deedy-resume-cv), and [Font Awesome](https://fontawesome.com/) icons.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favinal%2Fresume","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favinal%2Fresume","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favinal%2Fresume/lists"}