-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
75 lines (65 loc) · 4.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<title>Scientific Paper of the Future</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-brown.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
//load the parts of the page that are always the same across the portal
$("#footerContent").load("footer.html");
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118863115-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-118863115-2');
</script>
<style>
.selected{
background-color:#8c6868 ;
}
</style>
<body>
<header class="w3-container w3-theme w3-padding w3-center" id="topMenu">
<div class="w3-container">
<div class="w3-quarter w3-container w3-padding-8">
<a href="index.html"><img src="images/spflogo_1.png" width="80" style="float:right"/></a>
</div>
<div class="w3-half w3-container">
<h2>The Scientific Paper of the Future Initiative</h2>
</div>
</div>
<div class="w3-center">
<div class="w3-bar w3-theme">
<a href="index.html" class="w3-bar-item w3-button w3-padding-8 selected">Home</a>
<a href="motivation.html" class="w3-bar-item w3-button w3-padding-8">Motivation</a>
<a href="spf.html" class="w3-bar-item w3-button w3-padding-8">What is a SPF</a>
<a href="sessions.html" class="w3-bar-item w3-button w3-padding-8">Sessions</a>
<a href="materials.html" class="w3-bar-item w3-button w3-padding-8">Materials</a>
<a href="events.html" class="w3-bar-item w3-button w3-padding-8">Events</a>
<a href="gallery.html" class="w3-bar-item w3-button w3-padding-8">Gallery</a>
<a href="faq.html" class="w3-bar-item w3-button w3-padding-8">FAQ</a>
<a href="organization.html" class="w3-bar-item w3-button w3-padding-8">Organization</a>
<a href="sponsor.html" class="w3-bar-item w3-button w3-padding-8">Sponsorship</a>
</div>
</div>
</header>
<div class="w3-content">
<p>In the near future, scientists will routinely use new tools to develop research papers that will document all the associated digital objects (data, software, workflows, etc.). This will make science more open, promote fair credit of scientific contributions, and facilitate reproducibility. </p>
<p><b>The Scientific Papers of the Future (SPF) is an initiative to encourage geoscientists to publish papers together with the associated digital products of their research</b>. This means that a paper would include: 1) Documentation of datasets, including descriptions, unique identifiers, and availability in public repositories; 2) Documentation of software, including pre-processing of data and visualization steps, described with metadata and with unique identifiers and pointers to public code repositories; 3) Documentation of the provenance and workflow for each figure or result. </p>
<p><b>The Scientific Paper of the Future concept was initiated by the <a href="http://www.earthcube.org">EarthCube</a> <a href="http://www.ontosoft.org">OntoSoft</a> project as the <a href="http://www.scientificpaperofthefuture.org/gpf">Geoscience Papers of the Future</a>, funded under the National Science Foundation awards ICER-1343800 and ICER-1440323. Exemplar papers and other information are available at that web site.</b></p>
<p><a href="http://mailman.isi.edu/mailman/listinfo/spf-announce">Please subscribe to this mailing list</a> if you would like to receive notifications of training sessions and other general announcements about SPF.</p>
<br/>
</div>
<!-- Footer (defined in footer.html)-->
<footer class="w3-container w3-theme-dark w3-padding-16" style="box-shadow:0 50vh 0 50vh #3D2B24;" id ="footerContent">
</footer>
</body>
</html>