LaTeX Resume / CV Workshop

Slides:



Advertisements
Similar presentations
Web Design with Cascading Style Sheet Lan Vu. Overview Introduction to CSS Designing CSS Using Visual Studio to create CSS Using template for web design.
Advertisements

 Share assignments and files  Student and parent home access  Announcements  Classroom information.
Microsoft Word Objectives: Word processing using Microsoft Word
Microsoft Word A full-featured word processing program for Windows and the Macintosh from Microsoft, which is included in the Microsoft Office suite. What.
Building Web Pages With Microsoft Office. Introduction This tutorial is for the beginning web builder. It utilizes software that you already have, Microsoft.
CIS101 Introduction to Computing
Professor Joe Perret Pierce College Transition to Microsoft Office 2007.
1 of 5 This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. © 2006 Microsoft Corporation.
How To Make a Digital Entrance Portfolio Master of Arts in Teaching.
LaTeX Tutorial. What is LaTeX? TeX is a typesetting system designed in 1978 to automate the production of high quality print using any type of computer.
Bulleted and Numbered Lists Microsoft Word. What are Bulleted and Number Lists?  Bulleted and number lists are types of hanging indents you can use to.
Review of last Session Adding custom html Adding custom html HTML is the language that web servers understand, all web pages are created using HTML. HTML.
Lesson 6 Part 1. 2 When would the use of a template save time and be more productive? In other literature a “template” may also be referred to as a “boiler.
For AMS 200, 2009 Dept. of Applied Math & Statistics School of Engineering University of California Santa Cruz, CA A Very Short Introduction to LaTeX.
File Types, MS Word, and MS Excel
Intro – Google Docs Joel Elad iTeam – x7400 Instructional Support and Training Academic Technology Services.
How to Web Page with iModules First row of icons.
LATEXLATEX IPA – batch. LATEXLATEX  A document preparation system - pronounced as lay-tek  It is a markup and programming language created by.
Microsoft Word 2007 Getting Started. Menus These features below contain many of the functions that were in the menu of previous versions of Word. –The.
Microsoft Office Word 2013 Expert Microsoft Office Word 2013 Expert Courseware # 3251 Lesson 3: Customizing Document Elements.
15.1 Fundamentals of HTML.
With Microsoft Office 2007 Intermediate© 2008 Pearson Prentice Hall1 PowerPoint Presentation to Accompany GO! with Microsoft ® Office 2007 Intermediate.
Introduction to Microsoft Word Date: March 6, 2012 Time: 9:00 AM to 11:00 AM Location: Maher Hall 114 Computer Lab Instructor: Joel Elad.
Introduction to Microsoft Word Date: March 21, 2012 Time: 10:00 AM to 11:00 AM Location: Serra Hall 156A Computer Lab Instructor: Joel Elad.
1. 2 Introductions  Name?  What do you want to get out of this session?  To follow along with this presentation go to
9/18/98ET 2 Introduction to Technology - Word Project 1 Microsoft Word Project 1.
© 2008 The McGraw-Hill Companies, Inc. All rights reserved. WORD 2007 M I C R O S O F T ® THE PROFESSIONAL APPROACH S E R I E S Lesson 13 Templates.
Word 2007 What’s New. Ribbon Interface Replaces toolbars and menus Contains tabs and grouped commands Each tab corresponds to task Related items grouped.
How to Create a Document in Google Drive By Tressa Beckler.
Webmasters’ Guild Word Training. Making Better Word 2007 (and 2003) Documents Styles…Images…Lists Oh my!
Creating Your First Web Page – Topic: Creating a wiki, blog, image blog and podcast Click Arrow - Next Slide 1.
MICROSOFT WORD 2010 Lesson 6: Word Templates. The goal of this lesson is for the students to successfully create and work with templates. The student.
Package & Deploy. OBJECTIVES Package Deploy Way to package.
Road To Success 2007 Version cannot have items over the video.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Landscaper 101. Time Code AMC AMCNET HELP!!! Where do you go for help? –Upper right corner has a ? for the online help –This presentation.
HINDU STYLE PORTFOLIO TEMPLATE
Chapter 8 HTML Editors. Copyright © 2006 Pearson Addison-Wesley. All rights reserved. 8-2 Text Editors Text editors don't have word processing features.
Creating a Google Site For a Digital Portfolio Purpose.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
MS Word Taking It To A New Level. You Think You Know Word You all use Word You know common functions: –Select typefaces and sizes –Bold, italics –Save.
Online Portfolios: The New Way to Market Yourself Donna Love & Leslie Martin Gaston College.
LaTeX Tutorial. What is LaTeX? TeX is a typesetting system designed in 1978 to automate the production of high quality print using any type of computer.
LATEX By GerardoVela 3/27/2015.
How to download and install software from Microsoft Imagine
Microsoft Word 2016 Lesson 6 Part 1.
Automatic Documentation Systems
Microsoft Word Objectives: Word processing using Microsoft Word
Refworks Part I.
Development Environment
Introduction to Microsoft Publisher 2016
Controller.
Lesson 3: Customizing Document Elements
Creating a Brochure In Microsoft Word.
Installing R and R Studio
Microsoft Office Illustrated
Online Portfolios: The New Way to Market Yourself
LaTeX Tutorial.
The How-to-Guide for Using Word
Instructor: Prasun Dewan (FB 150,
How to Run a Java Program
Microsoft PowerPoint 2007 – Unit 2
A Very Short Introduction to LaTeX
How To Make Accessible Word Documents
A Brief Overview of Opportunities
Word 2007 – Tips and Techniques
Enter Your Presentation Title
Exploring Microsoft® Office 2016 Series Editor Mary Anne Poatsy
Welcome To Microsoft Word 2016
XLS Overleaf training M. Aicheler.
Presentation transcript:

LaTeX Resume / CV Workshop Nov 18, 2016

Why LaTeX (Lay-Tech)? LaTeX documents are gorgeous. Better typography than Microsoft Word Can make any type of document that you can imagine Free!

What’s wrong with Word? Spacing and form imposed by font and program Columns, lists and tables are TERRIBLE Not customizable

What do I need to code? Coding requires Text editor: this is where you write the code Compiler: this is what reads the code and makes it into a PDF

How will this work? We tell LaTeX What we want the document to look like (Document Class) Where we want things on the page (Position commands like “\hspace{0.5cm}”) What it should say (we type the words we want on the page)

Getting Started http://uwf.edu/cvarney/latex.html Download LaTeX Download an editor To try things out without installing it yourself, check out either https://www.sharelatex.com/ https://overleaf.com (Can use your Google Account)

Creating a New LaTeX File Type the following into a new document: LaTeX files have the filename extension .tex Save it as hello.tex Hit the Green arrow This will create a pdf called hello.pdf

Creating a New LaTeX File Make a small change: Create the pdf again. What changed?

The Resume Class res.cls Your LaTeX installation should automatically install res.cls for you. If not, you can find it @ http://mirror.hmc.edu/ctan/macros/latex/contrib/resume/res.cls If you have to download res.cls, it MUST go in the same directory as your LaTeX file ShareLaTeX and Overleaf do not have res.cls. You have to upload the file

Uploading res.cls

Create a New Resume Create a new document and type the following:

Lists / Bullet Points Numbered lists are created using the enumerate environment Bulleted lists are created using the itemize environment Add one of these under the section we created

Making Lists Better To improve the way lists work, we can use the enumitem package This line of code goes after \documentclass We can customize anything about the list Change your list to look like this:

Adding Positions The resume class has a command to create a position with a job description. Create a new section called “Work Experience” Add the following:

Finding a Style I created a template that uses all of the basic elements of res.cls: Lots of examples on using res.cls to generate different styles: https://www.rpi.edu/dept/arc/training/latex/resumes/ Take a look at the PDFs and see if there’s a style you like

Other CV Styles LaTeX is really customizable, so there are lots of resume and CV packages available: https://www.sharelatex.com/templates/cv-or-resume http://www.latextemplates.com/cat/curricula-vitae Comprehensive TeX Archive Network: http://www.ctan.org/ Windows: MiKTeX will automatically download missing packages Linux/MacOS: Default install covers most packages