Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions packages/preview/magnificent-misq/0.1.0/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2026 Ryan Schuetzler

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
62 changes: 62 additions & 0 deletions packages/preview/magnificent-misq/0.1.0/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# misq

A Typst template for MIS Quarterly manuscript submissions.

This template reproduces MISQ's formatting requirements in Typst, including Times New Roman body text, double-spaced paragraphs, three-level numbered headings, a title page with abstract and keywords, and APA 7th edition citations via a bundled CSL file. Authors can write and submit manuscripts without LaTeX.

## Usage

Import the template from Typst Universe:

```typst
#import "@preview/magnificent-misq:0.1.0": misq
```

Set up the document with your manuscript metadata:

```typst
#show: misq.with(
title: [Your Manuscript Title],
abstract: [
Your abstract text here.
],
keywords: ("keyword one", "keyword two", "keyword three"),
paragraph-style: "indent",
)
```

See `template/main.typ` for a complete example document.

## Parameters

The `misq()` function accepts the following parameters:

| Parameter | Type | Description |
|-----------|------|-------------|
| `title` | content | Manuscript title |
| `abstract` | content | Abstract text |
| `keywords` | array of strings | Keyword list |
| `paragraph-style` | string | `"indent"` for first-line indented paragraphs (default) or `"block"` for block paragraphs with spacing between them |

## Features

- Three heading levels with automatic numbering (1, 1.1, 1.1.1)
- APA 7th edition citations via bundled CSL file
- Title page with abstract and keywords
- Double-spaced body text
- Correct margins per MISQ submission guidelines
- Single-spaced bibliography, figures, and tables

## Bibliography

Add your references with a standard Typst bibliography call placed after the body:

```typst
#bibliography("references.bib", title: "References")
```

The template automatically applies APA 7th edition formatting. Do not pass a `style:` argument — the template handles it.

## License

MIT — see [LICENSE](LICENSE)
Loading
Loading