Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haxibami/haxipst
My typst templates & utilities (WIP)
https://github.com/haxibami/haxipst
indent resume typst typst-package typst-template
Last synced: 6 days ago
JSON representation
My typst templates & utilities (WIP)
- Host: GitHub
- URL: https://github.com/haxibami/haxipst
- Owner: haxibami
- Created: 2023-03-23T09:13:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-04T08:07:58.000Z (9 months ago)
- Last Synced: 2024-05-21T12:52:03.393Z (6 months ago)
- Topics: indent, resume, typst, typst-package, typst-template
- Language: Typst
- Homepage:
- Size: 12.1 MB
- Stars: 20
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-typst - typst-templates - My typst templates (Templates & Libraries / General)
README
# haxipst
My typst templates & utilities (WIP). Includes:
- `resume` - resume / document template
- `set-metadata` - utility to set metadata for PDF files
- `better-indent` - utility to indent first paragraph (See: [typst/typst #311](https://github.com/typst/typst/issues/311))
- `better-heading` - utilty to get loose heading
- `macro/*` - various macros (`#noindent`, `#latex`...)## Install
This package is not published to official repo, since it is my personal one.
But you can use it as local package (See [Official Guide](https://github.com/typst/packages#local-packages) for more information).
```sh
cd {data-dir} # Depends on your environment
mkdir -p ./typst/packages/local/haxipst && cd ./typst/packages/local/haxipst
git clone https://github.com/haxibami/haxipst.git 0.1.1
```## Usage
See `test/sample.typ` for example usage.
```typ
#import "@local/haxipst:0.1.1": *#show: resume.with(
pdf-author: "著者",
pdf-keywords: (
"キーワード1",
"キーワード2",
),
title: [#text(size: 1.5em)[*タイトル*]],
author: [著者],
header: [ヘッダー #h(1fr) #datetime.today().display()],
)
```