Browse Source

improved support for abstracts after a long discussion with the Google Scholar Team:\neach paper needs to be listed on a separate URL; and at least the full author-written abstract must be clearly visible on the URL\n see http://scholar.google.com/intl/en/scholar/inclusion.html

replace/c24a8d1de403113542ba0936e844151de2785013
Martin Monperrus 15 years ago
parent
commit
4c6ac3fd6f
  1. 12
      bibtexbrowser.php

12
bibtexbrowser.php

@ -1284,11 +1284,19 @@ class BibEntry {
*/
function toEntryUnformatted() {
echo '<pre class="purebibtex">'; // pre is nice when it is embedded with no CSS available
$entry = $this->getFullText();
if ($this->hasField('url')) {
$url = $this->getField('url');
// this is not a parsing but a simple replacement
echo str_replace($url,'<a href="'.$url.'">'.$url.'</a>',$this->getFullText());
} else echo $this->getFullText();
$entry = str_replace($url,'<a href="'.$url.'">'.$url.'</a>', $entry);
}
if ($this->hasField('abstract')) {
$abstract = $this->getField('abstract');
// Google Scholar: http://scholar.google.com/intl/en/scholar/inclusion.html
// "each paper needs to be listed on a separate URL; and at least the full author-written abstract must be clearly visible on the URL"
$entry = str_replace($abstract,'<span class="abstract">'.$abstract.'</span>', $entry);
}
echo $entry;
echo '</pre>';
}

Loading…
Cancel
Save