oaktree-sapling 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/LICENSE +28 -0
  2. package/README.md +66 -0
  3. package/ci/run.sh +64 -0
  4. package/dist/cli.cjs +1230 -0
  5. package/package.json +50 -0
  6. package/paper-base.yml +29 -0
  7. package/plugins/gallery.mjs +224 -0
  8. package/templates/instance/brand/brand.yml +15 -0
  9. package/templates/instance/brand/logo.svg +4 -0
  10. package/templates/instance/editions/edition.yml +14 -0
  11. package/templates/instance/journal.yml +58 -0
  12. package/templates/instance/registry/papers.yml +20 -0
  13. package/templates/paper/.github/actions/engine/action.yml +59 -0
  14. package/templates/paper/.github/actions/engine/pins.yml +16 -0
  15. package/templates/paper/.github/workflows/check-post.yml +79 -0
  16. package/templates/paper/.github/workflows/check.yml +72 -0
  17. package/templates/paper/.github/workflows/ci.yml +64 -0
  18. package/templates/paper/.github/workflows/prepare.yml +34 -0
  19. package/templates/paper/.github/workflows/preview-deploy.yml +52 -0
  20. package/templates/paper/.github/workflows/publish.yml +33 -0
  21. package/templates/paper/.github/workflows/version-bump.yml +29 -0
  22. package/templates/paper/CODEOWNERS +9 -0
  23. package/templates/paper/bib.bib +6 -0
  24. package/templates/paper/gitignore +8 -0
  25. package/templates/paper/index.md +12 -0
  26. package/templates/paper/myst.yml +37 -0
  27. package/templates/site/.github/workflows/site.yml +73 -0
  28. package/templates/site/gitignore +5 -0
  29. package/templates/site/myst.yml +32 -0
  30. package/templates/site/package.json +9 -0
  31. package/templates/site/pages/index.md +25 -0
  32. package/templates/typst/LICENSE +21 -0
  33. package/templates/typst/frontmatter.typ +244 -0
  34. package/templates/typst/lapreprint.typ +310 -0
  35. package/templates/typst/template.typ +112 -0
  36. package/templates/typst/template.yml +82 -0
  37. package/typst.version +1 -0
@@ -0,0 +1,82 @@
1
+ jtex: v1
2
+ kind: typst
3
+ title: LaPreprint Typst Template
4
+ description: Easily create beautiful preprints in Typst
5
+ template: template.typ
6
+ files:
7
+ - lapreprint.typ
8
+ - frontmatter.typ
9
+ - template.typ
10
+ - LICENSE
11
+ authors:
12
+ - name: Rowan Cockett
13
+ github: rowanc1
14
+ affiliations:
15
+ - Curvenote
16
+ - name: Franklin Koch
17
+ github: fwkoch
18
+ affiliations:
19
+ - Curvenote
20
+ version: 0.0.1
21
+ license: MIT
22
+ tags:
23
+ - preprint
24
+ - article
25
+ - paper
26
+ thumbnail: ./examples/pixels/files/screenshot.png
27
+ github: https://github.com/myst-templates/lapreprint-typst
28
+ doc:
29
+ - id: title
30
+ required: true
31
+ - id: authors
32
+ required: true
33
+ - id: subtitle
34
+ - id: short_title
35
+ - id: open_access
36
+ - id: keywords
37
+ - id: doi
38
+ - id: venue
39
+ options:
40
+ - id: logo
41
+ type: file
42
+ description: An image path that is shown in the top right of the page
43
+ - id: kind
44
+ type: string
45
+ description: The "kind" of the content, e.g. "Original Research" - shown as the title of the margin content on the first page
46
+ - id: short_citation
47
+ type: string
48
+ description: |
49
+ The short citation used in the document header. By default, it
50
+ is automatically determined from the author names.
51
+ - id: heading_numbering
52
+ type: string
53
+ description: |
54
+ Heading numbering style.
55
+ See also https://typst.app/docs/reference/model/numbering/.
56
+ - id: theme
57
+ type: string
58
+ description: |
59
+ Allows to set the colortheme, e.g. red.darken(30%).
60
+ Default set to blue.darken(30%)
61
+
62
+
63
+ parts:
64
+ - id: abstract
65
+ description: >
66
+ An abstract is a short summary of your research paper or report. A good
67
+ abstract will prepare readers for the detailed information to follow,
68
+ communicate the essence of the article and help readers take away and remember key points.
69
+ max_words: 500
70
+ required: true
71
+ - id: summary
72
+ description: Plain language summary
73
+ max_words: 500
74
+ required: false
75
+ - id: acknowledgements
76
+ description: >
77
+ Acknowledgements printed in the margin
78
+ max_words: 500
79
+ - id: availability
80
+ description: >
81
+ Data availability statement printed in the margin
82
+ max_words: 500
package/typst.version ADDED
@@ -0,0 +1 @@
1
+ 0.14.2