Skip to main content

Editing Your Name and Title

1

Update your name

Find the \cvname command in the header section and replace with your full name:
\cvname{Alya Pranata}
2

Update your title

Modify the \cvtitle command with your professional title or tagline:
\cvtitle{Software Engineer \cvsep Full-Stack and AI Enthusiast}
The \cvsep command adds a centered dot separator between title segments.
3

Edit professional summary

Replace the paragraph text with your own professional summary:
{\raggedright\noindent Software engineer with hands-on experience in building web products from ideation to deployment. Strong in JavaScript and TypeScript ecosystems with practical knowledge of backend services and database design. Interested in shipping useful tools, improving product reliability, and integrating AI features into real workflows.\par}

Editing Contact Information

The contact section is right-aligned in the header. Update each \contactline with your information:
\begin{flushright}
    \contactline{Bandung, Indonesia}
    \contactline{+62 812 3456 7890}
    \contactline{\href{mailto:[email protected]}{[email protected]}}
    \contactline{\href{https://alyapranata.dev}{alyapranata.dev}}
    \contactline{\href{https://github.com/alyapranata}{github.com/alyapranata}}
\end{flushright}
For email and website links, use \href{url}{display text} to make them clickable in the PDF.

Adding Experience Entries

Copy an existing \experienceitem block and modify it:
\experienceitem
{Nusantara Digital Labs}
{Frontend Engineer Intern}
{Jakarta / Remote}
{02/2025 - 07/2025}

\begin{cvitems}
    \item Built internal dashboards using React and TypeScript, reducing manual reporting time by 30\%.
    \item Collaborated with designers and backend engineers to deliver reusable UI components and API integrations.
\end{cvitems}
To add another entry: Paste the block below the existing one and update all four parameters (company, role, location, dates) plus the bullet points.
Each bullet point is added with \item inside the cvitems environment:
\begin{cvitems}
    \item Your first achievement or responsibility
    \item Your second achievement or responsibility
    \item Your third achievement or responsibility
\end{cvitems}

Adding Education Entries

Education entries are simpler with three parameters:
\educationitem
{Institut Teknologi Bandung}
{B.S. in Computer Engineering}
{2021 - Present}
To add more education entries: Copy the entire \educationitem block and paste it below, then update the institution, degree, and year.
\educationitem
{Institut Teknologi Bandung}
{B.S. in Computer Engineering}
{2021 - Present}

Adding Projects

Projects use \projectitem with four parameters plus bullet points:
\projectitem
{TaskFlow}
{Productivity Web App}
{\href{https://taskflow-demo.vercel.app}{taskflow-demo.vercel.app}}
{2025}

\begin{cvitems}
    \item Implemented Kanban task management with real-time updates and role-based access.
    \item Integrated authentication and activity logs for team collaboration workflows.
\end{cvitems}
1

Project name

The first parameter is the project name (e.g., TaskFlow)
2

Project type

The second parameter describes the project type (e.g., Productivity Web App)
3

Link

The third parameter is the project link. Use \href{url}{display text} format:
{\href{https://taskflow-demo.vercel.app}{taskflow-demo.vercel.app}}
4

Year

The fourth parameter is the completion year (e.g., 2025)
5

Description bullets

Add bullet points inside \begin{cvitems}...\end{cvitems} to describe key features or achievements.

Adding Software Skills

The Software section uses \softitem with two parameters: category and comma-separated skills.
\section{Software}

\softitem{Web}{React, Next.js, Node.js, TypeScript, Tailwind CSS}
\softitem{Data/AI}{PostgreSQL, MongoDB, Pinecone, OpenAI API}
\softitem{Tools}{Git, Linux, Docker, Vercel, Figma}
To add a new skill category: Add a new \softitem line:
\softitem{Mobile}{React Native, Flutter, Swift}

Adding Organization Entries

Organization entries follow the same structure as experience entries:
\orgitem
{Google Developer Student Clubs ITB}
{Core Team Member}
{Bandung, Indonesia}
{08/2022 - 07/2023}

\begin{cvitems}
    \item Facilitated Flutter and Firebase study sessions for 150+ students and prepared weekly learning materials.
    \item Coordinated the annual campus hackathon with 30 teams, including sponsorship outreach and mentor matching.
\end{cvitems}

Adding Awards

Awards use \awarditem with three parameters:
\awarditem
{Dean's List}
{School of Electrical Engineering and Informatics, ITB}
{2024}
\awarditem
{Dean's List}
{School of Electrical Engineering and Informatics, ITB}
{2024}
To add more awards: Copy an \awarditem line and update the award name, issuing organization, and year.

Removing Sections

To remove an entire section, delete from \section{SectionName} down to the next \section or \switchcolumn/\end{paracol} command.
When removing sections, ensure the two-column layout remains balanced. If you remove a section from one column, consider removing or moving content in the opposite column to maintain visual balance.

Build docs developers (and LLMs) love