Options {
  PaperSize 5     # A3
  Limits {
    # not Shown
    Landscape
    # Default
  }
}

FontTable {
  1 "Trinity.Medium"
  2 "Trinity.Medium.Italic"
  3 "Homerton.Bold"
  4 "Homerton.Medium"
}



Text {
  StartAt 100 400
  Size 40 40
  Style Font "Homerton.bOLD" # case doesn't matter
  Colour r255g0b0
  Text "Homerton BOLD"
}

#--------------------------------------------
# no matrix centred
# show the box in which the remaining items are centred
Path {
  Width 0.25
  OutlineColour r30g180b220
  Style { Dash { 4 2 1 2 } }
  Move 50 250
  Line 150 250
  Line 150 380
  Line 50 380
  Close
}
# centre
Path {
  Width 0.25
  OutlineColour r30g180b220
  Style { Dash { 4 2 1 2 } }
  Move 50 250
  Line 150 380
  Move 150 250
  Line 50 380
}

XfText {
  Style Font "Trinity.Medium"
  #Matrix 1 0 0 1  0 0
  Size 20 20
  StartAt 50 315
  Text "Middle"
}

#--------------------------------------------
#  matrix centred, no translation   rotation de 60
# show the box in which the remaining items are centred
Path {
  Width 0.25
  OutlineColour r130g80b120
  Style { Dash { 4 2 1 2 } }
  Move 150 250
  Line 250 250
  Line 250 380
  Line 150 380
  Close
}
# centre
Path {
  Width 0.25
  OutlineColour r30g180b220
  Style { Dash { 4 2 1 2 } }
  Move 150 250
  Line 250 380
  Move 250 250
  Line 150 380
}
XfText {
  Style Font "Trinity.Medium"
  Matrix 0.5 .866 -0.866 .5  0 0
  Size 20 20
  StartAt 150 315
  Text "Middle"
}
#--------------------------------------------

#  matrix centred, with x translation   rotation de 60
# show the box in which the remaining items are centred
Path {
  Width 0.25
  OutlineColour r30g80b220
  Style { Dash { 4 2 1 2 } }
  Move 250 250
  Line 350 250
  Line 350 380
  Line 250 380
  Close
}
# centre
Path {
  Width 0.25
  OutlineColour r30g180b220
  Style { Dash { 4 2 1 2 } }
  Move 250 250
  Line 350 380
  Move 350 250
  Line 250 380
}
XfText {
  Style Font "Trinity.Medium"
  Matrix 0.5 .866 -0.866 .5  40 0
  Size 20 20
  StartAt 250 315
  Text "Middle"
}

#--------------------------------------------
