Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hong539/resume
LaTeX template for my personal resume forked from jakegut / resume
https://github.com/hong539/resume
latex latex-template tex
Last synced: 3 months ago
JSON representation
LaTeX template for my personal resume forked from jakegut / resume
- Host: GitHub
- URL: https://github.com/hong539/resume
- Owner: hong539
- License: mit
- Created: 2023-03-28T02:02:08.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-27T12:02:27.000Z (9 months ago)
- Last Synced: 2024-07-30T20:52:40.577Z (6 months ago)
- Topics: latex, latex-template, tex
- Language: HTML
- Homepage:
- Size: 1.65 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# resume
My resume generated from *.tex file to request a job.
## Guides/Tips..etc
* LaTex «Lah-tech» or «Lay-tech»
* [LaTex project/About](https://www.latex-project.org/about/)
* [pdf2htmlEX/wiki/Quick-Start](https://github.com/pdf2htmlEX/pdf2htmlEX/wiki/Quick-Start)
* [pdf2htmlEX/wiki/Command-Line-Options](https://github.com/pdf2htmlEX/pdf2htmlEX/wiki/Command-Line-Options)
* [kmpg: a book could be generated from soruce with TeXLive toolchain](https://github.com/sysprog21/lkmpg)## to do list
* How to show projects date?
~~* pdf2htmlEX (generate *.html from *.pdf)~~
* parse pdf with Python
~~* pipe text to html with some generator or render to outout html and related files~~
* automation for generating *.html, add html tags, cp to github pages## quick start
* generate *.pdf from *.tex
* generate *.html from *.pdf
* Install the CLI prerequisites```shell
# Debian / Ubuntu
sudo apt install make texlive-full# Arch / Manjaro
sudo pacman -Syy
sudo pacman -S make texlive-most texlive-bin# macOS
brew install mactex
sudo tlmgr update --self
```* [Python: Usage with pyenv+poetry](https://github.com/hong539/setup_dev_environment/tree/main/programing_languages/python#usage-with-pyenvpoetry)
* [how-to-extract-text-from-a-pdf-file](https://stackoverflow.com/questions/34837707/how-to-extract-text-from-a-pdf-file)
* [pypdf](https://github.com/py-pdf/pypdf)* parser with Python
```shell
poetry add pypdf
```* build *.tex to output pdf with latexmk
```shell
#check latexmk installed or not
which latexmk
latexmk --versioncd src/resume/
latexmk yh_resume.tex
```* build *.tex to output html with htlatex
```shell
htlatex file.tex "xhtml,html5,mathml,charset=utf-8" " -cunihtf -utf8"
```* build *.tex to output pdf with make
```shell
#build pdf from tex source codes
make all
#rm extra files when bulding tex project
make clean
```* Or building with vscode extensions
* LaTeX Workshop* generate *.html from *.pdf
* [How to use this docker container to convert pdf file to html](https://github.com/pdf2htmlEX/pdf2htmlEX/wiki/Download-Docker-Image#how-to-use-this-docker-container-to-convert-pdf-file-to-html)```shell
#with docker
docker run -ti --rm -v ./src:/pdf -w /pdf pdf2htmlex/pdf2htmlex:0.18.8.rc2-master-20200820-alpine-3.12.0-x86_64 --zoom 1.3 yh_resume.pdf#with podman
podman run -ti --rm -v ./src:/pdf -w /pdf docker.io/pdf2htmlex/pdf2htmlex:0.18.8.rc2-master-20200820-alpine-3.12.0-x86_64 --zoom 1.3 yh_resume.pdf# Internal Error: Your version of iconv does not support the "Mac Roman" encoding.
# If this causes problems, reconfigure --without-iconv.
# Preprocessing: 2/2
# Working: 2/2#add this for My github pages icon
#edit *.tex with vscode and extension:LaTeX Workshop
vscode yh_resume.tex
vscode yh_resume.pdf#build with bash shell scripts
bash ./scripts/build.sh#run with bash shell scripts
bash ./scripts/start.sh
```