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.
15 lines
313 B
15 lines
313 B
<?PHP
|
|
|
|
require_once "../vendor/autoload.php";
|
|
|
|
use Monperrus\BibtexBrowser\Bibliography;
|
|
|
|
|
|
$config = array("bib" => "bibacid-utf8.bib",
|
|
"all" => 1,
|
|
"author" => "",
|
|
"academic" => 1
|
|
);
|
|
|
|
$browser = new Monperrus\BibtexBrowser\Bibliography($config);
|
|
$browser->print();
|