Coder Social home page Coder Social logo

journal-issues's Introduction

journal-issues

Published as:

Burns, C.S. (2023). The issues with journal issues: Let journals be digital libraries. Publications, 11(1). https://doi.org/10.3390/publications11010007 Preprint: https://doi.org/10.48550/arXiv.2301.00832

This repo contains a manuscript on journal issues, digital affordances, and open science that was submitted to the journal Publications as part of a 10th anniversary special issue of that journal.

The manuscript is written in Markdown. Citations are added using the ZotCite Vim plugin and Zotero.

The Markdown file is converted to HTML and to ODT files using Pandoc. I wrote the following Bash functions to make the conversion to APA formatted documents.

To convert to HTML in APA style:

#!/usr/bin/bash

# Date: 2022-3-14
# Convert a markdown file into an APA formatted file. 
# To be used with the Zotcite plugin for Zotero and Vim 

makeapa () {
  local sourcefile="$1"
  local zotfile="${HOME}/.vim/plugged/zotcite/python3/zotref.py"
  local apafile="${HOME}/Zotero/styles/apa.csl"
  pandoc "${sourcefile}" -s -o \
    "$(basename -s md "$sourcefile")"html -F\
    "${zotfile}" --citeproc --csl "${apafile}"
}

makeapa "$@"

To convert to ODT in APA style:

#!/usr/bin/bash

# Date: 2022-3-14
# Convert a markdown file into an APA formatted file. 
# To be used with the Zotcite plugin for Zotero and Vim 

makeapa () {
  local sourcefile="$1"
  local zotfile="${HOME}/.vim/plugged/zotcite/python3/zotref.py"
  local apafile="${HOME}/Zotero/styles/apa.csl"
  pandoc "${sourcefile}" -s -o \
    "$(basename -s md "$sourcefile")"odt -F\
    "${zotfile}" --citeproc --csl "${apafile}"
}
makeapa "$@"

journal-issues's People

Contributors

cseanburns avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.