diff --git a/src/components/paper.js b/src/components/paper.js index fcab138c..48cf5ff5 100644 --- a/src/components/paper.js +++ b/src/components/paper.js @@ -47,9 +47,11 @@ export const Paper = ({ > View paper - - Article #{number} - + {number && ( + + Article #{number} + + )} diff --git a/src/data/papers-citing-parcels.ts b/src/data/papers-citing-parcels.ts index bb430ce0..7f4c1913 100644 --- a/src/data/papers-citing-parcels.ts +++ b/src/data/papers-citing-parcels.ts @@ -1,5 +1,6 @@ import { Paper } from '../types/papers' +// Which papers cite Parcels (NOTE: Add new elements to the bottom of the list) export const papersCitingParcels: Paper[] = [ { title: diff --git a/src/pages/papers-citing-parcels.js b/src/pages/papers-citing-parcels.js index 6657239f..06a2c4ea 100644 --- a/src/pages/papers-citing-parcels.js +++ b/src/pages/papers-citing-parcels.js @@ -1,102 +1,44 @@ import { Layout } from '@/components/layout' -import { - Box, - Container, - Heading, - Text, - Accordion, - Link, - List, - ListItem, -} from '@chakra-ui/react' +import { Box, Container, Heading, Text, Accordion } from '@chakra-ui/react' import { papersCitingParcels } from '@/data/papers-citing-parcels' import { Paper } from '@/components/paper' const HowToCite = () => { return ( - - The manuscript detailing the first release of Parcels, version 0.9, has - been published in{' '} - - Geoscientific Model Development - {' '} - and can be cited as: + + The preferred way to cite the latest version of Parcels in your + publications is to use the following reference: - - - - Lange, M and E van Sebille (2017) Parcels v0.9: prototyping a - Lagrangian Ocean Analysis framework for the petascale age. - Geoscientific Model Development, 10, 4175-4186.{' '} - - https://doi.org/10.5194/gmd-2017-167 - - - - - - The manuscript detailing version 2.0 of Parcels is available at{' '} - - Geoscientific Model Development - {' '} - and can be cited as: - - - - - Delandmeter, P and E van Sebille (2019) The Parcels v2.0 Lagrangian - framework: new field interpolation schemes. Geoscientific Model - Development, 12, 3571-3584.{' '} - - https://doi.org/10.5194/gmd-12-3571-2019 - - - - - - The manuscript detailing the performance of Parcels v2.4 is available at{' '} - - Computers & Geosciences - {' '} - and can be cited as: - - - - - Kehl, C, PD Nooteboom, MLA Kaandorp and E van Sebille (2023) - Efficiently simulating Lagrangian particles in large-scale ocean flows - — Data structures and their impact on geophysical applications, - Computers and Geosciences, 175, 105322.{' '} - - https://doi.org/10.1016/j.cageo.2023.105322 - - - + + + + Other papers that provide details about Parcels are: + + + + ) }