-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(methodology): Add citation section into methodology page
- Loading branch information
Showing
1 changed file
with
106 additions
and
1 deletion.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -593,10 +593,115 @@ function Methodology() { | |
<section className='content py-28'> | ||
<FormattedMessage id='app.methodo-contact' /> | ||
{' '} | ||
<a href='mailto:[email protected]'>[email protected]</a> | ||
<a href='mailto:[email protected]'> | ||
<FormattedMessage id='app.variations.email' /> | ||
</a> | ||
. | ||
</section> | ||
</Container> | ||
<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: | ||
{' '} | ||
<a | ||
href='https://doi.org/10.4000/proceedings.elpub.2019.20' | ||
target='_blank' | ||
rel='noreferrer' | ||
> | ||
10.4000/proceedings.elpub.2019.20 | ||
</a> | ||
</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: | ||
{' '} | ||
<a | ||
href='https://arxiv.org/abs/2110.01958' | ||
target='_blank' | ||
rel='noreferrer' | ||
> | ||
2110.01958 | ||
</a> | ||
{' '} | ||
; hal: | ||
{' '} | ||
<a | ||
href='https://hal.science/hal-03365806' | ||
target='_blank' | ||
rel='noreferrer' | ||
> | ||
hal-03365806 | ||
</a> | ||
</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: | ||
{' '} | ||
<a | ||
href='https://hal.science/hal-03651518' | ||
target='_blank' | ||
rel='noreferrer' | ||
> | ||
hal-03651518 | ||
</a> | ||
</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: | ||
{' '} | ||
<a | ||
href='https://hal.science/hal-04121339' | ||
target='_blank' | ||
rel='noreferrer' | ||
> | ||
hal-04121339 | ||
</a> | ||
</p> | ||
</Col> | ||
</section> | ||
</Row> | ||
</section> | ||
</Container> | ||
</> | ||
); | ||
} | ||
|