https://github.com/databio/sciquill
Author academic documents in markdown
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.7%) to scientific vocabulary
Keywords
Repository
Author academic documents in markdown
Basic Info
- Host: GitHub
- Owner: databio
- Language: TeX
- Default Branch: master
- Homepage: http://sciquill.databio.org
- Size: 2.6 MB
Statistics
- Stars: 12
- Watchers: 7
- Forks: 5
- Open Issues: 4
- Releases: 1
Topics
Metadata Files
README.md
Sciquill is an academic publishing system. It helps to author academic documents using markdown and YAML. Document types include grants, papers, biosketches, CVs, dissertations, letters... anything you might want to write in markdown, really.
Sciquill is more of a publishing philosophy than a piece of software. It contains some scripts to glue together various stages of the authoring pipeline, but primarily it relies on existing tools, notably, pandoc, inkscape, and markmeld. It provides templates, styles, workflows, and scripts that make it simple to go from markdown text and structured YAML data to beautiful PDF or other outputs, all from inside GitHub or your local computer.
Sciquill brings us closer to the goal of authoring all types of scientific documents in markdown to completely separate content from style.
For more information, see the sciquill documentation.
Description of repository
This repository contains:
- tex_templates - a collection of tex templates for, e.g. NIH grants.
- tex_utilities - some bonus tex software to do things like add page numbers to an existing PDF
- bin - Small scripted utilities to build figures, extract bibliographies, suppress page numbers, merge PDFs, select versions of grant source files, etc. Documented in /bin/README.md.
- csl - Contains some citation styles, which are derived from the citationstyles project repository, or from Zotero collection (https://github.com/citation-style-language/styles); it's the set of styles I use frequently, with some possible additions or adjustments for particular things I need. You can use any style from that repository or define your own
- docx_templates - Word document templates for different grant agencies. To be used in YAML RMarkdown header as
output:
word_document:
reference_docx: styles.doc/NSF_grant_style.docx
Separate citation lists (how to separate bibliography into its own file)
By default, pandoc will include your references cited just right at the end of the document. That works for some grants, but others want a separate reference document. To accommodate this, we need to do 2 things: 1) make a bibliography-only file; 2) suppress the bibliography in the main file.
- make a bibliography-only file
I wrote a script that does this: bin/getrefs
You can run getrefs on your markdown files, and pipe the results to pandoc:
getrefs document.md | pandoc ...
However, this will also include any commented references, which is probably
not what you want. So, there's a more complicated recipe in the
mediabuilder.make Makefile called refs that will do this for you. It looks like this:
```
Requires pandoc 2 with --strip-comments implemented
refsnocomment:
pandoc --strip-comments -t markdown `$(mbin)/ver src/specificaims\
$(mbin)/ver src/significanceinnovation\
$(mbin)/ver src/aim1$(mbin)/ver src/aim2$(mbin)/ver src/aim3` | \
$(mbin)/getrefs | \
pandoc -o output/references.pdf $(PANDOCFLAGS)
```
- Suppress the bibliography in the main
.mdfiles.
One way to do this is to use a csl file that doesn't have a style for a
bibliography. I don't like that, though, because it requires mucking around with
style files, and you may want to produce a document with the bibliography some
time. The better alternative is this: In the file itself, put in a yaml header:
```{yaml}
suppress-bibliography: True
```
Or, I also wrote a little helper script that will do this for you on-the-fly:
bin/nobib. Use it like getrefs:
$(mbin)/nobib file.md | \
pandoc \
-o output/approach.pdf \
That will suppress the bibliography in the output. Done!
Owner
- Name: Databio
- Login: databio
- Kind: organization
- Location: University of Virginia
- Website: https://databio.org
- Repositories: 88
- Profile: https://github.com/databio
Solving problems in computational biology
GitHub Events
Total
- Push event: 9
- Pull request event: 1
Last Year
- Push event: 9
- Pull request event: 1
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 8
- Total pull requests: 5
- Average time to close issues: 28 days
- Average time to close pull requests: about 1 month
- Total issue authors: 5
- Total pull request authors: 4
- Average comments per issue: 1.25
- Average comments per pull request: 0.6
- Merged pull requests: 4
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 1
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- zmbc (2)
- nsheff (2)
- fkohrt (1)
- jpsmith5 (1)
- dacbarbosa (1)
Pull Request Authors
- aakrosh (2)
- nleroy917 (2)
- mdozmorov (1)
- alonzi (1)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- databio/sciquill * docker