Curricula Vitae / Résumés ⇒ Trying to compile a template no avail
Trying to compile a template no avail
I am a complete noob with LaTeX but a friend of mine recently put me on to it for editing/creating CVs. I dowloaded the Deedy Resume/CV template (http://www.latextemplates.com/template/deedy-resume-cv) and tried to compile it in TeXShop on my Mac. When I first tried to typeset it, just to see what it would look like unedited, I was getting a simple white page with "Brief Article" written on it (pic attached). I tried to comment some things out and typeset it again but this time it didn't compile anything and I just got the dialog box with some more text in it (another pic attached).
I have a feeling it is a very simple and obvious solution but as you can probably tell, I'm not very good with this software. I just want to be able to use the template and create my CV using my own information. Could anyone help me get started? Thanks in advance.
- Attachments
-
- Screen Shot 2015-10-03 at 1.48.15 PM.png (68.45 KiB) Viewed 13775 times
-
- Screen Shot 2015-10-03 at 1.46.15 PM.png (39.83 KiB) Viewed 13775 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
Re: Noob here...trying to compile a template but to no avail
- Attachments
-
- Screen Shot 2015-10-03 at 2.02.19 PM.png (69.85 KiB) Viewed 13772 times
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: Trying to compile a template no avail
Please check out the latest zip file and start with this template.
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Trying to compile a template no avail
welcome to the forum!
I confirm, what Johannes said. Another point: within the document class, that .cls file, you loaded another document class (article), that's why the error occured. You mixed code in some way. Perhaps figure that out or post the actual code here.
Stefan
Trying to compile a template no avail
thanks for the reply! i'm trying to figure out what you said but i don't know what's happening in the code... /facepalmStefan_K wrote:Hi Mescal,
welcome to the forum!
I confirm, what Johannes said. Another point: within the document class, that .cls file, you loaded another document class (article), that's why the error occured. You mixed code in some way. Perhaps figure that out or post the actual code here.
Stefan
here are the codes for cv_12.tex and deedy-resume.cls respectively:
Code: Select all
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Deedy CV/Resume% XeLaTeX Template% Version 1.0 (5/5/2014)%% This template has been downloaded from:% http://www.LaTeXTemplates.com%% Original author:% Debarghya Das (http://www.debarghyadas.com)% With extensive modifications by:% Vel (vel@latextemplates.com)%% License:% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)%% Important notes:% This template needs to be compiled with XeLaTeX.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\documentclass[letterpaper]{deedy-resume} % Use US Letter paper, change to a4paper for A4\begin{document}%----------------------------------------------------------------------------------------% TITLE SECTION%----------------------------------------------------------------------------------------\lastupdated % Print the Last Updated text at the top right\namesection{Debarghya}{Das}{ % Your name\urlstyle{same}\url{http://debarghyadas.com} \\ % Your website, LinkedIn profile or other web address\href{mailto:dd367@cornell.edu}{dd367@cornell.edu} | 607.379.5733 % Your contact information}%----------------------------------------------------------------------------------------% LEFT COLUMN%----------------------------------------------------------------------------------------\begin{minipage}[t]{0.33\textwidth} % The left column takes up 33% of the text width of the page
Code: Select all
% XeLaTeX can use any Mac OS X font. See the setromanfont command below.% Input to XeLaTeX is full Unicode, so Unicode characters can be typed directly into the source.% The next lines tell TeXShop to typeset with xelatex, and to open and save the source with Unicode encoding.%!TEX TS-program = xelatex%!TEX encoding = UTF-8 Unicode\documentclass[12pt]{article}\usepackage{geometry} % See geometry.pdf to learn the layout options. There are lots.\geometry{letterpaper} % ... or a4paper or a5paper or ...%\geometry{landscape} % Activate for for rotated page geometry%\usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent\usepackage{graphicx}\usepackage{amssymb}% Will Robertson's fontspec.sty can be used to simplify font choices.% To experiment, open /Applications/Font Book to examine the fonts provided on Mac OS X,% and change "Hoefler Text" to any of these choices.\usepackage{fontspec,xltxtra,xunicode}\defaultfontfeatures{Mapping=tex-text}\setromanfont[Mapping=tex-text]{Hoefler Text}\setsansfont[Scale=MatchLowercase,Mapping=tex-text]{Gill Sans}\setmonofont[Scale=MatchLowercase]{Andale Mono}\title{Brief hhhhArticle}\author{The Author}%\date{} % Activate to display a given date or no date\begin{document}\maketitle% For many users, the previous commands will be enough.% If you want to directly input Unicode, add an Input Menu or Keyboard to the menu bar% using the International Panel in System Preferences.% Unicode must be typeset using a font containing the appropriate characters.% Remove the comment signs below for examples.% \newfontfamily{\A}{Geeza Pro}% \newfontfamily{\H}[Scale=0.9]{Lucida Grande}
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Trying to compile a template no avail
deedy-resume.cls
has something wrong at the beginning: a complete small document. Remove the lines before:Code: Select all
%----------------------------------------------------------------------------------------% CLASS OPTIONS AND REQUIRED PACKAGES%----------------------------------------------------------------------------------------\ProvidesClass{deedy-resume}[2014/04/30 CV class]
Stefan
Trying to compile a template no avail
it worked!!! thank you, stefan!Stefan_K wrote:Thisdeedy-resume.cls
has something wrong at the beginning: a complete small document. Remove the lines before:
Because this is how the class actually starts.Code: Select all
Code, edit and compile here:%----------------------------------------------------------------------------------------% CLASS OPTIONS AND REQUIRED PACKAGES%----------------------------------------------------------------------------------------\ProvidesClass{deedy-resume}[2014/04/30 CV class]
Stefan