-
Notifications
You must be signed in to change notification settings - Fork 61
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
Showing
6 changed files
with
58 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,13 @@ | ||
--- | ||
title: arXiv HTML5 & Readability | ||
repo: https://github.com/cul-it/arxiv-readability | ||
thumbnail: labs/images/readability.png | ||
collaborators: | ||
name: Michael Kohlhase | ||
association: Friedrich-Alexander Universität Erlangen-Nürnberg | ||
name: Ben Firschman | ||
association: arXiv-Vanity | ||
name: Deyan Ginev | ||
association: Friedrich-Alexander Universität Erlangen-Nürnberg | ||
--- | ||
Our top priority is to provide a high-quality service to all arXiv authors and readers. The overarching objective of this project is to significantly improve the usability and accessibility of arXiv papers. While providing HTML is not a panacea, it is a first step in the right direction. |
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,9 @@ | ||
--- | ||
title: arXiv Bibliographic Explorer | ||
repo: https://github.com/mattbierbaum/arxiv-bib-overlay | ||
thumbnail: labs/images/bib-explorer.png | ||
collaborators: | ||
name: Matt Bierbaum | ||
association: Cornell Computing and Information Science | ||
--- | ||
The arXiv bibliographic overlay displays information about works that cite and are cited by arXiv papers and their published versions. The primary objective of the project is to enable discovery of relevant research and context by providing user-friendly navigation of an article's citation tree. |
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,30 @@ | ||
{%- extends "base/base.html" %} | ||
|
||
{% block content %} | ||
<h1>arXiv Labs</h1> | ||
<p>arXiv is surrounded by a community of researchers and developers working at the cutting edge of information science and technology.</p> | ||
<p>While the arXiv team is focused on our core mission—providing rapid dissemination of research findings at no cost to readers and submitters—we are excited to be experimenting with a small number of collaborators on projects that add value for our stakeholders and advance research.</p> | ||
<p>Here are some of the projects that our collaborators are working on right now.</p> | ||
<article class="card"> | ||
<div class="card-content"> | ||
<div class="columns"> | ||
<div class="column is-narrow-tablet"> | ||
<p class="image is-128x128" style="border: 1px solid gray"><img src="{%- $IMGPATH -%}{{ thumbnail }}" alt="" /></p> | ||
</div> | ||
<div class="column is-one-third-desktop is-one-half-tablet"> | ||
<h2>{{ title }}</h2> | ||
<span class="label">Collaborator{%- if collaborators > 1 -%}s{%- endif -%}: </span> | ||
{% for collaborator in collaborators %} | ||
<p>{{ collaborator.name }}<br /> | ||
<em>{{ collaborator.association }}</em></p> | ||
{% endfor %} | ||
</div> | ||
<div class="column"> | ||
<p>{{ content }}</p> | ||
</div> | ||
</div> | ||
<p class="has-text-right"><span class="has-text-weight-bold"> | ||
Code: </span>{{ repo }}</p> | ||
</div> | ||
</article> | ||
{% endblock content %} |
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