Clear, practical technology insights BSOD Code Lookup · Windows Error Code Lookup · Wi-Fi Troubleshooting · PC Troubleshooting Checklist

How to Write a Resume in Latex

Learn how to write a resume in latex with clear steps, practical context, and useful troubleshooting guidance.

Table of Contents

This updated guide examines How to Write a Resume in Latex and organizes the essential facts, background, and practical takeaways in clear American English.

Sample Resume and LaTeX Code

How to Write a Resume in Latex — contextual image 1Sample LaTeX ResumeHow to Write a Resume in Latex — contextual image 2LaTeX Resume Template

Method 1

Writing a Resume in LaTeX

  1. How to Write a Resume in Latex — contextual image 3 The first step is to download a free copy of a LaTeX editor. Although any LaTeX editor should work. This article is written specifically for TeXworks.
  2. How to Write a Resume in Latex — contextual image 4 When you open up Tex Works you should see a screen like this:
  3. How to Write a Resume in Latex — contextual image 5 Change the top left menu to pdfLaTeX: I also would suggest going into Format/Syntax Highlighting and selecting LaTeX, as this will make your code easier to read.

Method 2

Set Up the Document

  1. In LaTeX, you have to set up each of the margins manually, which can seem tedious at first. However if you have too much information or too little, these settings can be easily adjusted to make your document look its best. This can be done with the following code:
documentclass[11pt]{article}%Sets the default text size to 11pt and class to article.%------------------------Dimensions--------------------------------------------topmargin=0.0in%length of margin at the top of the page (1 inch added by default)oddsidemargin=0.0in%length of margin on sides for odd pagesevensidemargin=0in%length of margin on sides for even pagestextwidth=6.5in%How wide you want your text to bemarginparwidth=0.5inheadheight=0pt%1in margins at top and bottom (1 inch is added to this value by default)headsep=0pt%Increase to increase white space in between headers and the top of the pagetextheight=9.0in%How tall the text body is allowed to be on each page

How to Write a Resume in Latex — contextual image 6

Method 3

Begin the Document

  1. The next step is to actually begin your document. In LaTeX this is done by simply inserting the following code:
begin{document}end{document}%These two pieces of code tell LaTeX that everything that goes in between these tags is what you want displayed as your actual document.

How to Write a Resume in Latex — contextual image 7

Method 4

Make the Header

  1. In LaTeX you write your document in the same manner that would would in Word, except you have to use commands like:
centerline{}%Makes whatever text you put in parenthesis move to the centernoindent%Prevents the following text from being indentedlarge,Large,LARGE%Make the following text larger (each one is a bigger font)%This is the same as a return in Latex

How to Write a Resume in Latex — contextual image 8

  1. How to Write a Resume in Latex — contextual image 9 The return key also plays a key role in designing LaTeX documents. If you return twice as if to make a new paragraph, LaTeX will treat that as a new paragraph and ignore any formatting code used for the previous paragraph. We will see how this comes in handy later.
  2. How to Write a Resume in Latex — contextual image 10 At this point your document should look like this:

Method 5

Making the Body

  1. The next part of your resume should be some simple objective and summary type sections. This can easily be accomplished by making headers and following them with text. Here is an example:
noindent{LargebfObjective}%don't indent this line and make it bold and largesmallskip%This creates a small gap but not quite as large as a return (it's a space saver)noindent%This is to make the following text not indented%Here is where you would put your text. In order for the noindent to take effect your text must be directly below the command. There cannot be a line gap between the command and your text (shown in picture below)bigskip%This makes a large line skip (smallskip is also a command but has a smaller gapnoindent{LargebfExecutive Summary}smallskipnoindent%Here is again where you would put your text (again directly below the noindent command)

How to Write a Resume in Latex — contextual image 11

  1. How to Write a Resume in Latex — contextual image 12 Below are examples of how your text should look in LaTex and how your document should look so far:

Method 6

Extra Helpful Commands

  1. While this may look a little bit silly on the sample resume we created, it serves the purpose of demonstrating how you can make columns in LaTeX. to do a list of known programming languages I used the following command:
hfill%This command will create even spacing between whatever you put it in between (text and margin, text and text, etc.)

How to Write a Resume in Latex — contextual image 13

  1. Here is a sample of hfill using the following code:
noindent%Make sure that there is no line skip for as long as you want this effectCan Program in a large variety of languages including:%The is the same as a returncenterline{hfill$bullet$C++hfill$bullet$Pythonhfill$bullet$Perlhfill}centerline{hfill$bullet$Bashhfill$bullet$IDLhfill}Proficient with the following engineering applications:centerline{hfill$bullet$MatLabhfill$bullet$Solid Workshfill$bullet$EEShfill}noindent{LargebfProfessional Experience}smallskipcenterline{{largebfLaboratory for Atmospheric and Space Physicshfill2011 Present}}$bullet$Mission Operations and Subsystem Analysis$bullet$Analysis of the SORCE and AIM Power Subsystems$bullet$Analysis of the TIM SORCE Instrument and QSCAT Scatterometerbigskip

How to Write a Resume in Latex — contextual image 14

  1. How to Write a Resume in Latex — contextual image 15 Repeat these last 4 lines for each section you want to add.
  2. Here is a look at the code and the product after you add in these lines:

How to Write a Resume in Latex — contextual image 16

Method 7

Finishing Up

  1. Now all you need to do to finish the resume is add in more sections (using the same steps show above), tweak your dimensions, and it never hurts to have a professional look at it to make sure you did a good job. I hope this is helpful to whoever decides to use it, and I hope it will inspire more people to start learning LaTeX as it can be a great skill to have.

FAQ

What is How to Write a Resume in Latex about?

It provides a structured overview of latex, explains the main context, and highlights practical takeaways for readers.

Why does this topic matter?

Understanding the main concepts helps readers evaluate the issue, avoid common mistakes, and make better-informed decisions.

How should readers use this information?

Use the guidance as a practical starting point, confirm details that may have changed, and follow current product, safety, or security recommendations.

Discussion

Reader Comments 0

Sign in with email or Google to join the discussion.