-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac985f7
commit 8f7210f
Showing
17 changed files
with
236 additions
and
65 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
import { Col, Container, Row } from '@dataesr/react-dsfr'; | ||
import React from 'react'; | ||
import { FormattedMessage } from 'react-intl'; | ||
|
||
import Banner from '../../../components/Banner'; | ||
import Icon from '../../../components/Icon'; | ||
|
||
function Citation() { | ||
const renderIcons = ( | ||
<Row justifyContent='center' alignItems='middle' gutters> | ||
<Col n='12'> | ||
<Icon | ||
name='icon-bsso-23' | ||
color1='blue-soft-125' | ||
color2='blue-soft-75' | ||
/> | ||
</Col> | ||
</Row> | ||
); | ||
return ( | ||
<div className='opendata'> | ||
<Banner | ||
backgroundColor='blue-soft-50' | ||
textColor='blue-dark-150' | ||
supTitle={<FormattedMessage id='app.header.title' />} | ||
title={<FormattedMessage id='app.header.nav.citation' />} | ||
icons={renderIcons} | ||
/> | ||
<Container> | ||
<section className='color-blue-dark-125 content py-48'> | ||
<Row gutters> | ||
<section className='content py-4'> | ||
<h3> | ||
<FormattedMessage id='app.citation.all' /> | ||
</h3> | ||
</section> | ||
<section className='content py-4'> | ||
<Col n='12 lg-10'> | ||
<strong> | ||
<FormattedMessage id='app.citation1' /> | ||
</strong> | ||
<p> | ||
Eric Jeangirard. Monitoring Open Access at a national level: | ||
French case study. ELPUB 2019 23rd edition of the | ||
International Conference on Electronic Publishing, Jun 2019, | ||
Marseille, France. doi: 10.4000/proceedings.elpub.2019.20 | ||
{' '} | ||
</p> | ||
</Col> | ||
</section> | ||
<section className='content py-4'> | ||
<Col n='12 lg-10'> | ||
<strong> | ||
<FormattedMessage id='app.citation2' /> | ||
</strong> | ||
<p> | ||
Anne L'Hôte, Eric Jeangirard. Using Elasticsearch for entity | ||
recognition in affiliation disambiguation. 2021, | ||
arXiv:2110.01958 ; hal: hal-03365806 | ||
{' '} | ||
</p> | ||
</Col> | ||
</section> | ||
<section className='content py-4'> | ||
<Col n='12 lg-10'> | ||
<strong> | ||
<FormattedMessage id='app.citation3' /> | ||
</strong> | ||
<p> | ||
Laetitia Bracco, Anne L'Hôte, Eric Jeangirard, Didier Torny. | ||
Extending the open monitoring of open science: A new framework | ||
for the French Open Science Monitor (BSO). 2022. hal: | ||
hal-03651518 | ||
</p> | ||
</Col> | ||
</section> | ||
<section className='content py-4'> | ||
<Col n='12 lg-10'> | ||
<strong> | ||
<FormattedMessage id='app.citation4' /> | ||
</strong> | ||
<p> | ||
Aricia Bassinet, Laetitia Bracco, Anne L'Hôte, Eric | ||
Jeangirard, Patrice Lopez, et al.. Large-scale | ||
Machine-Learning analysis of scientific PDF for monitoring the | ||
production and the openness of research data and software in | ||
France. 2023. hal: hal-04121339v3 | ||
</p> | ||
</Col> | ||
</section> | ||
</Row> | ||
</section> | ||
</Container> | ||
</div> | ||
); | ||
} | ||
|
||
export default Citation; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
import './style.scss'; | ||
|
||
import { Col, Container, Row } from '@dataesr/react-dsfr'; | ||
import { Col, Container, Link as DSLink, Row } from '@dataesr/react-dsfr'; | ||
import { FormattedMessage, useIntl } from 'react-intl'; | ||
|
||
import Banner from '../../../components/Banner'; | ||
import Icon from '../../../components/Icon'; | ||
import { isInProduction } from '../../../utils/helpers'; | ||
import useLang from '../../../utils/Hooks/useLang'; | ||
|
||
function Methodology() { | ||
const intl = useIntl(); | ||
const { lang } = useLang(); | ||
|
||
const renderIcons = ( | ||
<Row justifyContent='center' alignItems='middle' gutters className='mb-32'> | ||
|
@@ -24,6 +26,64 @@ function Methodology() { | |
|
||
return ( | ||
<> | ||
<Container> | ||
<section className='content py-48'> | ||
<Row gutters> | ||
<Col n='12 md-6 lg-6'> | ||
<h4 className='marianne-bold fs-24-32'> | ||
<FormattedMessage id='app.methodologie.publication' /> | ||
</h4> | ||
<div> | ||
<DSLink | ||
href='/assets/methodologie_publications_fr.pdf' | ||
target='_blank' | ||
> | ||
<FormattedMessage id='app.methodologie.publication.description-fr' /> | ||
</DSLink> | ||
</div> | ||
<div> | ||
<DSLink | ||
href='assets/methodologie_publications_en.pdf' | ||
target='_blank' | ||
> | ||
<FormattedMessage id='app.methodologie.publication.description-en' /> | ||
</DSLink> | ||
</div> | ||
<img | ||
src={`/assets/methodologie_publications_${lang}.png`} | ||
alt='flyer bso' | ||
className='w-100 flex img-fluid w-100 ds-fr--v-middle' | ||
/> | ||
</Col> | ||
<Col n='12 md-6 lg-6'> | ||
<h4 className='marianne-bold fs-24-32'> | ||
<FormattedMessage id='app.methodologie.data_software' /> | ||
</h4> | ||
<div> | ||
<DSLink | ||
href='/assets/methodologie_data_software_fr.pdf' | ||
target='_blank' | ||
> | ||
<FormattedMessage id='app.methodologie.data_software.description-fr' /> | ||
</DSLink> | ||
</div> | ||
<div> | ||
<DSLink | ||
href='/assets/methodologie_data_software_en.pdf' | ||
target='_blank' | ||
> | ||
<FormattedMessage id='app.methodologie.data_software.description-en' /> | ||
</DSLink> | ||
</div> | ||
<img | ||
src={`/assets/methodologie_data_software_${lang}.png`} | ||
alt='flyer resultats bso' | ||
className='w-100 flex img-fluid w-100 ds-fr--v-middle' | ||
/> | ||
</Col> | ||
</Row> | ||
</section> | ||
</Container> | ||
{!isInProduction() && ( | ||
<div className='color-blue-soft-175 methodology'> | ||
<Banner | ||
|
@@ -516,69 +576,31 @@ function Methodology() { | |
} | ||
icons={renderIcons} | ||
/> | ||
<Container> | ||
<section className='content py-48'> | ||
<Row gutters> | ||
<Col n='12 lg-8'> | ||
<FormattedMessage id='app.methodo-bso3-intro' /> | ||
<br /> | ||
{' '} | ||
<a | ||
href='https://hal.science/hal-04121339' | ||
target='_blank' | ||
rel='noreferrer' | ||
className='external_link' | ||
> | ||
Large-scale Machine-Learning analysis of scientific PDF for | ||
monitoring the production and the openness of research data | ||
and software in France | ||
</a> | ||
{' '} | ||
<br /> | ||
<br /> | ||
<hr /> | ||
<br /> | ||
<a | ||
href='/assets/dmp.pdf' | ||
target='_blank' | ||
rel='noreferrer' | ||
className='external_link' | ||
> | ||
<FormattedMessage id='app.methodo-bso3-dmp' /> | ||
</a> | ||
<br /> | ||
<br /> | ||
<hr /> | ||
<br /> | ||
<FormattedMessage id='app.methodo-publi-intro' /> | ||
<br /> | ||
{' '} | ||
<a | ||
href='https://hal.archives-ouvertes.fr/hal-03651518' | ||
target='_blank' | ||
rel='noreferrer' | ||
className='external_link' | ||
> | ||
Extending the open monitoring of open science: A new | ||
framework for the French Open Science Monitor (BSO) | ||
</a> | ||
{' '} | ||
<br /> | ||
<br /> | ||
<hr /> | ||
<br /> | ||
<FormattedMessage id='app.methodo-contact' /> | ||
{' '} | ||
<a href='mailto:[email protected]'> | ||
[email protected] | ||
</a> | ||
. | ||
</Col> | ||
</Row> | ||
</section> | ||
</Container> | ||
</div> | ||
)} | ||
<Container> | ||
<section className='content py-28'> | ||
<Row gutters> | ||
<Col n='12 lg-8'> | ||
<a | ||
href='/assets/dmp.pdf' | ||
target='_blank' | ||
rel='noreferrer' | ||
className='external_link' | ||
> | ||
<FormattedMessage id='app.methodo-bso3-dmp' /> | ||
</a> | ||
</Col> | ||
</Row> | ||
</section> | ||
<hr /> | ||
<section className='content py-28'> | ||
<FormattedMessage id='app.methodo-contact' /> | ||
{' '} | ||
<a href='mailto:[email protected]'>[email protected]</a> | ||
. | ||
</section> | ||
</Container> | ||
</> | ||
); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.