Web app to manage all related data within any Research Unit(s). It allows to describe researchers, projects, publications, funding programs, etc. in order to display them in a clear way and create interactive graphs which analyse the unit(s) performance.
It would be cool to show "citations" in each publication, so you can see the publications which cite each publication. This would be a simple link to Google Scholar pointing to this publication.
Doing so semi-automatically is not too difficult. But it requires the model to change and add a new field, such as "scholar_id", so in the visualization we can provide the link.
Find the first "cache:([^:]+):" regexp (which comes from something like the following):
<a href="http://scholar.googleusercontent.com/scholar?q=cache:bPrZe0NyrG0J:scholar.google.com/+Learning+Analytics+on+federated+remote+laboratories:+tips+and+techniques&hl=es&as_sdt=0,5" class="gs_nvi">Versión en HTML</a>
And that's the identifier in base64. Then you can put:
It would be cool to show "citations" in each publication, so you can see the publications which cite each publication. This would be a simple link to Google Scholar pointing to this publication.
Doing so semi-automatically is not too difficult. But it requires the model to change and add a new field, such as "scholar_id", so in the visualization we can provide the link.
The way to do this could be:
Find the first "cache:([^:]+):" regexp (which comes from something like the following):
And that's the identifier in base64. Then you can put:
to show the cites.
Example:
If the paper is not yet in Google Scholar, it should not be added.