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

Add Science Template #486

Open
wants to merge 40 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 35 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
a696710
basic template functionality with science_article function
christopherkenny Jul 11, 2021
c756e22
figure movement
christopherkenny Jul 11, 2021
878f4c2
fix appendix moving
christopherkenny Jul 11, 2021
db5604c
apostrophe -> quote style
christopherkenny Jul 12, 2021
00c6912
clean up latex packages
christopherkenny Jul 12, 2021
299c385
match updated rules
christopherkenny Jul 12, 2021
fa17090
remove yaml warning
christopherkenny Jul 12, 2021
abb04b3
Better look for titlepage
kuriwaki Jul 12, 2021
aca3bd6
Merge pull request #1 from kuriwaki/master
christopherkenny Jul 12, 2021
db4e072
make moving optional
christopherkenny Jul 13, 2021
4b7e060
fix fonts & begin adding `draft` argument
christopherkenny Aug 1, 2021
0bb9f56
small fixes
christopherkenny Aug 1, 2021
9fc2ec1
up etal number to meet updated guidelines
christopherkenny Aug 1, 2021
aa1206d
don't split appendix if it doesn't exist
christopherkenny Aug 1, 2021
ae77da7
extra command
christopherkenny Aug 2, 2021
56b9ade
Update science_article.R
christopherkenny Aug 2, 2021
99903ff
automate figure copying
christopherkenny Aug 2, 2021
09e138b
Update science_article.R
christopherkenny Aug 2, 2021
9169285
Science Advances instructed to _not_ put a acknowledgement as footnot…
kuriwaki Sep 11, 2021
490c990
Merge branch 'christopherkenny:master' into master
kuriwaki Sep 11, 2021
c807f00
Merge branch 'master' of https://github.com/rstudio/rticles into rstu…
christopherkenny Sep 15, 2021
d4c83c4
fix
christopherkenny Sep 15, 2021
f54eab4
Merge branch 'rstudio:master' into master
christopherkenny Sep 21, 2021
98c10cb
Merge pull request #2 from kuriwaki/master
christopherkenny Sep 21, 2021
f60d19b
Merge branch 'rstudio:master' into master
christopherkenny Dec 20, 2021
f72bacd
Merge branch 'rstudio:main' into master
christopherkenny May 1, 2022
d25281a
add acknowledgements back
christopherkenny May 1, 2022
440feb9
build rd
christopherkenny May 1, 2022
c66e675
copy fix from commit ea2ab0
christopherkenny May 1, 2022
a7c698a
remove excess bib entries
christopherkenny May 1, 2022
d9b5f92
readme and news
christopherkenny May 1, 2022
036eb89
Update README.Rmd
christopherkenny May 1, 2022
691bb4c
add authors
christopherkenny May 3, 2022
58e5fde
Merge branch 'rstudio:main' into master
christopherkenny Aug 11, 2022
610f6e2
template no longer uses helv, update to times
christopherkenny Aug 13, 2022
064ea04
Update R/science_article.R
christopherkenny Jul 1, 2023
80af06b
Update R/science_article.R
christopherkenny Jul 1, 2023
9cb7f47
Update R/science_article.R
christopherkenny Jul 1, 2023
255ff21
Update R/science_article.R
christopherkenny Jul 1, 2023
fbf27e8
Update R/science_article.R
christopherkenny Jul 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@ Authors@R: c(
person("Dmytro", "Perepolkin", , "[email protected]", role = "ctb",
comment = c(ORCID = "0000-0001-8558-6183", github = "dmi3kno")),
person("Tom", "Palmer", , "[email protected]", role = "ctb",
comment = c(ORCID = "0000-0003-4655-4511", github = "remlapmot"))
comment = c(ORCID = "0000-0003-4655-4511", github = "remlapmot")),
person("Christopher T.", "Kenny", , "[email protected]", role = "ctb",
comment = c(ORCID = "0000-0002-9386-6860", github = "christopherkenny")),
person("Shiro", "Kuriwaki", , "[email protected]", role = "ctb",
comment = c(ORCID = "0000-0002-5687-2647", github = "kuriwaki"))
)
Description: A suite of custom R Markdown formats and templates for
authoring journal articles and conference submissions.
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export(rjournal_article)
export(rsos_article)
export(rss_article)
export(sage_article)
export(science_article)
export(sim_article)
export(springer_article)
export(tf_article)
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@

- New `isba_article()` template for submissions to Bayesian Analysis journal (thanks, @dmi3kno, #461).

- New `science_article()` template for submissions to Science journal (thanks, @christopherkenny, @kuriwaki, #486).

## MINOR CHANGES

- Update Copernicus Publications template to version 6.6 from 2022-01-18 (@RLumSK, #463, #464).
Expand Down