Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First draft of paper.md for JOSS #53

Closed
wants to merge 40 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
2ea368c
Simplifying the history for the JOSS paper draft
tennlee May 22, 2024
e4b8c80
Adjustments to related works, testing PDF production
tennlee May 22, 2024
8d9d3ec
Citation correction
tennlee May 22, 2024
caa36f3
Update so that the bibtex label isn't also the DOI which was throwing…
tennlee May 22, 2024
9c08cbe
Add PyForecastTools to the related works section of the paper
tennlee May 22, 2024
b3d6fff
Improve clarify of the related works section of the paper
tennlee May 22, 2024
46daff9
Update docs/paper.md
tennlee May 22, 2024
4c4ad55
Update docs/paper.bib
tennlee May 22, 2024
4b7f9f1
Update docs/paper.md
tennlee May 22, 2024
70f2de0
Update docs/paper.md
tennlee May 22, 2024
8ef526b
Update docs/paper.md
tennlee May 22, 2024
f9e9f0a
Update docs/paper.md
tennlee May 22, 2024
3d33893
Remove Prob False Detection from list in table as duplicate of FAR
tennlee May 22, 2024
713f241
Adjust title and backticks
tennlee May 22, 2024
3c9e049
Re-introduce key benefits heading
tennlee May 22, 2024
1db3768
Add additional citations
tennlee May 22, 2024
3832856
Updates to the bibtex
tennlee May 22, 2024
453d76d
Add Brier citation
tennlee May 22, 2024
2d1e413
Citation tweaking
tennlee May 22, 2024
7ac45fa
Citation tweaking
tennlee May 22, 2024
c60675e
Update author list in paper
tennlee May 22, 2024
d855b0e
JOSS paper small tweaks (#417)
Steph-Chong May 22, 2024
e8f606c
Apply suggestions from code review
tennlee May 23, 2024
6678971
Update docs/paper.md
tennlee May 23, 2024
379db18
Capitalisation tweaks
tennlee May 23, 2024
baa1360
Introduce page break
tennlee May 23, 2024
f982bf4
Remove links to readthedocs. They are nonessential, and readthedocs i…
tennlee May 23, 2024
2f9281b
Responding to feedback from Beth
tennlee May 24, 2024
921e378
bibtex tweak
tennlee May 25, 2024
f4ad12f
Adjust order of affiliations to match order of contributors
tennlee May 25, 2024
5d919c2
fix citation
nicholasloveday May 26, 2024
41d4203
Adds Gilbert (1884) citation to JOSS paper (#421)
Steph-Chong May 30, 2024
054c56e
JOSS paper minor updates (#455)
Steph-Chong Jun 6, 2024
34c6ce6
Paper alternative for consideration following discussions (#480)
tennlee Jun 6, 2024
25e60e9
Response to feedback (#481)
tennlee Jun 7, 2024
a954411
Adjust acknowledgment
tennlee Jun 7, 2024
5af04a5
Joss paper add spatial category & SEDI (#492)
Steph-Chong Jun 9, 2024
f4419bd
Joss extends suggestion (#496)
tennlee Jun 9, 2024
ad1374a
Updates a bib entry and updates date in JOSS Paper (#525)
Steph-Chong Jun 12, 2024
afb80ee
Adjust spacing in bib file (non-rendered change)
tennlee Jun 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

on: [push]

jobs:
paper:
runs-on: ubuntu-latest
name: Paper Draft
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build draft PDF
uses: openjournals/openjournals-draft-action@master
with:
journal: joss
# This should be the path to the paper within your repo.
paper-path: docs/paper.md
- name: Upload
uses: actions/upload-artifact@v3
with:
name: paper
# This is the output path where Pandoc will write the compiled
# PDF. Note, this should be the same directory as the input
# paper.md
path: docs/paper.pdf

Loading
Loading