Document ClassesResume doc class

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Resume doc class

Post by coachbennett1981 »

Three years ago I used a resume template to create a resume in LaTeX (attached file). However, when I went to update it The file no longer works with Texshop. This is the editor I have always used.

the error is res.cls not found. Can someone explain how to upload this to cls so that I can use the file?

I have attached the link for the cls. I am not sure what to do with it.

http://rpi.edu/dept/arc/training/latex ... /res.cls
Attachments
nicksresume.tex
(4.23 KiB) Downloaded 717 times
Last edited by coachbennett1981 on Thu Jan 06, 2011 8:07 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Resume doc class

Post by frabjous »

Since you mentioned TeXshop, I'm assuming you're using a Mac. I know very little about macs, so I'm going to fall back on Unix commands, which I think you should be able to use from the Mac terminal. I hope I'm not wrong.

1. Set a variable for the location of your personal TeX tree:

Code: Select all

TEXMFHOME="$(kpsewhich -var-value=TEXMFHOME)"
2. Create an appropriate directory to put this .cls file into:

Code: Select all

mkdir -p "$TEXMFHOME/tex/latex/res"
3. Now move into that directory:

Code: Select all

cd "$TEXMFHOME/tex/latex/res"
4. Now fetch the .cls file from the internet.

Code: Select all

curl -0 http://rpi.edu/dept/arc/training/latex/resumes/res.cls > res.cls
(Step 4 above is the step I'm least sure about working on a mac, since I don't know whether or not macs come with curl. All I'm doing is saving the file you linked in the folder I created. The folder is probably something like /Users/<yourname>/texmf/tex/latex/res -- you can manually save the file there yourself if curl is not installed.)

5. Finally, register the file with your TeX file name database:

Code: Select all

texhash "$TEXMFHOME"
It should work now. Well, maybe not, since there's an error in your code:

Code: Select all

\section{COACHING EXPERIENCE}{\texbf {Tennis Pro} \hfill \textbf{June 2006-Present}}  \\
should be:

Code: Select all

\section{COACHING EXPERIENCE}{\textbf {Tennis Pro} \hfill \textbf{June 2006-Present}}  \\
but then it should work.

And if that's all too much trouble, you can just save the .cls file in the same folder as your .tex file. (It's just "more proper" to have it in a texmf folder especially if you might re-use it.)
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Re: Resume doc class

Post by coachbennett1981 »

Thanks! I will give both a shot. The latter sounds much easier to do. The former is above my knowledge of computers (I think). I appreciate your time.

Nick
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Resume doc class

Post by frabjous »

coachbennett1981 wrote:The former is above my knowledge of computers (I think). I appreciate your time.
All you would need to do is open the mac terminal (Applications > Utilities > Terminal) and then copy and paste my commands. Surely if you handle LaTeX you can handle that.
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Re: Resume doc class

Post by coachbennett1981 »

Works great! Thank you
reesea
Posts: 1
Joined: Mon Dec 30, 2013 9:21 pm

Re: Resume doc class

Post by reesea »

I am using a .tex file in RStudio, and I am getting the same error message. My file is NOT .cls. Any ideas?
Post Reply