Document Classes ⇒ Resume doc class
-
- Posts: 274
- Joined: Fri Feb 05, 2010 10:15 pm
Resume doc class
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
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
Resume doc class
1. Set a variable for the location of your personal TeX tree:
Code: Select all
TEXMFHOME="$(kpsewhich -var-value=TEXMFHOME)"
Code: Select all
mkdir -p "$TEXMFHOME/tex/latex/res"
Code: Select all
cd "$TEXMFHOME/tex/latex/res"
Code: Select all
curl -0 http://rpi.edu/dept/arc/training/latex/resumes/res.cls > res.cls
5. Finally, register the file with your TeX file name database:
Code: Select all
texhash "$TEXMFHOME"
Code: Select all
\section{COACHING EXPERIENCE}{\texbf {Tennis Pro} \hfill \textbf{June 2006-Present}} \\
Code: Select all
\section{COACHING EXPERIENCE}{\textbf {Tennis Pro} \hfill \textbf{June 2006-Present}} \\
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.)
-
- Posts: 274
- Joined: Fri Feb 05, 2010 10:15 pm
Re: Resume doc class
Nick
Resume doc class
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 wrote:The former is above my knowledge of computers (I think). I appreciate your time.
-
- Posts: 274
- Joined: Fri Feb 05, 2010 10:15 pm