group

Name

group -- A group of Personas.

Synopsis

Content Model
group ::=
   (names? , sheet? , desc? , background? , goals? , 
    members? , membership? , relations? )
Attributes

Name

Type

Default

idIDRequired
langNMTOKENNone

Description

A group represents a set of personas that relate to each other by some common reason. This story element includes informations on who is part of the group, what are their common goals, what are their relations, and if they are part of a larger group.

Processing expectations

In online implementation groups will generate an indepent page. For printing output they should be included as part of the personas information, and may be repeated several times.

Attributes

id

Unique identifier to be used when referencing to this story element. This will be used in tags like relation, memberof, members, and ref. This attribute can also be used to identifies characters when running live action games.

lang

Specifies the language to be used when generating this story element in the final file. If not specified will default to the language defined in the parameter of the same name at the story tag. Use this do define diferent processing, so header have different values for this story element.

See Also

Anchor

Examples

A group can contain members, relations, and all the other parts of a persona. This is a simple example:

<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook V3.1//EN">
<group>
  <names>Developers</names>

  <desc>A group of very bright people</desc>

  <goals>
    <goal>Finish the StorySGML documentation.</goal>
  </goals>

  <members>
    <member id="P01">Lead programmer of the StorySGML project.</member>
  </members>
</group>