|
| 1 | +# fortran-src JOSS paper submission |
| 2 | + |
| 3 | +## Building the PDF from `paper.md` |
| 4 | +With Docker, in your favourite shell (untested): |
| 5 | + |
| 6 | +``` |
| 7 | +docker run --rm -it \ |
| 8 | + -v $PWD:/data \ |
| 9 | + -u $(id -u):$(id -g) \ |
| 10 | + openjournals/inara \ |
| 11 | + -o pdf,crossref \ |
| 12 | + paper.md |
| 13 | +``` |
| 14 | + |
| 15 | +With podman, in the directory containing `paper.md`, in your favourite shell: |
| 16 | + |
| 17 | +``` |
| 18 | +podman run --volume .:/data --env JOURNAL=joss docker.io/openjournals/inara -o pdf,crossref ./paper.md |
| 19 | +``` |
| 20 | + |
| 21 | +(Note that the `joss` in `JOURNAL=joss` must be lowercase, at least on |
| 22 | +case-sensitive systems.) |
| 23 | + |
| 24 | +See https://github.com/openjournals/inara . |
| 25 | + |
| 26 | +## Resources |
| 27 | +Main guidelines: |
| 28 | +[Submitting a paper to JOSS](https://joss.readthedocs.io/en/latest/submitting.html) |
| 29 | + |
| 30 | +### Exemplar submissions |
| 31 | + * Paper: [Lots of direct usage examples] |
| 32 | + (https://joss.theoj.org/papers/10.21105/joss.04053) |
| 33 | + (Kamodo, Python, space weather data exploration) |
| 34 | + * Paper: [Text- and reference-heavy] |
| 35 | + (https://joss.theoj.org/papers/10.21105/joss.04205) |
| 36 | + (swyft, Python, ML estimation technique) |
| 37 | + * Paper: [Short & sweet] |
| 38 | + (https://joss.theoj.org/papers/10.21105/joss.04592) |
| 39 | + (SimSGamE, Python, modelling task scheduling in game engines) |
| 40 | + * Paper: [Long with everything] |
| 41 | + (https://joss.theoj.org/papers/10.21105/joss.04568) |
| 42 | + (CWInPy, Python, inference on signals from pulsar stars) |
| 43 | + * Paper: [Long with everything II] |
| 44 | + (https://joss.theoj.org/papers/10.21105/joss.03742) |
| 45 | + (OpenCMP, Python, various simulation inc. fluid dynamics) |
| 46 | + * Review: [With long reviewer checklist] |
| 47 | + (https://github.com/openjournals/joss-reviews/issues/3392) |
0 commit comments