3 Commits

Author SHA1 Message Date
0x1D8 f36b513a2d docs(README): fix installation instructions 2025-03-01 10:53:53 +02:00
pencelheimer d7c26debfd fix: package entry point 2025-03-01 01:26:50 +02:00
pencelheimer f940d16e06 fix: imports 2025-03-01 01:26:38 +02:00
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -29,11 +29,11 @@ This template:
### As a local typst package ### As a local typst package
1. Clone this repository into ~/.local/share/typst/packages/: 1. Clone this repository into ~/.local/share/typst/packages/:
```bash ```bash
git clone https://gitea.linerds.us/pencelheimer/typst_nure_template.git ~/.local/share/typst/packages/nure_template/0.0.0 git clone https://gitea.linerds.us/pencelheimer/typst_nure_template.git ~/.local/share/typst/packages/local/nure/0.0.0
``` ```
2. Init your project with Typst: 2. Init your project with Typst:
```bash ```bash
typst init @local/nure_template:0.0.0 project-name typst init @local/nure:0.0.0 project-name
``` ```
### As a file in your project ### As a file in your project
+1 -1
View File
@@ -1,4 +1,4 @@
#import "template.typ": * #import "@local/nure:0.0.0": *
#let author = ( #let author = (
name: "Ситник Є. С.", name: "Ситник Є. С.",
+1 -1
View File
@@ -1,4 +1,4 @@
#import "template.typ": * #import "@local/nure:0.0.0": *
#show: lab-pz-template.with( #show: lab-pz-template.with(
doctype: "ЛБ", doctype: "ЛБ",
+1 -1
View File
@@ -1,7 +1,7 @@
[package] [package]
name = "nure" name = "nure"
version = "0.0.0" version = "0.0.0"
entrypoint = "template.typ" entrypoint = "lib.typ"
authors = ["linerds"] authors = ["linerds"]
license = "GPL-3.0" license = "GPL-3.0"
description = "Typst NURE package" description = "Typst NURE package"