A citation manager for the diSimplex projects which understands our NikolaBase citation system.
-
capture to capture raw RIS formatted citation from Zotero/BibItNow into our new style database.
-
scanner to scan one or more (LaTeX) *.aux files for a list of citations. The scanner creates a BibTeX file for use by bibtex/latex for a given project.
-
websiteBuilder to export our internal new style database into external static HTML website. (Create an external version which only contains a sub-site specified by a simple list of citations (and their associated authors))
-
Extract "bib" item from our citation bank
-
Use Jinja2 or Pybtex! to format into a specific bbl (or bib) format.
-
use Zotero and/or bibitnow to capture a reference from a give webpage.
-
Copy the reference in RIS format from Zotero and/or bibitnow into our own NiceGUI based tool to add into our own database. We can adjust the reference information (citeKey) to suit our needs in the NiceGUI editor before saving.
Our reference database will be:
-
A primary collection of author and citation YAML databases (more than one author/citation per file). This will be a collection of human readable text files which can be version controlled.
We will need a mapping from RIS to our form of YAML (possibly a 1-1 mapping).
-
A primary collection of author/citation Markdown files containing extra RIS notes. The markdown files will be named using the primary collection's keys.
-
A secondary SQLite3 database (re)built from the primary collection, used for searching for existing matching authors and/or citations.
Notes: the primary collections will have a multiple directory structure using the first two characters of each author/citation keys.
We will using Jinja2 templates to expand our reference database into a collection of static HTML files to be used as our online reference system.
We can have two different "versions" of the templates to provide an external as well as an internal variant.
-
build a (sorted) .bib file from our reference system (our own python script)
-
create a .bbl file from our .bib file (bibtex (no utf-8) or bibulous(python) (utf-8)?)
-
use natbib/amsref/raw-bbl-file
-
Start using Zotero/bibItNow.
Need to create an ultra simple NiceGui capture tool, possibly simply saving the raw RIS as a file for each citation.
-
Write collector to collect our existing data from old citation system and transform into new style database.
-
Merge recently captured citations into new style database.
-
Expand NiceGui capture tool to use new style database.
-
natbib (does not create a "Mathematical" citation)
-
amsref (Not used by TAC, not allowed in ACM, but is probably allowed in AMS journals; this is the format used in most mathematical citations)
-
MrTango/rispy: Python RIS files parser, provides RIS files as dictionary via generator.
-
Pybtex can be used to create a .bbl which can then be included in most journals
-
pybtexris: A pybtex plugin for inputting and outputting RIS files
-
nicegui: Create web-based user interfaces with Python. The nice way.
-
how easy would it be to combine our own python script with parts from pybtex/pybtexris/rispy?
-
how easy would it be to hand-translate an existing .bst file to a pybtex style file?