Skip to content

Latest commit

 

History

History
403 lines (309 loc) · 26.1 KB

USAGE.md

File metadata and controls

403 lines (309 loc) · 26.1 KB

Manubot usage guidelines

This repository uses Manubot to automatically produce a manuscript from the source in the content directory. Check out the Manubot catalog for examples of what is possible when writing with Manubot. Try editing the demo manuscript to quickly test Manubot formatting and citations.

Manubot markdown

Manuscript text should be written in markdown files located in the content directory. Markdown files are identified by their .md extension and ordered according to their two-digit prefix (e.g. 01., 02., … 99.).

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, which includes Pandoc's Markdown and the extensions discussed below.

The content/02.delete-me.md file in the Rootstock repository shows many of the elements and formatting options supported by Manubot. See the raw markdown in this file and compare it to the rendered manuscript.

Within a paragraph in markdown, single newlines are interpreted as whitespace (same as a space). A paragraph's source does not need to contain newlines. However, "one paragraph per line" makes the git diff less precise, leading to less granular review commenting, and makes conflicts more likely. Therefore, we recommend using semantic linefeeds — newlines between sentences. We have found that "one sentence per line" is preferable to "word wrap" or "one paragraph per line".

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}

The blank line before the figure is required. 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, it's necessary to append ?sanitize=true to the raw.githubusercontent.com URL. For example:

https://raw.githubusercontent.com/greenelab/scihub/572d6947cb958e797d1a07fdb273157ad9154273/figure/citescore.svg?sanitize=true

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"}

We recommend always specifying the width of SVG images (even if just width="100%"), since otherwise SVGs may not render properly in the WeasyPrint PDF export.

Citations

Manubot supports Pandoc citations, but with added support for citing persistent identifiers directly. Citations are processed in 3 stages:

  1. Pandoc parses the input Markdown to locate citation keys.
  2. The pandoc-manubot-cite filter automatically retrieves the bibliographic metadata for citation keys.
  3. The pandoc-citeproc filter renders in-text citations and generates styled references.

When citing persistent identifiers, citation keys should be formatted like @prefix:accession, where prefix 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. Shortened versions of DOIs can be created at shortdoi.org. shortDOIs begin with 10/ rather than 10. and can also be cited. For example, Manubot will expand @doi:10/993 to the DOI above. We suggest using shortDOIs to cite DOIs containing forbidden characters, such as ( or ).
  2. PubMed Central ID, cite like @pmc:PMC4497619.
  3. PubMed ID, cite like @pubmed:26158728.
  4. arXiv ID, cite like @arxiv:1508.06576v2.
  5. ISBN (International Standard Book Number), cite like @isbn:9781339919881.
  6. URL / webpage, cite like @https://nyti.ms/1QUgAt1. URL citations can be helpful if the above methods return incorrect metadata. For example, @doi:10.1038/ng.3834 incorrectly handles the consortium name resulting in a blank author, while @https://doi.org/10.1038/ng.3834 succeeds. Similarly, @https://doi.org/10.1101/142760 is a workaround to set the journal name of bioRxiv preprints to bioRxiv.
  7. Wikidata Items, cite like @wikidata:Q50051684. Note that anyone can edit or add records on Wikidata, so users are encouraged to contribute metadata for hard-to-cite works to Wikidata.
  8. Any other compact identifier supported by https://bioregistry.io. Manubot uses the Bioregistry to support hundreds of prefixes. For example, citing @clinicaltrials:NCT04280705 will produce the same bibliographic metadata as @https://bioregistry.io/clinicaltrials:NCT04280705 or @https://clinicaltrials.gov/ct2/show/NCT04280705.
  9. For references that do not have any of the above persistent identifiers, the citation key does not need to include a prefix. Citing @old-manuscript will work, but only if reference metadata is provided manually.

Manubot is able to infer certain prefixes, such some citations can be formatted like @accession (without a prefix). Examples includes DOIs like @10.15363/thinklab.4 or @10/993, PMC / PubMed identifiers like @PMC4497619 or @26158728, arXiv identifier like @1508.06576v2, and Wikidata identifiers like @Q50051684. To disable citekey prefix inference, add the following to metadata.yaml:

