The <team_names> element defines the full list of team names
that will be included in the final design output. Each <team_name> represents one complete name entry, split into
up to three parts for greater layout flexibility.
XML structure
<team_names>
<team_name
name1="aa"
<!-- First column text -->
name2="bb"
<!-- Second column text -->
name3="cc"
<!-- Third column text -->
/>
<team_name
name1="dd"
name2="ee"
name3="ff" >
<thread ... /> <!--
Optional: specific thread for this team name -->
</team_name>
<team_name
name1="hh"
name2="ii"
name3="jj"
/>
</team_names>
Typical use
Use multiple <team_name> entries to produce a roster of names in a single run – perfect for:
- Sports teams
- Staff uniforms
- Group gifts
Key concepts
✅ Name columns
- name1, name2, and name3 specify sub-sections of a team name.
- They are concatenated together with
spaces in the final lettering: Full Name = name1 + " " + name2 + " " + name3
- Common usage:
- name1 → First name
- name2 → Middle name
- name3 → Last name
Splitting
names allows per-column settings, like using larger lettering height for last
names.
✅ Partial names
You can use only one or two of the sub-names. Example:
<team_name
name1="Alex Johnson" name2="" name3="" />
✅ Individual thread
- Each <team_name> can optionally define its own thread.
- If no thread is specified, the default
thread from <team_name_lettering> is used.
Example