diff --git a/bibtexbrowser.php b/bibtexbrowser.php index be292e9..617dec3 100755 --- a/bibtexbrowser.php +++ b/bibtexbrowser.php @@ -32,7 +32,7 @@ Thanks to all [[users]] of bibtexbrowser :-) * bibtexbrowser can display all entries for an author [[http://www.monperrus.net/martin/bibtexbrowser.php?bib=metrics.bib&author=Barbara+A.+Kitchenham|demo]] * bibtexbrowser can be used with different encodings (change the default iso-8859-1 encoding if your bib file is in utf-8 ''define('ENCODING','utf-8')'' ) -=====How to make a publication list for a research group/team/lab===== +=====Standalone publication lists===== 1) Create a bib file with the publication records (e.g. csgroup2008.bib) 2a) Use the link ''bibtexbrowser.php?bib=csgroup2008.bib&academic'' (sorted by publication type, then by year) @@ -41,7 +41,14 @@ or =====How to include your publication list in your home page===== -Use this PHP snippet: +For a group/team/lab: +<?php +$_GET['bib']='csgroup2008.bib'; +$_GET['all']=1; +include('bibtexbrowser.php'); +?> + +For an individual <?php $_GET['bib']='mybib.bib'; $_GET['academic']='Martin Monperrus'; @@ -1181,7 +1188,7 @@ class Display { function poweredby() { $poweredby = "\n".'
'; $poweredby .= ''; - $poweredby .= 'Powered by bibtexbrowser'; + $poweredby .= 'Powered by bibtexbrowser'; $poweredby .= '
'."\n"; return $poweredby; }