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

Josis #382

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open

Josis #382

Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ Authors@R: c(
person("Greg", "Macfarlane", role = c("ctb"), email = "[email protected]", comment = c(github = "gregmacfarlane")),
person("Matthias", "Templ", role = c("ctb"), email = "[email protected]", comment = c(ORCID = "0000-0002-8638-5276", github = "matthias-da")),
person("Alvaro", "Uzaheta", role = c("ctb"), email = "[email protected]", comment = c(github = "auzaheta")),
person("JooYoung", "Seo", role=c("ctb"), email="[email protected]", comment = c(ORCID = "0000-0002-4064-6012"))
person("JooYoung", "Seo", role=c("ctb"), email="[email protected]", comment = c(ORCID = "0000-0002-4064-6012")),
person("Robin", "Lovelace", role = c("ctb"), email = "[email protected]", comment = c(github = "robinlovelace"))
)
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 @@ -22,6 +22,7 @@ export(ieee_article)
export(ims_article)
export(jasa_article)
export(jedm_article)
export(josis_article)
export(joss_article)
export(journals)
export(jss_article)
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

- Add `trb_article()` for annual meeting submissions to the Transportation Research Board Annual Meeting (thanks, @gregmacfarlane, #427).

- New template `josis_article()` for the Journal of Spatial Information Science (thanks, @Robinlovelace, #382)

# rticles 0.21

## NEW FEATURES
Expand Down
11 changes: 11 additions & 0 deletions R/article.R
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,17 @@ jasa_article <- function(
)
}

#' @section `josis_article`: Format for creating submissions to the
#' Journal of Spatial Information Science. Adapted from
#' \samp{https://www.overleaf.com/latex/templates/journal-of-spatial-information-science-template/bmdhbgxnhtqx}.
#' @export
#' @rdname article
josis_article <- function(..., keep_tex = TRUE, citation_package = 'default') {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See commend about bibliography in template: I believe it should be natbib here not default

pdf_document_format(
"josis", keep_tex = keep_tex, citation_package = citation_package, ...
)
}

#' @section `lipics_article`: Format for creating submissions to
#' LIPIcs - Leibniz International Proceedings Informatics - articles.
#' Adapted from the official Instructions for Authors at
Expand Down
1 change: 1 addition & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ Currently included templates and their contributors are the following:
| [IEEE Transaction](http://www.ieee.org/publications_standards/publications/authors/author_templates.html) | [\@Emaasit](https://github.com/Emaasit), [\@espinielli](https://github.com/espinielli), [\@nathanweeks](https://github.com/nathanweeks), [\@DunLug](https://github.com/DunLug) | [\#97](https://github.com/rstudio/rticles/pull/97), [\#169](https://github.com/rstudio/rticles/pull/169), [\#227](https://github.com/rstudio/rticles/pull/227), [\#263](https://github.com/rstudio/rticles/pull/263), [\#264](https://github.com/rstudio/rticles/pull/264), [\#265](https://github.com/rstudio/rticles/pull/265) | `ieee_article()` |
| [IMS: Institute of Mathematical Statistics](https://imstat.org/) [AoAS: Annals of Applied Statistics](https://imstat.org/journals-and-publications/annals-of-applied-statistics/) | [\@auzaheta](https://github.com/auzaheta)| [\#372](https://github.com/rstudio/rticles/pull/372) | `ims_article()`|
| [JASA: Journal of the Acoustical Society of America](https://asa.scitation.org/journal/jas) | [\@stefanocoretta](https://github.com/stefanocoretta)| [\#364](https://github.com/rstudio/rticles/pull/364) | `jasa_article()` |
| [JOSIS: Journal of Spatial Information Science](http://www.josis.org/index.php/josis) | [@robinlovelace](https://github.com/robinlovelace) | [#382](https://github.com/rstudio/rticles/pull/382) | `josis_article()` |
| [Journal of Educational Data Mining](https://jedm.educationaldatamining.org/index.php/JEDM/about/submissions) journal submissions | [\@jooyoungseo](https://github.com/jooyoungseo) | [#251](https://github.com/rstudio/rticles/pull/251) | `jedm_article()` |
| [JOSS: Journal of Open Source Software](https://joss.theoj.org/) [JOSE: Journal of Open Source Education](https://jose.theoj.org/)| [\@noamross](https://github.com/noamross)| [\#229](https://github.com/rstudio/rticles/pull/229) | `joss_article()` |
| [JSS: Journal of Statistical Software](https://www.jstatsoft.org) ||| `jss_article()`|
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ Currently included templates and their contributors are the following:
| [IEEE Transaction](http://www.ieee.org/publications_standards/publications/authors/author_templates.html) | [@Emaasit](https://github.com/Emaasit), [@espinielli](https://github.com/espinielli), [@nathanweeks](https://github.com/nathanweeks), [@DunLug](https://github.com/DunLug) | [#97](https://github.com/rstudio/rticles/pull/97), [#169](https://github.com/rstudio/rticles/pull/169), [#227](https://github.com/rstudio/rticles/pull/227), [#263](https://github.com/rstudio/rticles/pull/263), [#264](https://github.com/rstudio/rticles/pull/264), [#265](https://github.com/rstudio/rticles/pull/265) | `ieee_article()` |
| [IMS: Institute of Mathematical Statistics](https://imstat.org/) [AoAS: Annals of Applied Statistics](https://imstat.org/journals-and-publications/annals-of-applied-statistics/) | [@auzaheta](https://github.com/auzaheta) | [#372](https://github.com/rstudio/rticles/pull/372) | `ims_article()` |
| [JASA: Journal of the Acoustical Society of America](https://asa.scitation.org/journal/jas) | [@stefanocoretta](https://github.com/stefanocoretta) | [#364](https://github.com/rstudio/rticles/pull/364) | `jasa_article()` |
| [JOSIS: Journal of Spatial Information Science](http://www.josis.org/index.php/josis) | [@robinlovelace](https://github.com/robinlovelace) | [#382](https://github.com/rstudio/rticles/pull/382) | `josis_article()` |
| [Journal of Educational Data Mining](https://jedm.educationaldatamining.org/index.php/JEDM/about/submissions) journal submissions | [@jooyoungseo](https://github.com/jooyoungseo) | [#251](https://github.com/rstudio/rticles/pull/251) | `jedm_article()` |
| [JOSS: Journal of Open Source Software](https://joss.theoj.org/) [JOSE: Journal of Open Source Education](https://jose.theoj.org/) | [@noamross](https://github.com/noamross) | [#229](https://github.com/rstudio/rticles/pull/229) | `joss_article()` |
| [JSS: Journal of Statistical Software](https://www.jstatsoft.org) | | | `jss_article()` |
Expand Down
180 changes: 180 additions & 0 deletions Untitled/Untitled.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,180 @@
---
title: "Long Title for JOSIS Article"
runningtitle: "Short Title for JOSIS Article"
output: rticles::josis_article
# to use bookdown cross references
# output:
# bookdown::pdf_book:
# base_format: rticles::josis_article
author:
- name: Alice Anonymous
email: [email protected]
affiliation: Some Institute of Technology
- name: Bob Security
email: [email protected]
affiliation: Another University
keywords: "add, five, to, ten, comma, separated, keywords"
abstract: "Add your article abstract here,
150-250 words."
bibliography: josisexample.bib
---

<!-- Created thanks to guidance at -->
<!-- https://github.com/rstudio/rticles/blob/master/.github/PULL_REQUEST_TEMPLATE.md -->

# Introduction

This template provides a guide to formatting articles for submission to the Journal of Spatial Information Science, JOSIS, \burl{http://josis.org}. When preparing an article for submission, please follow this template closely, referring to past JOSIS articles (open access on the JOSIS web site) for further examples.

# RMarkdown

The template can handle bullet points:

- a
- b

And tables (see Table \@ref(tab:t1)):

```{r t1}
knitr::kable(head(mtcars), caption = "Test", booktabs = TRUE)
```

You can use concise citation syntax, e.g. [@champion11].

# Author guidelines



\subsection{Manuscript preparation}
Manuscripts must be written in English in a clear, direct, and active style. All pages must be numbered sequentially. The manuscript should be submitted as a PDF file based on this \LaTeX template.

\subsection{Title}
The title should be concise, and must not be more than 20 words. Authors should also provide a short ``running title.''

\subsection{Authors and institutional affiliations}
Authors are required to provide their full names and their institutional affiliations, omitting postal addresses.

\subsection{Abstract}
The abstract should summarize the essential features of the article, and must not exceed 250 words for full papers. Abbreviations should be avoided in the abstract, and references should not be cited in the abstract.

\subsection{Keywords}
Your submission must include between five and ten keywords for your article. Accepted manuscripts must additionally specify further index terms as appropriate.

\subsection{Main Text}
The main text should be divided into separate sections, and may be further subdivided according to the areas to be discussed. The manuscript style must be uniform throughout the text using 11pt Palatino font. The first appearance of any abbreviations in the text should be preceded by the full term, unless it is a standard abbreviation or unit of measurement. Reference numbers should be given in square brackets in the text. Common or assimilated words from Latin or other languages should not be italicized, including per se, et al.

\subsection{Style}

Many examples of the journal style can be seen in existing JOSIS published articles, \url{http://josis.org}. Please pay particular attention to the following style requirements:

\begin{itemize}
\item Spelling: Please use standard American English spelling throughout.
\item Punctuation: JOSIS uses standard American English punctuation. In
particular, please ensure:
\begin{itemize}
\item all lists items are always separated by
punctuation (e.g., ``a, b, and c'' but not ``a, b and c''); and
\item commas and periods always appear inside quotation marks (e.g., ``x, y, and z.'' but not ``x, y, and z''.).
\end{itemize}
\item Capitalization: JOSIS style is to only use capitals only for the
beginning of sentences, proper nouns, names (e.g., Norman, ArcMap) and,
where appropriate, acronyms (e.g., GIS). Please avoid capitalization of
other words (e.g., ``geographic information systems (GIS)'' but not
``Geographic Information Systems (GIS)'') and in titles, including section headings (e.g., ``Affordance-based individuation of junctions in Open Street Map" but not ``Affordance-Based Individuation of Junctions in Open Street Map'').
\end{itemize}


\subsection{Figures}
Figures and Tables must be numbered consecutively with a concise explanatory caption, and must be referred to in the main text with capitalized reference (e.g., ``Figure \ref{fig:1}'' or ``Table \ref{tab:1}''). Figures and Tables must appear in the text close to where they are first referred to in the main text. Figure and table captions come below the figure or table. Do not collect figures or tables together at the end of the article. Authors of accepted articles will need to supply high quality versions of all figures as separate .eps (encapsulated postscript) files.

<!-- \begin{figure}[tbh] -->
<!-- \centering -->
<!-- \includegraphics[width=\textwidth]{Figure1} -->
<!-- \caption{An illustrative figure, after \cite{huck15.JOSIS}.}\label{fig:1} -->
<!-- \end{figure} -->

```{r fig1, fig.cap="Illustrative figure."}
plot(1:9, (1:9)^2)
```


\begin{table}
\centering
\begin{tabular}{lrr}
\hline
Text column & Numerical column 1 & Numerical column 2\\
\hline
First row& 10 & 0.003\\
Second row& 52& 10.037\\
Third row& 729 & 150.315\\
...& ...& ...\\
\hline
\end{tabular}
\caption{Example table with preferred line rules and alignment.}\label{tab:1}
\end{table}

\subsection{Algorithms}

Algorithms should be formatted using standard algorithm packages where possible, as in Algorithm~\ref{alg:1}.

\begin{algorithm}[htb]
\caption{Example algorithm formatting after \cite{zhong16.IJGIS}} \label{alg:1}
\footnotesize
\begin{algorithmic} [1] % enter the algorithmic environment
\Require A finite set of two-dimensional points $P \subset \mathbb{R} \times \mathbb{R}$ and one parameter $\lambda \in \mathbb{R}$
\State Construct the Delaunay triangulation $DT(P)$ of $P$
\State $\Delta \gets DT(P)$
\State Construct the list $B$ of exterior edges of $DT(P)$
\State Sort the list $B$ in descending order of edge length
\State Initialize the $v\!-\!boundary$ function
\State Set the root ($r$) of $\mathbf{T}_{{\chi}}(P,\, \lambda)$ to be \{edge = $\emptyset$, oppositeVertex = $\emptyset$, length = $\emptyset$\}
\State Construct the list of parent nodes ($PN$) for the elements in $B$
\State Set each element in $PN$ to be $r$
\State $O(P,\, \lambda) \gets \emptyset$
\While{$B$ is not empty}
\State $e = \{d_1,\, d_2\} \gets$ pop($B$)
\State $p \gets$ pop($PN$)
\State $o \gets$ opposite vertex of $e$ in $\Delta$
\State $N \gets$ \{edge = $e$, oppositeVertex = $o$, length = $||e||$\}
\State Insert $N$ in $\mathbf{T}_{{\chi}}(P,\, \lambda)$ as a child of $p$
\State $node(d_1) \gets N$
\State $node(d_2) \gets N$
\State Append $N$ to $O(P,\, \lambda)$
\If{$||e|| > \lambda$ \textbf{and} $v\!-\!boundary(o) = false$}
\State Remove $e$ from $\Delta$
\State $v\!-\!boundary(o) = true$
\State Insert the arms of $e$ in $\Delta$ into $B$ in order of edge length
\State Insert $N$ into $PN$ at the corresponding position of the arms of $e$ in $B$
\EndIf
\EndWhile
\State \textbf{Return} $\chi(P,\, \lambda)$ formed by leaves of $\mathbf{T}_{{\chi}}(P,\, \lambda)$, $DT(P)$, $\mathbf{T}_{{\chi}}(P,\, \lambda)$ and $O(P,\, \lambda)$
\end{algorithmic}
\end{algorithm}

\subsection{Footnotes}
Footnotes are strongly discouraged in text. Where footnotes must be used, they should be numbered consecutively.

# References

References must be listed in the numerical system (ACM). Citations must be numbered sequentially [in square brackets] in the main text. Full numbered references must be listed in the reference section in alphabetical order. The reference numbers must be finalized and the bibliography must be fully formatted before submission. Examples of citation styles included in the bibliography for this document include journal articles \cite{overEtAl2010,arkin}, authored books \cite{bailey}, edited books \cite{miller09.BOOK}, articles in proceedings \cite{champion11}, articles in books or collections \cite{Grosso12}, theses \cite{ruas99}, technical reports \cite{blasertr}, and web resources \cite{web}.


\subsection{DOIs}

All JOSIS articles must list the DOI of all references, where a DOI exists, see
\url{http://josis.org/index.php/josis/about/submissions#authorGuidelines} for examples. Please check carefully to add the DOIs for cited references,
adding DOIs to all references that have one. DOIs may be added in the ``doi'' field of the bibtex file.

DOIs can be found via \url{http://www.crossref.org/guestquery/} as well as many
other search engines and publisher pages (e.g., Scopus, SpringerLink).


\section{About JOSIS}

The Journal of Spatial Information Science (JOSIS) is an international, interdisciplinary, open-access journal dedicated to publishing high-quality, original research articles in spatial information science. The journal aims to publish research spanning the theoretical foundations of spatial and geographical information science, through computation with geospatial information, to technologies for geographical information use.

JOSIS encourages submissions from topics including, but not limited to spatial and spatiotemporal information systems; computational geometry, geocomputation, spatial algorithms; geovisualization, cartography, and geographical user interfaces; computing with spatiotemporal information under uncertainty; spatial cognition and qualitative spatial reasoning; spatial data models and structures; conceptual models of space and geoontology; distributed and parallel spatial computing, web-based GIS, and interoperability; context- and location-aware computing; and applications to GIS, spatial databases, location-based services, geosensor networks, and geosensor web. The journal publishes full-length original research articles, as well as survey-style review papers. In addition, the journal publishes shorter articles in three sections: reports from community activities, letters to the editors, and book reviews.

\section*{Acknowledgments}

Acknowledgments appear in a separate unnumbered section before the bibliography. Please acknowledge anyone (individual/company/institution) who has contributed to the study, including substantial contributions to the conception, design, acquisition of data; analysis and interpretation of data; drafting the manuscript; or provided critical comments resulting in revisions to content. For each author, please list the source(s) of any funding or financial contributions related to the study.
Binary file added Untitled/Untitled.pdf
Binary file not shown.
Loading