An open API service indexing awesome lists of open source software.

https://github.com/stalomeow/resume-template

Typst 简历模板
https://github.com/stalomeow/resume-template

resume resume-template typst typst-template

Last synced: 3 months ago
JSON representation

Typst 简历模板

Awesome Lists containing this project

README

          

# 简历模板

个人使用的简历模板,使用 [Typst](https://github.com/typst/typst) 编写。

建议配合 `Visual Studio Code` + `Typst Preview` + `Typst LSP` 使用。后两个是插件,提供了实时预览和一定程度的语法提示。

## 样例

内容由 ChatGPT 生成。

- 源文件:[example/resume.typ](example/resume.typ)
- 生成的 PDF:[example/resume.pdf](example/resume.pdf)

![example](example/resume.png)

## 隐藏隐私信息

在一开始的参数里指定 `anonymous: true`,就能自动隐藏隐私信息。

``` typst
#show: resume.with(
// ...
anonymous: true,
)
```

![hide-privacy](example/hide-privacy.png)

除了上图中被隐藏的信息外,还可以用 `privacy` 函数把一个内容标记为隐私,之后它也会被隐藏。

``` typst
#privacy[
*不许看!*
]
```

## Font Awesome 图标

模板中内置了一些图标,在 [icons](icons) 文件夹里。

|变量|预览|
|:-:|:-:|
|`fa-bilibili`|![fa-bilibili](icons/fa-bilibili.svg)|
|`fa-code`|![fa-code](icons/fa-code.svg)|
|`fa-envelope`|![fa-envelope](icons/fa-envelope.svg)|
|`fa-github`|![fa-github](icons/fa-github.svg)|
|`fa-graduation-cap`|![fa-graduation-cap](icons/fa-graduation-cap.svg)|
|`fa-link`|![fa-link](icons/fa-link.svg)|
|`fa-phone`|![fa-phone](icons/fa-phone.svg)|
|`fa-weixin`|![fa-weixin](icons/fa-weixin.svg)|
|`fa-work`|![fa-work](icons/fa-work.svg)|
|`fa-wrench`|![fa-wrench](icons/fa-wrench.svg)|

不够用的话可以自己加,然后导入。

``` typst
#let fa-my-icon = svg-icon("icons/fa-my-icon.svg")
```