-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from fluentdesk/v0.6.0
V0.6.0
- Loading branch information
Showing
79 changed files
with
1,981 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
Theme: Awesome | ||
============== | ||
An experimental FluentCV theme based on the [Awesome-CV][acv] resume | ||
template for LaTeX. | ||
|
||
## Use | ||
|
||
1. Run `fluentcv build my-resume.json to out/my-resume.all -t awesome` to create | ||
a LaTeX resume in the Awesome-CV style using your FRESH or JSON Resume resume. | ||
|
||
2. Generate a styled PDF by running `xelatex my-resume.tex` in the `examples` | ||
folder generated in Step 1. You'll need a valid and updated LaTeX environment on | ||
your local machine, such as [MiKTeX 2.9.5721][m]. | ||
|
||
## Warning | ||
|
||
For this theme to work the same way the original Awesome-CV theme works, there | ||
are 3 symlinks in the `examples` folder that need to exist: | ||
|
||
- `awesome-cv.cls` should link to `../awesome-cv.cls`. | ||
- `fontawesome.sty` should link to `../fontawesome.sty`. | ||
- `fonts` should link to `../fonts` (folder). | ||
|
||
FluentCV creates these by default when it generates a resume under the `awesome` | ||
theme. To create these symlinks manually, either use the Linux / OS X symlink | ||
command for all three or, if on Windows, run use `mklink /H` for the first two | ||
and `mklink /J` for the last. | ||
|
||
## License | ||
|
||
Themes are licensed under MIT. See [LICENSE.md][lic]. | ||
|
||
|
||
[acv]: https://github.com/posquit0/Awesome-CV | ||
[m]: http://miktex.org/download | ||
[desk]: http://fluentcv.com | ||
[cli]: https://github.com/fluentdesk/fluentcv | ||
[lic]: https://github.com/fluentdesk/fluent-themes/blob/master/LICENSE.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"title": "compact", | ||
"description": "A FluentCV résumé theme based on Awesome-CV for LaTeX.", | ||
"engine": "underscore", | ||
"delimeters": { | ||
"interpolate": "\\[\\[([\\s\\S]+?)\\]\\]", | ||
"escape": "\\[\\=([\\s\\S]+?)\\]\\]", | ||
"evaluate": "\\[~([\\s\\S]+?)~]", | ||
"comment": "\\[\\#([\\s\\S]+?)\\#\\]" | ||
}, | ||
"formats": { | ||
"latex": { | ||
"transform": [ | ||
"src/latex/examples/resume.tex", | ||
"src/latex/examples/cv.tex", | ||
"src/latex/examples/resume/committees.tex", | ||
"src/latex/examples/resume/education.tex", | ||
"src/latex/examples/resume/experience.tex", | ||
"src/latex/examples/resume/extracurricular.tex", | ||
"src/latex/examples/resume/honors.tex", | ||
"src/latex/examples/resume/presentation.tex", | ||
"src/latex/examples/resume/writing.tex", | ||
"src/latex/examples/cv/committees.tex", | ||
"src/latex/examples/cv/education.tex", | ||
"src/latex/examples/cv/experience.tex", | ||
"src/latex/examples/cv/extracurricular.tex", | ||
"src/latex/examples/cv/honors.tex", | ||
"src/latex/examples/cv/presentation.tex", | ||
"src/latex/examples/cv/skills.tex", | ||
"src/latex/examples/cv/writing.tex" | ||
], | ||
"symLinks": { | ||
"src/latex/examples/awesome-cv.cls": "../awesome-cv.cls", | ||
"src/latex/examples/fontawesome.sty": "../fontawesome.sty", | ||
"src/latex/examples/fonts": "../fonts" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.