Skip to content

Latest commit

 

History

History
134 lines (95 loc) · 7.04 KB

USAGE.md

File metadata and controls

134 lines (95 loc) · 7.04 KB

Manubot usage guidelines

This repository uses the Manubot to automatically produce a manuscript from its source.

Manubot markdown

Manuscript text should be written in markdown files, which should be located in content with a digit prefix for ordering (e.g. 01., 02., etc.) and a .md extension.

For basic formatting, check out the CommonMark Help page for an introduction to the formatting options provided by standard markdown. In addition, manubot supports an extended version of markdown, tailored for scholarly writing.

Tables

Manubot supports markdown tables.

| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| value_a | 1 | 47 |
| value_b | 2 | 56 |

Table: Caption for this example table. {#tbl:example-id}

Support for table numbering and citation is provided by pandoc-tablenos. Above, {#tbl:example-id} sets the table ID, which creates an HTML anchor and allows citing the table like @tbl:example-id. For easy creation of markdown tables, check out the Tables Generator webapp.

Figures

Figures can be included with the following markdown:

![Caption for the example figure.](url_or_path_to_figure){#fig:example-id}

Support for figure numbering and citation is provided by pandoc-fignos. This figure can be cited in the text using @fig:example-id. In context, a figure citation may look like: Figure {@fig:example-id}B shows ….

For images created by the manuscript authors that are hosted elsewhere on GitHub, we recommend using a versioned GitHub URL to embed figures, thereby preserving exact image provenance. When embedding SVG images hosted on GitHub, passing the URL through RawGit is necessary. An example of a URL that has been passed through RawGit is:

https://cdn.rawgit.com/greenelab/scihub/572d6947cb958e797d1a07fdb273157ad9154273/figure/citescore.svg

Figures placed in the content/images directory can be embedded using their relative path. For example, we embed an ORCID icon inline using:

![ORCID icon](images/orcid.svg){height="13px"}

The bracketed text following the image declaration is interpreted by Pandoc's link_attributes extension. For example, the following will override the figure number to be "S1" and set the image width to 5 inches:

{#fig:supplement tag="S1" width="5in"}

Citations

Manubot supports Pandoc citations via pandoc-citeproc. However, Manubot performs automated citation processing and metadata retrieval on raw citations. Therefore, citations must be of the following form: @source:identifier, where source is one of the options described below. When choosing which source to use for a citation, we recommend the following order:

  1. DOI (Digital Object Identifier), cite like @doi:10.15363/thinklab.4.
  2. PubMed ID, cite like @pmid:26158728.
  3. arXiv ID, cite like @arxiv:1508.06576v2.
  4. URL / webpage, cite like @url:http://openreview.net/pdf?id=Sk-oDY9ge.

Cite multiple items at once like:

Here is a sentence with several citations [@doi:10.15363/thinklab.4; @pmid:26158728; @arxiv:1508.06576].

Note that multiple citations must be semicolon separated.

Citation tags

The system also supports citation tags, which are recommended for the following applications:

  1. A citation's identifier contains forbidden characters, such as ; or ending with a non-alphanumeric character other than /. In these instances, you must use a tag.
  2. A single reference is cited many times. Therefore, it might make sense to define a tag, so if the citation updates (e.g. a newer version becomes available), only a single change is required.

Tags should be defined in content/citation-tags.tsv. If citation-tags.tsv defines the tag study-x, then this study can be cited like @tag:study-x.

Reference metadata

The Manubot workflow requires the bibliographic details for references (the set of all cited works) as CSL (Citation Style Language) Items (also known as citeproc JSON). The Manubot attempts to automatically retrieve metadata and generate valid citeproc JSON for references, which is exported to output/references.json. However, in some cases the Manubot fails to retrieve metadata or generates incorrect or incomplete citeproc metadata. Errors are most common for url references. For these references, you can manually specify the correct citeproc in content/manual-references.json, which will override the automatically generated reference data. To do so, create a new citeproc record that contains the field "standard_citation" with the appropriate reference identifier as its value. The identifier can be obtained from the standard_citation column of citations.tsv, which is located in the output branch or in the output subdirectory of local builds. As an example, manual-references.json contains:

"standard_citation": "url:https://github.com/greenelab/manubot-rootstock"

For guidance on what CSL JSON should be like for different document types, refer to these examples.

Manuscript metadata

content/metadata.yaml contains manuscript metadata that gets passed through to Pandoc, via a yaml_metadata_block. metadata.yaml should contain the manuscript title, authors list, and keywords. Additional metadata, such as date, will automatically be created by the Manubot.

We recommend authors add themselves to metadata.yaml via pull request (when requested by a maintainer), thereby signaling that they've read and approved the manuscript. The following YAML shows the supported key–value pairs for an author:

github: dhimmel  # strongly suggested
name: Daniel S. Himmelstein  # mandatory
initials: DSH  # strongly suggested
orcid: 0000-0002-3012-7446  # mandatory
twitter: dhimmel  # optional
email: daniel.himmelstein@gmail.com  # suggested
affiliations: Department of Systems Pharmacology and Translational Therapeutics, University of Pennsylvania  # strongly suggested
funders: GBMF4552  # optional

Manubot feedback

If you experience any issues with the Manubot or would like to contribute to its source code, please visit greenelab/manubot or greenelab/manubot-rootstock.