If the bibtex metadata is already in XML, I recommend putting it right in the METS manifest in your SIP, and then add a crosswalk to DSpace to interpret it. This way you don't lose any information before getting into DSpace, and the crosswalk can translate Bibtex directly into the exact metadata fields your DSpace is using. To do this:
1. make up a different name for the MDTYPE attribute in the METS, e.g. "bibtex", so the manifst looks like: <dmdSec ...> <mdWrap ... MDTYPE="bibtex"> ...the Bibtex metadata 2. add line to your DSpace configuration to tell METS ingester what crosswalk to use for MDTYPE="bibtex": mets.submission.crosswalk.bibtex = bibtex2dspace 3. configure the bibtex2dspace crosswalk, the easiest way is to implement it as an XSLT stylesheet, e.g. add this to configuration: crosswalk.submission.bibtex2dspace.stylesheet = crosswalks/bibtex.xsl ...then just write the stylesheet; see the wiki and manual for examples. hope that helps, -- Larry On May 26, 2009, at 1:51 PM, Robin Wang wrote: > Hi everyone, > I wanna use the DSpaceSIP from Larry Stone and converte my bibtex > xml file for original pdf file into qualified DC Record that i can > insert the DC Record into a Mets Record for DSpace later. i know > that i should use the XSLT to do it. but does anyone here know,what > kind of a qualified DC should i build into METS > > <dmdSec ID="DMD DSpaceID"> > <mdWrap>Qualified Dublin Core metadata </mdWrap> > </dmdSec> > > > <dmdSec ID="dmd002"> > <mdWrap MIMETYPE="text/xml" MDTYPE="DC" > LABEL="Dublin Core Metadata"> > <xmlData> > <dc:title>Alice's Adventures in > Wonderland</dc:title> > <dc:creator>Lewis Carroll</ > dc:creator> > <dc:date>between 1872 and 1890</ > dc:date> > <dc:publisher>McCloughlin > Brothers</dc:publisher> > <dc:type>text</dc:type> > </xmlData> > </mdWrap> > </dmdSec> > > I do know that i should add an exetension schema for the DC, but can > anyone tell me, what kind of an exetension schema for qualified DC > in dspace should i give?? Or should i use the mods > (http://www.loc.gov/standards/mods/v3/mods-3-1.xsd > ) > xsi:schemaLocation="http://www.loc.gov/mods/v3http://www.loc.gov/standards/mods/v3/mods-3-3.xsd > > http://www.loc.gov/standards/mods/v3/mods-userguide-examples.html#digitized_book > > Which one will be better for LNIClient??? > > Thanks > > Robin > > > Posteingang immer voll? Der erste Speicher, der mitwächst: > Unbegrenzter Speicher bei Windows Live Hotmail! > _______________________________________________ > Dspace-general mailing list > [email protected] > http://mailman.mit.edu/mailman/listinfo/dspace-general ------------------------------------------------------------------------------ Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT is a gathering of tech-side developers & brand creativity professionals. Meet the minds behind Google Creative Lab, Visual Complexity, Processing, & iPhoneDevCamp as they present alongside digital heavyweights like Barbarian Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech

