A clean, customized LaTeX CV built on the AltaCV template by LianTze Lim. Supports English and Russian, versioning watermarks, and custom company icons.
| Path | Description |
|---|---|
images/ |
Icons and images used in the CV |
pdf/ |
Compiled PDF output files |
build.sh |
Automated build script |
CMakeLists.txt |
CMake configuration |
custom-altacv.cls |
Customized AltaCV class file |
cv-en.tex |
Main source file — English version |
cv-ru.tex |
Main source file — Russian version |
preamble.tex |
Global settings: colors, fonts, icons |
Prerequisites: texlive, LuaTeX, CMake ≥ 3.12, bash
# View usage
./build.sh
# Build English version (no bibliography)
bash build.sh cv-en
# Build Russian version (no bibliography)
bash build.sh cv-ru ru 0
# Build English version with bibliography
bash build.sh cv-en en 1The compiled PDF will appear in the pdf/ directory. Intermediate files are cleaned up automatically.
- Go to overleaf.com and create a new project.
- Upload all files from this repository.
- Open
cv-en.texorcv-ru.tex. - Click Recompile → Download PDF.
- Install TeXstudio.
- Clone this repository:
git clone https://github.com/temikfart/temikfart.git
- Open
cv-en.texin TeXstudio and press F5 to compile.
Open cv-en.tex (or cv-ru.tex) and replace the personal data with your own. The file is organized into standard sections: personal info, education, experience, and skills.
The \cvversion command adds a watermark with the current CV version:
% Version format: v.YYYY.MM.DD-<language>-<type>
\cvversion{v.2024.01.15-en-full}To hide the watermark, comment out the draftwatermark package in preamble.tex.
Use \cvjob instead of \cvevent to display a clickable, colored link to the company:
\cvjob{Assistant Engineer \cvtag{C++}}
{\huawei Huawei -- System Engineering Lab}
{Summer Internship 2022}
{Huawei RRI}
{https://career.huawei.ru/rri/en/}Add your own icon by placing a .png or .pdf file in the images/ folder and defining a command in preamble.tex:
\newcommand*\huawei{
\raisebox{-0.15\totalheight}
{\includegraphics[width=15pt]{images/huawei}}
\hspace{.5ex}
}Adjust -0.15 to control vertical alignment, width for size, and .5ex for spacing.
Icons are available via the Font Awesome package. Use them anywhere in your CV for a polished look.
Free to use and modify under the LaTeX Project Public License (LPPL). Please credit the original template author LianTze Lim if you share or redistribute your version.
- Original template: AltaCV by LianTze Lim