home *** CD-ROM | disk | FTP | other *** search
/ CICA 1992 November / CICA_MS_Windows_CD-ROM_Walnut_Creek_November_1992.iso / win3 / util / winrefer / wordlet.for < prev   
Text File  |  1992-09-16  |  2KB  |  67 lines

  1. /* Formats suitable for use "naked" with Word for Windows */
  2. /* Si Dobson, 14-9-1992 */
  3.  
  4. description "Word for Windows (Author-Date-Letter)"
  5.  
  6. /* use RTF to communicate with Word */
  7. language { RTF }
  8.  
  9. /* tags are complicated... */
  10. tag { "["
  11.       MajorAuthor(Surname) Date(Century)
  12.       "{\field{\*\fldinst = "
  13.       "{\field{\*\fldinst ref "
  14.       MajorAuthor(Surname) Date(Century) Unique
  15.       "}{\fldrslt 1}}"
  16.       " \\* alphabetic}{\fldrslt 1}}"
  17.       "]" }
  18.  
  19. /* paper from journal */
  20. format { Title Authors Journal [ Vol No ] Date [ Pages ] [ Others ] }
  21. as {
  22.      "{\field{\*\fldinst set "
  23.      MajorAuthor(Surname) Date(Century) Unique
  24.      "{\field{\*\fldinst seq "
  25.      MajorAuthor(Surname) Date(Century) 
  26.      "}{\fldrslt }}}}"
  27.      Tag Tab
  28.      MajorAuthor(Surname ", " Initials)  [ ", " MinorAuthors(Initials " " Surname) ]
  29.      ", " 66 italic { Title "," } 99
  30.      " " Journal [ " " Vol [ "(" bold { No } ")" ] ] " (" Date ")" [ " pp." Pages ]
  31.      "."
  32.      [ "  " Others "." ]
  33.      Para }
  34.  
  35. /* book */
  36. format { Title Authors Publisher [ City ] Date [ Others ] }
  37. as {
  38.      "{\field{\*\fldinst set "
  39.      MajorAuthor(Surname) Date(Century) Unique
  40.      "{\field{\*\fldinst seq "
  41.      MajorAuthor(Surname) Date(Century) 
  42.      "}{\fldrslt }}}}"
  43.      Tag Tab
  44.      MajorAuthor(Surname ", " Initials) [ ", " MinorAuthors(Initials " " Surname) ]
  45.      ", " 66 italic { Title "," } 99
  46.      " " Publisher [ ", " City ] [ " (" Date ")" ]
  47.      "."
  48.      [ "  " Others "." ]
  49.      Para }
  50.  
  51. /* technical report */
  52. format { Title Authors Publisher ReportNo Date [ Others ] }
  53. as { 
  54.      "{\field{\*\fldinst set "
  55.      MajorAuthor(Surname) Date(Century) Unique
  56.      "{\field{\*\fldinst seq "
  57.      MajorAuthor(Surname) Date(Century) 
  58.      "}{\fldrslt }}}}"
  59.      Tag Tab
  60.      MajorAuthor(Surname ", " Initials) [ ", " MinorAuthors(Initials " " Surname) ]
  61.      ", " 66 italic { Title "," } 99
  62.      " Technical report " ReportNo ", " Publisher [ " (" Date ")" ]
  63.      "."
  64.      [ "  " Others "." ]
  65.      Para }
  66.  
  67.