Help for this page

Select Code to Download


  1. or download this
    sub unfoldauthors3 {
        my ($authors) = @_;
        return [ map { $_->{family}.', '.$_->{given}.'; '.join(' - ',
            map {$_->{name}} @{ $_->{affiliation} }) } @{$authors->[0]} ];
    }