• Is it possible to specify a citation style to format the publication list, and if so, how? THe plug-in main page states “The short code options exactly correspond to bibtexbrowser queries”, and bibtexbrowser can switch citation styles, but it is unclear to me after a load of experimenting how I would achieve this in wp-publiations.

    Many thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author monperrus

    (@monperrus)

    Good question.

    What about creating bibtexbrowser.local.php (in the same folder as bibtexbrowser.php) with something like:

    <?php
    function MyFancyBibliographyStyle(&$bibentry) {
      return $bibentry->getTitle().' ('.$bibentry->formattedAuthors(.')';
    }
    define('BIBLIOGRAPHYSTYLE','MyFancyBibliographyStyle');
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘Formatting using reference style’ is closed to new replies.