1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
package Catmandu::RIS;
our $VERSION = '0.13';
1;
__END__
=encoding utf-8
=head1 NAME
Catmandu::RIS - Catmandu modules for working with RIS data
=begin markdown
# STATUS

[](https://coveralls.io/r/LibreCat/Catmandu-RIS)
[](http://cpants.cpanauthors.org/dist/Catmandu-RIS)
=end markdown
=head1 SYNOPSIS
catmandu convert RIS < input.txt
# Use the --human option to translate RIS tags into human readable strings
catmandu convert RIS --human 1 < input.txt
# Provide a comma separated mapping file to translate RIS tags
catmandu convert RIS --human mappings/my_tags.txt < input.txt
=head1 MODULES
=over
=item * L<Catmandu::Exporter::RIS>
=item * L<Catmandu::Importer::RIS>
=back
=head1 MAPPING
See the examples in the package L<https://github.com/LibreCat/Catmandu-RIS/tree/master/examples>
for some hints how to create a mapping.
=head1 Author
Nicolas Steenlant
=head1 CONTRIBUTORS
Vitali Peil
Patrick Hochstenbach
Nicolas Franck
Mohammad S Anwar
=head1 LICENSE
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=head1 SEE ALSO
L<Catmandu>, L<Catmandu::Exporter>, L<Catmandu::Importer>
=head2 for other bibliographic formats
L<Catmandu::BibTeX>
=cut
|