From cbda72564a319b06d14a2db9776cd33c842d72b3 Mon Sep 17 00:00:00 2001 From: "J.-S. Caux" <J.S.Caux@uva.nl> Date: Sat, 13 Oct 2018 22:38:38 +0200 Subject: [PATCH] Work on descriptors --- .../templates/journals/SciPostPhys_about.html | 57 ++++++++++--------- journals/views.py | 1 + 2 files changed, 32 insertions(+), 26 deletions(-) diff --git a/journals/templates/journals/SciPostPhys_about.html b/journals/templates/journals/SciPostPhys_about.html index ce8c85116..55a7b01dc 100644 --- a/journals/templates/journals/SciPostPhys_about.html +++ b/journals/templates/journals/SciPostPhys_about.html @@ -27,27 +27,22 @@ <div class="row"> <div class="col-md-6"> <h2>Aims</h2> - <p>SciPost Physics is our top-level flagship in the field of Physics.</p> - <p>Publications in SciPost Physics provide details on groundbreaking results or significant breakthroughs occurring in any (sub)specialization.</p> - <p>As a premium-quality, two-way open access, peer-witnessed refereed Journal, it aims at providing scientists with a publishing platform in which uncompromising scientific quality meets the highest achievable standards of open accessibility, with a resolutely international outlook.</p> - <p><em>Two-way open access</em> means free for readers, free for authors: there are no subscription or download costs, and authors are freed from dealing with article submission and/or processing charges.</p> - <p>The <em>peer-witnessed refereeing</em> process guarantees high-quality, responsible refereeing, with demonstrably greater utility for authors and recognition for referees.</p> + <p>SciPost Physics is our flagship title in the field of Physics.</p> + <p>Publications in SciPost Physics provide details on groundbreaking results and significant breakthroughs occurring in any (sub)specialization of the field.</p> + <p>Submissions to SciPost Physics have to meet exacting editorial standards, and are subjected to our most stringent form of peer-witnessed refereeing.</p> + <p>Implementing <a href="{% url 'scipost:about' %}#GOA">Genuine Open Access</a>, SciPost Physics is a publishing venue in which uncompromising scientific quality meets the highest achievable standards of open accessibility.</p> </div> <div class="col-md-6"> <h2>Scope</h2> - <p>SciPost Physics publishes outstanding-quality research articles in the domains of Experimental, Theoretical and Computational physics, among which:</p> + <p>SciPost Physics publishes breakthrough research articles in the domains of Experimental, Theoretical and Computational physics, including but not limited to:</p> <ul> - <li>Atomic, Molecular and Optical Physics - Experiment</li> - <li>Biophysics</li> - <li>Condensed Matter Physics</li> - <li>Fluid Dynamics</li> - <li>Gravitation</li> - <li>Cosmology and Astroparticle Physics</li> - <li>High-Energy Physics</li> - <li>Mathematical Physics</li> - <li>Nuclear Physics</li> - <li>Quantum Statistical Mechanics</li> - <li>Statistical and Soft Matter Physics</li> + {% for discipline in subject_areas %} + {% if discipline.0 == 'Physics' %} + {% for area in discipline.1 %} + <li>{{ area.1 }}</li> + {% endfor %} + {% endif %} + {% endfor %} </ul> </div> </div> @@ -55,17 +50,27 @@ <div class="row"> <div class="col-md-6"> <h2>Content</h2> - <p>The journal accepts three types of content: <strong>Letters</strong>, <strong>Articles</strong> and <strong>Reviews</strong>.</p> - <ul> - <li><strong>Letters</strong> report broad-interest, significant breakthroughs in Physics, of interest and importance to researchers in multiple subject areas.</li> - <li><strong>Articles</strong> provide in-depth, detailed reports of groundbreaking research within one or more subject areas.</li> - <li><strong>Reviews</strong> are short pieces taking a snapshot of a research area, written by recognized leaders in the field, providing a critical assessment of current frontline research and providing pointers towards future opportunities.</li> - </ul> - </div> + <p>The content format for SciPost Physics is flexible: articles can be short letter-style communications of breakthroughs or in-depth reports of groundbreaking research. There is no minimum or maximum length: the article should however represent a complete, self-contained unit. The target audience can be researchers in many different subject areas, or specialists in one.</p> + <p>The submission format is more demanding than in our other Journals: in addition to the main manuscript, authors must provide a two-page extended abstract detailing: + <ul> + <li>the context to the problem</li> + <li>the breakthrough obtained</li> + <li>perspectives for further research</li> + </ul> + written in a manner which is accessible to a wide spectrum of physicists (in particular for non-specialist Fellows within our Editorial College).</p> + <p>In addition, submissions to SciPost Physics must provide all the material needed to ensure proper reproducibility of the research results, either in appendices, adjoined files or external repository links:</p> + <ul> + <li>detailed derivations</li> + <li>data and code snippets used to produce figures</li> + <li>explicit details of experimental protocols</li> + <li>other types of reproducibility-facilitating material.</li> + </ul> + </div> + <div class="col-md-6"> <h2>Submission and Editorial Process</h2> - <p>Authors should follow the <a href="{% url 'submissions:author_guidelines' %}">submission guidelines</a> to ensure seamless processing of their manuscript. The <a href="{% url 'journals:journals_terms_and_conditions' %}">SciPost Journals Terms and Conditions</a> apply to all Submissions to SciPost Physics.</p> - <p>All incoming Submissions are checked for plagiarism and follow the peer-witnessed refereeing procedures outlined in <a href="{% url 'submissions:sub_and_ref_procedure' %}">Submission and Refereeing procedure</a>.</p> + <p>Authors should follow the <a href="{% url 'submissions:author_guidelines' %}">submission guidelines</a>, bearing in mind the special provisions for field-leading titles (here: SciPost Physics) to ensure seamless processing of their manuscript. The <a href="{% url 'journals:journals_terms_and_conditions' %}">SciPost Journals Terms and Conditions</a> apply to all Submissions to SciPost Physics.</p> + <p>All incoming Submissions are thoroughly checked for plagiarism, and follow the peer-witnessed refereeing procedures outlined in <a href="{% url 'submissions:sub_and_ref_procedure' %}">Submission and Refereeing procedure</a>.</p> <p>All publication decisions are taken by the <a href="{% url 'scipost:about' %}#editorial_college_physics">Editorial College (Physics)</a>, following the rules set out in the <a href="{% url 'scipost:EdCol_by-laws' %}">Editorial College by-laws</a>.</p> </div> </div> diff --git a/journals/views.py b/journals/views.py index 46f6ca720..6606ceadd 100644 --- a/journals/views.py +++ b/journals/views.py @@ -189,6 +189,7 @@ def info_for_authors(request, doi_label): def about(request, doi_label): journal = get_object_or_404(Journal, doi_label=doi_label) context = { + 'subject_areas': SCIPOST_SUBJECT_AREAS, 'journal': journal, } return render(request, 'journals/%s_about.html' % doi_label, context) -- GitLab