A Typst template for submissions to the Annual Conference of the Cognitive Science Society (CogSci).
This template aims to be a visual clone of the official LaTeX template.
| Anonymized | Final |
|---|---|
You will typically want to use this template by initializing a project with the CogSci boilerplate. The CogSci boilerplate (shown in the thumbnails) will give you the formatting specifications and examples of how to make citations, figures, tables, footnotes, and acknowledgments. You can generate the boilerplate (a) in the Typst web app or (b) locally. If you don't need the boilerplate, you can also just (c) import the template functions in any Typst document.
In the Typst web app, click "Start from template" on the dashboard and search for cogsci-conference.
You can use the Typst CLI to initialize the template locally:
typst init @preview/cogsci-conference
cd cogsci-conferenceThe API is described in the Parameters section below.
#import "@preview/cogsci-conference:0.1.0": cogsci, format-authors
#show: cogsci.with(
title: [CogSci Typst Template],
authors: format-authors(
(name: [Author One], email: "a1@university.edu", affiliation: [Department Details]),
(name: [Author Two], email: "a2@university.edu", affiliation: [Department Details]),
),
abstract: [The abstract.],
keywords: ("kw1", "kw2", "kw3",),
anonymize: true,
hyphenate: true,
)
// Document content goes here...
#bibliography("bibliography.bib")If you're using Typst locally, I highly recommend trying the Tinymist extension for Visual Studio Code: Tinymist Typst VS Code Extension. It makes for a superb writing experience.
To generate the PDF using the Typst CLI:
typst compile main.typ main.pdfNB: It's recommended that you use a PDF standard to ensure that the PDF is searchable, e.g. a-3u:
typst compile --pdf-standard a-3u main.typ main.pdf-
DOUBLE-BLIND REVIEWING
-
Starting in 2019, 6-page paper submissions are reviewed double-blind, so submissions must be anonymized.
-
You can toggle the author details in your submission using the
anonymizeflag (this also prevents author info from being stored in the PDF metadata).
-
-
CC-BY LICENSING
- An online proceedings will be published by the Cognitive Science Society. At the time of final (camera-ready) submission authors will be required to agree to release of their proceedings contribution under a CC-BY license. This means that authors allow free reuse of their work provided the original authors are attributed. Please see the submissions website for more details.
The cogsci() template function accepts the following parameters:
-
title(content): The paper title. -
authors(content): Pre-formatted author information. The template exports aformat-authors()helper function that accepts an array of author dictionaries with keysname,email, andaffiliation. You can pass your own custom formatted content toauthorsif you need different styling. -
abstract(content): The paper abstract. -
keywords(array): Array of keyword strings, e.g.,("Bayesian model", "function learning", "emotion").
Call bibliography() at the end of your document:
#bibliography("bibliography.bib")Typst's bibliography() function accepts a BibLaTeX .bib file or a Hayagriva .yaml/.yml file.
Note: If passing a .bib file, use the BibLaTeX format, not BibTeX.
anonymize(boolean): Set totruefor double-blind review submissions (hides author information and uses "Anonymous CogSci submission" placeholder). Set tofalsefor final camera-ready submissions with author details. Default isfalse.
hyphenate(boolean): Set tofalseto disable hyphenation throughout the document (useful for proofreading). Default istrue.
The template exposes manual overrides for text(), page(), and document(). It's advised that you not use these. But if you absolutely need to change the region, paper size, or document metadata, then you can override the defaults by supplying a dictionary.
text-kwargs(dictionary): expands intoset text(..text-kwargs)page-kwargs(dictionary): expands intoset page(..page-kwargs)document-kwargs(dictionary): expands intoset document(..document-kwargs)
Set #let anonymize = true.
Remember that you need to leave at least 2.75 inches between the top of the first page and the abstract and text of your paper. Since the top margin needs to be 1 inch on all pages, this means that there needs to be at least 1.75 inches of space on page 1 in which nothing but your paper title and Anonymous CogSci submission appears. Additionally, please remember not to include acknowledgments in the anonymized version of your paper.
Set #let anonymize = false.
In the final version of the paper, the title, author, abstract, and text of the paper must fit within six pages. Unlimited additional pages can be used for acknowledgments and references. In the final version of the paper for the proceedings (but not the initial anonymized submission), be sure to include any acknowledgments that may be appropriate.
Once again, make sure that you adhere to the general formatting instructions, including that there are at least 2.75 inches between the top of page 1 and the start of the abstract and text.
- Typst
v0.14.0or later (use the web app or install locally, e.g. withbrew install typst)
This template is distributed under the MIT License.
Dae Houlihan, based on the LaTeX template by Ashwin Ram, Johanna Moore, David Noelle, Pat Langley, Ramin Charles Nakisa, Tina Eliassi-Rad, Trisha Yannuzzi, Mary Ellen Foster, Ken Forbus, Eli M. Silk, Niels Taatgen and Roger Levy.