Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing inter word whitespace for pdfs in .cls #56

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,6 @@ sympy-plots-for-*.tex/

# xindy
*.xdy

# MacOS
.DS_Store
6 changes: 3 additions & 3 deletions MacFonts/deedy-resume.cls
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
\usepackage[absolute]{textpos}
\usepackage[UKenglish]{babel}
\usepackage[UKenglish]{isodate}
\usepackage{fontspec,xltxtra,xunicode}
\usepackage{fontspec}

% Cite publications
\usepackage{cite}
Expand All @@ -29,9 +29,9 @@
\definecolor{subheadings}{HTML}{333333}

% Set main fonts
\defaultfontfeatures{Mapping=tex-text}
\defaultfontfeatures{WordSpace={1.1}}
\setmainfont[Color=primary]{Helvetica Light}
\setsansfont[Scale=MatchLowercase,Mapping=tex-text]{Helvetica Neue UltraLight}
\setsansfont[Scale=MatchLowercase,Ligatures=TeX]{Helvetica Neue UltraLight}

% Date command
\setlength{\TPHorizModule}{1mm}
Expand Down
Binary file modified MacFonts/deedy_resume.pdf
Binary file not shown.
Binary file modified MacFonts/sample-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion OpenFonts/deedy-resume-openfont.cls
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@

% Set main fonts
\usepackage{fontspec}
\defaultfontfeatures{WordSpace={1.1}}
\setmainfont[Color=primary, Path = fonts/lato/,BoldItalicFont=Lato-RegIta,BoldFont=Lato-Reg,ItalicFont=Lato-LigIta]{Lato-Lig}
\setsansfont[Scale=MatchLowercase,Mapping=tex-text, Path = fonts/raleway/]{Raleway-ExtraLight}
\setsansfont[Scale=MatchLowercase,Ligatures=TeX, Path = fonts/raleway/]{Raleway-ExtraLight}

% Date command
\usepackage[absolute]{textpos}
Expand Down
Binary file modified OpenFonts/deedy_resume-openfont.pdf
Binary file not shown.
Binary file modified OpenFonts/sample-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Deedy-Resume
=========================

A **one-page**, **two asymmetric column** resume template in **XeTeX** that caters particularly to an **undergraduate Computer Science** student.
A **one-page**, **two asymmetric column** resume template in **LuaLaTeX** that caters particularly to an **undergraduate Computer Science** student.
As of **v1.2**, there is an option to choose from two templates:

1. **MacFonts** - uses fonts native to OSX - *Helvetica*, *Helvetica Neue* (and it's Light and Ultralight versions) and the CJK fonts *Heiti SC*, and *Heiti TC*. The EULA of these fonts prevents distribution on Open Source.
Expand All @@ -25,7 +25,7 @@ This template attempts to **look clean**, highlight **details**, be a **single p

## Dependencies

1. Compiles only with **XeTeX** and required **BibTex** for compiling publications and the .bib filetype.
1. Compiles with **LuaLaTeX** and required **BibTex** for compiling publications and the .bib filetype. Can also be compiled with **XeTeX**, but **LuaLaTeX** is recommended.
2. Uses fonts that are usually only available to **Mac** users such as Helvetica Neue Light.

## Availability
Expand Down