pandoc:
  manubot-infer-citekey-prefixes: false

Cite multiple items at once like:

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

Note that multiple citations must be semicolon separated. Be careful not to cite the same study using identifiers from multiple sources. For example, the following citations all refer to the same study, but will be treated as separate references: [@doi:10.7717/peerj.705; @pmc:PMC4304851; @pubmed:25648772].

The citation key syntax is described in the Pandoc manual:

Unless a citation key start with a letter, digit, or _, and contains only alphanumerics and internal punctuation characters (:.#$%&-+?<>~/), it must be surrounded by curly braces, which are not considered part of the key. In @Foo_bar.baz., the key is Foo_bar.baz. The final period is not internal punctuation, so it is not included in the key. In @{Foo_bar.baz.}, the key is Foo_bar.baz., including the final period. The curly braces are recommended if you use URLs as keys: [@{https://example.com/bib?name=foobar&date=2000}, p. 33].

If a citation key does not fully match this online regex (for example, contains characters such as ; or = or end with a non-alphanumeric character such as /), make sure to surround it with curly braces or use the citation aliases workaround below.

Prior to Rootstock commit 6636b91 on 2020-01-14, Manubot processed citations separately from Pandoc. Switching to a Pandoc filter improved reliability on complex documents, but restricted the syntax of citation keys slightly. Therefore, users upgrading Rootstock may find some citations become invalid. By default, pandoc-manubot-cite does not fail upon invalid citations, although this can be changed by adding the following to metadata.yaml:

pandoc:
  manubot-fail-on-errors: true

Citation aliases

The system also supports citation aliases, which map from one citation key (the "alias" or "tag") to another. Aliases are recommended for the following applications:

  1. A citation key contains forbidden characters.
  2. A single reference is cited many times. Therefore, it might make sense to define an alias, so if the citation updates (e.g. a newer version becomes available), only a single change is required.

Aliases can be defined using Markdown's link reference syntax as follows:

Citing a URL containing a `?` character [@my-url].
Citing a DOI containing parentheses [@my-doi].

[@my-url]: https://openreview.net/forum?id=HkwoSDPgg
[@my-doi]: doi:10.1016/S0022-2836(05)80360-2

This syntax is also used by pandoc-url2cite. Make sure to place these link reference definitions in their own paragraphs. These paragraphs can be in any of the content Markdown files.

Another method for defining aliases is to define pandoc.citekey-aliases in metadata.yaml:

pandoc:
  citekey-aliases:
    my-url: https://openreview.net/forum?id=HkwoSDPgg
    my-doi: doi:10.1016/S0022-2836(05)80360-2

Reference metadata

Manubot stores the bibliographic details for references (the set of all cited works) as CSL JSON (Citation Style Language Items). Manubot automatically generates CSL JSON for most persistent identifiers (as described in Citations above). In some cases, automatic metadata retrieval fails or provides incorrect or incomplete information. Errors are most common for references generated from scraping HTML metadata from websites. This occurs most frequently for https/http/url citations as well as Bioregistry prefixes without explicit support listed above. Therefore, Manubot supports user-provided metadata, which we refer to as "manual references". When a manual reference is provided, Manubot uses the supplied metadata and does not attempt to generate it.

Manubot searches the content directory for files that match the glob pattern manual-references*.* and expects that these files contain manual references. content/manual-references.json is the default file to specify custom CSL JSON metadata. Manual references are matched to citations using their "id" field. For example, to manually specify the metadata for the citation @https://github.com/manubot/rootstock, add a CSL JSON Item to manual-references.json that contains the following excerpt:

"id": "https://github.com/manubot/rootstock",

The metadata for unhandled citations — any citation key that is a not a supported persistent ID — must be provided in a manual reference file (e.g. manual-references.json) or an error will occur. For example, to cite @private-message in a manuscript, a corresponding CSL JSON Item is required, such as:

{
  "id": "private-message",
  "type": "personal_communication",
  "title": "Personal communication with Doctor X"
}

All manual references must provide values for the "id" and "type" fields. For guidance on what CSL JSON should be like for different document types, refer to these examples.

Manubot offers some support for other bibliographic metadata formats besides CSL JSON, by delegating conversion to the pandoc-citeproc --bib2json utility. Formats are inferred from filename extensions. So, for example, to provide metadata for @https://github.com/manubot/rootstock in BibTeX format, create the file content/manual-references.bib and create an item whose definition starts with the excerpt:

@misc{https://github.com/manubot/rootstock,

Processed reference metadata in CSL JSON format, either generated by Manubot or specified via manual references, is exported to references.json. This file is located in the output branch on GitHub or in the output subdirectory of local builds. The "id" field in references.json and in the final manuscript uses a shortened ID that is derived from the original ID. For debugging information, see citations.tsv, which shows citation identifiers as they progress through the processing pipeline. In order to freeze all references, rather than have Manubot regenerate them during future builds, copy the references.json output file to content with a filename matching the manual-references*.json pattern. One tip is to embed the date references.json was generated into the frozen manual reference filename, like content/manual-references-2019-06-21.json.

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, keywords, and lang (language tag).

When the date field is missing or null, Manubot uses the current time for the publication date. This is ideal for manuscripts that are being actively written, but once complete it might make sense to set an explicit date (ISO-format like '2022-10-31'), such that future minor changes do not update the publication date. The generated date will still reflect the time of the Manubot build. Manubot uses the timezone specified in build.sh for the generated date. For example, setting the TZ environment variable to Etc/UTC directs the Manubot to use Coordinated Universal Time.

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  # optional
orcid: 0000-0002-3012-7446  # mandatory
twitter: dhimmel  # optional
mastodon: dhimmel  # optional: mastodon username
mastodon-server: genomic.social  # optional: mastodon server (instance)
email: daniel.himmelstein@gmail.com  # suggested
corresponding: true  # optional, if set to true displays author's email for correspondence
affiliations:  # as a list, strongly suggested
  - Department of Systems Pharmacology and Translational Therapeutics, University of Pennsylvania
  - Department of Biological & Medical Informatics, University of California, San Francisco
funders:
  - GBMF4552  # optional list of author's funding

Note that affiliations should be a list to allow for multiple affiliations per author.

Thumbnail

A thumbnail is an image used to visually represent the manuscript, such as when a manuscript is shared on social media or added to the Manubot catalog. Specify a thumbnail in any of the following ways:

  1. placing an image named thumbnail.png anywhere in the manuscript repository (for example, in the root directory).
  2. setting thumbnail in metadata.yaml to a path, relative to the repository root, where the image file is located. Example:
    thumbnail: build/assets/thumbnail-1000x1000.png
  3. setting thumbnail in metadata.yaml to an absolute URL where the image is located. Example:
    thumbnail: https://github.com/greenelab/meta-review/raw/master/thumbnail.png

Methods 2 and 3 take precedence over method 1. View the guidelines here for suggestions on how to create a good thumbnail. Key points are that thumbnails should be 1000 × 1000 pixels, PNG formatted, and striking.

Custom formatting

Modifying the manuscript formatting requires modifying the CSS in the file build/themes/default.html. Common formatting changes, such as font size and double spacing, can be found by searching the Rootstock issues. Open a new issue if you have a new formatting question.

Changing the citation style or which interactive HTML plugins are loaded requires editing the options specified by Pandoc defaults files in build/pandoc/defaults. The citation style is determined by the Citation Style Language file specified in common.yaml:

metadata:
  csl: build/assets/style.csl

The value for metadata.csl can be a URL, allowing access to thousands of existing styles hosted by Zotero or the CSL GitHub. For example, the following options replace the Manubot citation style with the PeerJ style:

metadata:
  csl: https://github.com/citation-style-language/styles/raw/906cd6d43d0c136190ecfbb12f6af0ca794e3c5b/peerj.csl

Instructions for generating additional manuscript output formats such as DOCX can be found in build/README.md.

Spellchecking

When the SPELLCHECK environment variable is true, the pandoc spellcheck filter is run. Potential spelling errors will be printed in the continuous integration log along with the files and line numbers in which they appeared. Words in build/assets/custom-dictionary.txt are ignored during spellchecking. Spellchecking is currently only supported for English language manuscripts.

AI-assisted authoring

The workflow ai-revision is available to assist authors in writing their manuscripts. It uses large language models to revise the manuscript text, fix spelling and grammar errors, and improve the sentence structure and the writing style with section-specific prompts. It is manually triggered by the user (it never runs automatically), and it generates a pull request with suggested revisions. Then the user can review these changes and merge the pull request if they are acceptable. More information about this tool is available in this manuscript.

You need to change your repository settings to 1) provide a secret with name OPENAI_API_KEY containing your OpenAI API token, and 2) allow workflows to create pull requests. For 1), go to the settings page and, within "Secrets and variables," select "Actions." Next, create a repository secret with the name OPENAI_API_KEY and the value of the API token (you can also do this using "Organization secrets" if available). For 2), go to "Actions", "General", "Workflow permissions", and activate the checkbox "Allow GitHub Actions to create and approve pull requests."

