|
Lines 660-673
sub marc2bibtex {
Link Here
|
| 660 |
} |
660 |
} |
| 661 |
$author = join ' and ', @texauthors; |
661 |
$author = join ' and ', @texauthors; |
| 662 |
|
662 |
|
| 663 |
# Defining the conversion hash according to the marcflavour |
663 |
# Defining the conversion array according to the marcflavour |
| 664 |
my @bh; |
664 |
my @bh; |
| 665 |
if ( $marcflavour eq "UNIMARC" ) { |
665 |
if ( $marcflavour eq "UNIMARC" ) { |
| 666 |
|
666 |
|
| 667 |
# FIXME, TODO : handle repeatable fields |
667 |
# FIXME, TODO : handle repeatable fields |
| 668 |
# TODO : handle more types of documents |
668 |
# TODO : handle more types of documents |
| 669 |
|
669 |
|
| 670 |
# Unimarc to bibtex hash |
670 |
# Unimarc to bibtex array |
| 671 |
@bh = ( |
671 |
@bh = ( |
| 672 |
|
672 |
|
| 673 |
# Mandatory |
673 |
# Mandatory |
|
Lines 687-693
sub marc2bibtex {
Link Here
|
| 687 |
); |
687 |
); |
| 688 |
} else { |
688 |
} else { |
| 689 |
|
689 |
|
| 690 |
# Marc21 to bibtex hash |
690 |
# Marc21 to bibtex array |
| 691 |
@bh = ( |
691 |
@bh = ( |
| 692 |
|
692 |
|
| 693 |
# Mandatory |
693 |
# Mandatory |
| 694 |
- |
|
|