Re: [Refdb-users] Re: nitpicking (element ordering in risx)
Status: Beta
Brought to you by:
mhoenicka
From: Bruce D'A. <bd...@fa...> - 2003-11-24 16:47:40
|
I've attached the Relax NG version of RISX. Looking into this, I can't at the moment see how to properly code a book with an editor. Markus, I thought you had added a way to code "role"? Anyway, the template package I am talking about is here: http://emacs-template.sourceforge.net/index.html Here's a template for a book chapter. I've not included the document declaration as I use nxml mode, and RNG has no such concept. <?xml version="1.0" encoding="utf-8"?> <ris> <entry type="CHAP" citekey="(>>>citekey<<<)"> <part> <title>(>>>title<<<)</title> <author> <lastname>(>>>authorlast<<<)</lastname> <firstname>(>>>authorfirst<<<)</firstname> </author> </part> <publication> <title type="full">(>>>ctitle<<<)</title> <author> <lastname>(>>>cauthorlast<<<)</lastname> <firstname>(>>>cauthorfirst<<<)</firstname> </author> <pubinfo> <pubdate type="primary"> <date><year>(>>>year<<<)</year></date> </pubdate> <startpage>(>>>start<<<)</startpage> <endpage>(>>>end<<<)</endpage> <city>(>>>city<<<)</city> <publisher>(>>>publisher<<<)</publisher> </pubinfo> </publication> <contents> <keyword>(>>>POINT<<<)(>>>MARK<<<)</keyword> </contents> </entry> </ris> >>>TEMPLATE-DEFINITION-SECTION<<< ("citekey" "Citation Key: ") ("title" "Title: ") ("subtitle" "Subtitle: ") ("authorfirst" "Author Firstname: ") ("authorlast" "Author Lastname: ") ("ctitle" "Book Title: ") ("cauthorfirst" "Editor Firstname: ") ("cauthorlast" "Editor Lastname: ") ("year" "Publication Year: ") ("publisher" "Publisher: ") ("city" "City: ") ("start" "Start Page: ") ("end" "End Page: ") Bruce |