Additionally, you also need to decide which type of prompts you want to use. "Prompts" are the instructions given to the language model to revise your manuscript. Basically, you can select 1) the default set of section-specific prompts already provided by the tool, or 2) a custom prompt that you provide. For 1), you can check this manuscript for a more detailed description of the section-specific prompts. These prompts are already provided, but they need to know the section of each of your Markdown files (for instance, if it is the abstract, or the introduction, etc.). For this, the tool will try to infer them from the file names automatically, and if this fails, the tool might not revise all of your files. In this case, you need to indicate the section of each file using the "section mapping" environment variable that is described here (read the header of the file for more instructions). For 2), you can provide your own custom prompt, which will be used for all the files regardless of their section. For example, instead of the more complex section-specific prompts in 1), you might just want to perform simpler revision tasks. An example of a custom prompt is "proofread the following paragraph". You can provide your custom prompt when you manually trigger the workflow by using the "Custom prompt" field. This could be more appropriate if you are testing different prompts. To set a fixed prompt for all runs, read the documentation here to set the "custom prompt" environment variable.

By default, the tool uses the model text-davinci-003, but you are encouraged to check the OpenAI documentation to see which models are available, which one is the most suitable for your manuscript, and whether our tool supports it. Make sure to check the pricing of the OpenAI API. With $0.02 per 1000 tokens using the most powerful AI models, the cost for a revision of a standard manuscript (around 35 paragraphs) should be around $0.50. The workflow allows specifying the branch and file names (in the content/ directory) to revise, the language model to use, and the output branch name. Internally, the workflow uses the tool Manubot AI Editor to revise the manuscript. For more advanced users, the behavior of the Manubot AI Editor or the parameters used for the language model can be changed using environment variables. These variables can be changed in the workflow file (ai-revision.yaml).

It is important to note that using language models in scientific writing is a matter of debate among researchers and journal editors. Therefore, it's advisable to follow the guidelines that journals and the research community propose. For example, the Nature journal has published rules about using language models in scholarly writing, such as not listing the tools as authors and documenting how they were used. Since a Manubot-based manuscript uses GitHub, one approach consists of linking the AI-generated pull request, which will transparently show the changes suggested by the AI tool.

Manubot feedback

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

Citing Manubot

To cite the Manubot project or for more information on its design and history, see @doi:10.1371/journal.pcbi.1007128:

Open collaborative writing with Manubot
Daniel S. Himmelstein, Vincent Rubinetti, David R. Slochower, Dongbo Hu, Venkat S. Malladi, Casey S. Greene, Anthony Gitter
PLOS Computational Biology (2019-06-24) https://doi.org/c7np
DOI: 10.1371/journal.pcbi.1007128 · PMID: 31233491

The Manubot version of this manuscript is available at https://greenelab.github.io/meta-review/.

To cite the Manubot AI Editor or for more information on its design, see @doi:10.1101/2023.01.21.525030:

A publishing infrastructure for AI-assisted academic authoring
Milton Pividori, Casey S. Greene
bioRxiv (2023) https://doi.org/grpf8m
DOI: 10.1101/2023.01.21.525030

Acknowledgments

We would like to thank the contributors and funders whose support makes the Manubot project possible. Specifically, Manubot development has been financially supported by: