You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
324 B
16 lines
324 B
<?PHP
|
|
|
|
$_GET['bib'] = "bibacid-utf8.bib";
|
|
|
|
require_once "../vendor/autoload.php";
|
|
|
|
use Monperrus\BibtexBrowser\Bibliography;
|
|
|
|
$config = array("bib" => "bibacid-utf8.bib",
|
|
"all" => 1,
|
|
"author" => "",
|
|
"academic" => 1
|
|
);
|
|
|
|
$browser = new Bibliography($config);
|
|
$browser->print();
|