I'm looking at this a bit more closely now. I don't yet have the ability to build a plugin, so I thought about the idea of building the <meta> tags into a theme.
<!-- Google Scholar Inclusion Metadata -->
<meta name="citation_title" content="<?php echo item('Dublin Core', 'Title'); ?>" />
<meta name="citation_author" content="<?php echo item('Dublin Core', 'Creator'); ?>" />
<meta name="citation_date" content="<?php echo item('Dublin Core', 'Date Created'); ?>" />
<meta name="citation_technical_report_institution" content="<?php echo item('Dublin Core', 'Publisher'); ?>" />
<meta name="citation_journal_title" content="Our Name" />
<meta name="citation_pdf_url" content="<?php while(loop_files_for_item()): ?>http://omeka.install.url.org<?php $file = get_current_file(); ?><?php echo file_display_uri($file); ?><?php endwhile; ?>" />
<!-- End Google Scholar Metadata -->
I have, however, just noticed that the citation_pdf_url attached file must be in the 'same directory' as the item record.
I'm fairly certain that to modify the URL so that the file URLs are relative to the public record URL is not trivial. Such as:
Existing Omeka item public URL example:
myomekainstall.org/items/show/248
Attached file URL:
myomekainstall.org/files/display/5/fullsize
Google Scholar would want the file URL to be something like:-
File 1 URL:
myomekainstall.org/items/show/248/files/1
File 2 URL:
myomekainstall.org/items/show/248/files/2
etc.
Possibly some .htaccess-fu might be able to match the two together? I'm not quite sure of the best approach. Any advice appreciated.
Thanks,
Tom