c

charged-ieee

@preview

An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering

v0.1.4
MIT-0
4 downloads
Template

Package Information

Last Updated
Minimum Typst Version
0.12.0
Authors
Typst GmbH
Categories
paper
Disciplines
computer-scienceengineering

Preview

Template preview

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/charged-ieee:0.1.4

2. Initialize from template

Create a new project from this template:

typst init @preview/charged-ieee:0.1.4

Version History

0.1.40.12.0
ae040669d934...
0.1.30.12.0
f665c7de234a...
0.1.20.10.0
08ff91686a75...
0.1.10.10.0
552434fd9a37...
0.1.00.10.0
27458f6eb0d0...

charged-ieee

This is a Typst template for a two-column paper from the proceedings of the
Institute of Electrical and Electronics Engineers. The paper is tightly spaced,
fits a lot of content and comes preconfigured for numeric citations from
BibLaTeX or Hayagriva files.

Usage

You can use this template in the Typst web app by clicking "Start from template"
on the dashboard and searching for charged-ieee.

Alternatively, you can use the CLI to kick this project off using the command

typst init @preview/charged-ieee

Typst will create a new directory with all the files needed to get you started.

Configuration

This template exports the ieee function with the following named arguments:

  • title: The paper's title as content.
  • authors: An array of author dictionaries. Each of the author dictionaries
    must have a name key and can have the keys department, organization,
    location, and email. All keys accept content.
  • abstract: The content of a brief summary of the paper or none. Appears at
    the top of the first column in boldface.
  • index-terms: Array of index terms to display after the abstract. Shall be
    content.
  • paper-size: Defaults to us-letter. Specify a paper size
    string
    to
    change the page format.
  • bibliography: The result of a call to the bibliography function or none.
    Specifying this will configure numeric, IEEE-style citations.
  • figure-supplement: How figures are referred to from within the text. Use
    "Figure" instead of "Fig." for computer-related publications.

The function also accepts a single, positional argument for the body of the
paper.

The template will initialize your package with a sample call to the ieee
function in a show rule. If you want to change an existing project to use this
template, you can add a show rule like this at the top of your file:

#import "@preview/charged-ieee:0.1.4": ieee

#show: ieee.with(
  title: [A typesetting system to untangle the scientific writing process],
  abstract: [
    The process of scientific writing is often tangled up with the intricacies of typesetting, leading to frustration and wasted time for researchers. In this paper, we introduce Typst, a new typesetting system designed specifically for scientific writing. Typst untangles the typesetting process, allowing researchers to compose papers faster. In a series of experiments we demonstrate that Typst offers several advantages, including faster document creation, simplified syntax, and increased ease-of-use.
  ],
  authors: (
    (
      name: "Martin Haug",
      department: [Co-Founder],
      organization: [Typst GmbH],
      location: [Berlin, Germany],
      email: "haug@typst.app"
    ),
    (
      name: "Laurenz Mädje",
      department: [Co-Founder],
      organization: [Typst GmbH],
      location: [Berlin, Germany],
      email: "maedje@typst.app"
    ),
  ),
  index-terms: ("Scientific writing", "Typesetting", "Document creation", "Syntax"),
  bibliography: bibliography("refs.bib"),
)

// Your content goes below.