This template is used for drawing branching trees with the node and base labels being clickable links. Such diagrams are especially suited to represent evolutionary trees (cladograms).

Features previously included only in a separate template, {{Cladex}}, are now incorporated in this template; {{Cladex}} should no longer be used.

Basic features edit

Usage edit


{{clade
|label1=Base
|1=Node
}}

produces

Base

Node


{{clade
|1={{clade
   |label1=[[Subtree1]]
   |1=Leaf1
   |label2=Subtree2
   |2=[[Leaf2]]
   }}
}}

produces

Subtree1 

Leaf1

Subtree2 

Leaf2


{{clade
|1={{clade
   |label1=Subtree1
   |1=Leaf1
   |label2=Subtree2
   |2=Leaf2
   }}
}}

produces

Subtree1

Leaf1

Subtree2

Leaf2

Note that the order of the parameters does not matter. Exactly the same output is produced by


{{clade
|1={{clade
   |2=Leaf2
   |1=Leaf1
   |label1=Subtree1
   |label2=Subtree2
   }}
}}
Subtree1

Leaf1

Subtree2

Leaf2

Technical background edit

The clade template has many features for customising the appearance. Using them optimally requires some understanding of how the template works. The cladogram is constructed using nested HTML tables and the lines of the cladogram are borders of the cells (<td> tags). Each clade template creates an HTML table with the elements show as follows:

Description Table cell structure Cladogram Code using clade template

A simple clade structure with a single child node (or leaf).

This is an HTML table with two rows and two columns. The cells of the righthand column are merged using the rowspan attribute.

labelA

Leaf A

sublabelA
labelA

LeafA

sublabelA
{{clade |thickness=3
|label1=labelA
|sublabel1=sublabelA
|1=LeafA
}}

Replace LeafA with another clade structure.

A second HTML table is placed inside a the right-hand cell of the outer table.

labelA
label1 leaf1
sublabel1
label2 leaf2
sublabel2
sublabelA
labelA
label1

leaf1

sublabel1
label2

leaf2

sublabel2
sublabelA
{{clade |thickness=3
|label1=labelA
|sublabel1=sublabelA
|1={{clade |thickness=3
   |label1=label1
   |sublabel1=sublabel1
   |1=leaf1
   |label2=label2
   |sublabel2=sublabel2
   |2=leaf2
   }}
}}

Styling brackets and branches edit

The appearance of the cladogram can be customised by changing the border attributes of the HTML cell elements, using the parameters |state=, |color= and |thickness= as shown below:

Description Template code Resulting output
Styling brackets

The thickness, colour and state (solid, dashed, etc.) of bracket lines can be changed using the thickness=, |color= and |state= parameters.


{{clade
   |label1=Bracket styling
   |sublabel1=(no suffix)
   |style1x=background-color:#ffffee;
   |1={{Clade
      |label2=color
      |2={{Clade |color=red 
         |1=A
         |2=B                
         |3=C             
        }}
      |label1=thickness
      |1={{Clade |thickness=3
          |1=I  
          |2=J          
          |3=K             
          }}
      |label3=state
      |3={{Clade |state=dashed
         |1=X 
         |2=Y         
         |3=Z        
 
         }}
      }}
}}


Bracket styling
thickness

I

J

K

color

A

B

C

state

X

Y

Z

(no suffix)
Styling individual branches

The thickness, colour and state of individual branch lines can be changed using the thicknessN=, |colorN= and |stateN= parameters, where N is the number of the branch to be styled.


{{clade
   |label1=Branch styling
   |sublabel1=(append branch number)
   |style1x=background-color:#eeeeee;
   |1={{Clade
      |label2=colorN
      |2={{Clade
         |1=black (default) |color1=black          
         |2=red             |color2=red    
         |3=blue            |color3=blue   
         |4= #00ff00       |color4=#00ff00   
         }}
      |label1=thicknessN
      |1={{Clade
          |1=1 (default) |thickness1=1 
          |2=2           |thickness2=2 
          |3=3           |thickness3=3  
          }}
      |label3=stateN
      |3={{Clade
         |1=solid (default) |state1=solid   
         |2=dotted          |state2=dotted  
         |3=dashed          |state3=dashed 
         |4=none            |state4=none   
         |5=double          |state5=double 
         }}
      }}
}}



Branch styling
thicknessN

1 (default)

2

3

colorN

black (default)

red

blue

 #00ff00

stateN

solid (default)

dotted

dashed

none

double

(append branch number)

Reverse clade edit

The cladograms can also be generated right to left using {{cladeR}}, as shown below.

CodeOutput
{{cladeR |reverse=yes
|label1=''Panthera''
|1={{cladeR
   |1={{cladeR
      |1=snow leopard
      |2=tiger
      }}
   |2={{cladeR
      |1=jaguar
      |2={{cladeR
         |1=lion
         |2=leopard
         }}
      }}
   }}
}}

snow leopard

tiger

jaguar

lion

leopard

Panthera

While this has limited value in English Wikipedia, it can be useful for presenting alternative phylogenies, e.g. as in the following example:

Panthera

snow leopard

tiger

jaguar

lion

leopard

 

 

 

 

 

 
alternative topology


Data in Newick format edit

A common method of presenting phylogenetic data is to use the Newick format. Many published papers provide data in Newick format in their supplementary materials and several taxonomic and phyogenetic websites provide downloads (e.g. Open Tree of Life). These Newick strings can be used to generate cladograms in several ways.

Newick strings as a resource edit

Firstly, the Newick format data can be used to generate the clade structure markup using a text editor or one of several tools.

The phylogenetic tree shown shown to the right is represented by the following Newick and {{Clade}} code

  • Newick format: ((a,b),(c,d))
  • Clade code: {{clade |1={{clade |1=a |2=b}} |2={{clade |1=c |2=b }} }} }}

The manual procedure for conversion in a text editor is

  1. Replace "(" with "{{clade|"
  2. Replace ")" with "}}"
  3. Edit to replace commas with pipes and numbers
  4. Edit clade labels if needed

Fortunately, there are a number of methods for automating this task.

  1. One method is to use the NewickConverter template (see instructions therein).
  2. Alternatively, one can easily generate required clade code by downloading the free Windows utility, 'Claded', via link at http://code.google.com/p/claded, 'Claded' allowing editing of Cladograms using a tree control.
  3. Example of a Perl script to automate the conversion:
use constant N=>"\n";
use constant T=>"\t";

my $tree='((a,b),(c,d));'; # get sequence
$tree=~s/[\n\r]//g; # loose those spaces
$tree=~ s/\:[\.\d]+//g; # loose those lengths
while ($tree=~ m/\(/) {
	foreach my $clade ($tree=~ m/\(([^\(\)]+)\)/g) {
		my @branches=split /\,/,$clade;
		s/(\t+)/$1\t/g for @branches;
		die 'ERROR: degenerate/empty node!'.N if $#branches<1;
		$tree=~ s/\(\Q$clade\E\)/${\join('','{{clade',N,map(T.'|'.($_+1).'='.$branches[$_].N,0..$#branches),T.'}}')}/; # substitute
	}
	pos($tree)=0;
}
$tree=~s/(\t*)\t\}\}/$1\}\}/g; # lazy fix

print $tree;


Using Newick strings directly edit

The Newick format data can also be added using the |newickN=, where N refers to the child node (as with other parameters).

For instance, the following Newick string

((lion,jaguar,leopard),((siberian,bengal)tiger,snow leopard))panthera

can be put in the clade code as in the following example:

DescriptionCodeOutputComment
Simple use of Newick strings
{{clade
|label1=Label
|1={{clade
       |label1=big cats
       |1={{clade 
          |1=clouded leopards
          |style2=background-color:#ffdddd
          |newick2=((lion,jaguar,leopard),((siberian,bengal)tiger,snow leopard))panthera
          |2=Leaf B
          }}
       }}
}}
big cats

clouded leopards

panthera

lion

jaguar

leopard

tiger

siberian

bengal

snow leopard

  • Note that |newick2= causes |2= to be ignored.
  • The red shaded area shows the part of the cladogram generated from the Newick string

The Newick format data provided Open Tree of Life and other sources typically has extraneous encoding data. This can be removed using the |newickN-pattern= and |newickN-replace= parameters which supply a Lua pattern (similar to Regex) and replacement. The following code uses Newick format data for the genus Prionailurus downloaded from using Open Tree of Life (source data):

{{clade
   |newick1=(Prionailurus_planiceps_ott86166,(((Prionailurus_bengalensis_chinensis_ott198595,Prionailurus_bengalensis_euptilurus_ott547362,Prionailurus_bengalensis_bengalensis_ott5557509,Prionailurus_bengalensis_rabori_ott7067613)Prionailurus_bengalensis_ott280108,Prionailurus_iriomotensis_ott418475),Prionailurus_viverrinus_ott862641),Prionailurus_rubiginosus_ott507541)Prionailurus_ott570215
   |newick1-pattern1=([%a_]*)_?(ott[%d]*)
   |newick1-replace1=''%1''
   |newick1-pattern2=Prionailurus_
   |newick1-replace2=P._
   |newick1-pattern3=bengalensis_
   |newick1-replace3=b._   
   }}
}}

produces

Prionailurus 

P. planiceps

P. bengalensis 

P. b. chinensis

P. b. euptilurus

P. b. bengalensis

P. b. rabori

P. iriomotensis

P. viverrinus

P. rubiginosus

Using a box edit

You can nest the templates and use links around the text. You may use non-breaking spaces (&nbsp;) to obtain spaces or to have labels that have spaces.

The entire cladogram can be placed in a box so that text flows nicely around it. You can use {{Cladogram}} to produce the box.

Example
Neornithes  
Paleognathae

 

 Neognathae 
 

Other birds

Galloanserae 

Anseriformes

    

Galliformes

Craciformes

Sample of {{Cladogram}}
{{cladogram|title=Example
|caption=Sample of {{tl|Cladogram}}
|clades={{clade| style=font-size:75%;line-height:75%;
    |label1=[[Neornithes]]  
    |1={{clade
        |label1=[[Paleognathae]]
        |1= 
        |label2= [[Neognathae]] 
        |2={{clade
            |1=Other birds
            |label1= 
            |label2=[[Galloanserae]] 
            |2={{clade
                |1=[[Anseriformes]]
                |label2=    
                |2={{clade
                    |1=[[Galliformes]]
                    |2=[[Craciformes]]
                    }}
                }}
            }}
        }}
    }}
}}

Controlling the layout of sisters edit

When one sister is represented as a leaf node and the other as a labelled subclade, they do not appear to be at the same level. Consider this cladogram:

Banksia subser. Sphaerocarpae (5 taxa)

Banksia subser. Leptophyllae

Banksia telmatiaea

(4 other taxa)

Although Banksia subser. Sphaerocarpae and Banksia subser. Leptophyllae are sisters, their names are not aligned in the cladogram. If this is considered undesirable, one solution is to use a label in both cases, as shown hereafter, which now shows the sisters at the same level.

Banksia subser. Sphaerocarpae

(5 taxa)

Banksia subser. Leptophyllae

Banksia telmatiaea

(4 other taxa)

Another 'trick' is to introduce a dummy clade. The red line in the following example shows where an extra clade has been inserted:

Banksia subser. Sphaerocarpae (5 taxa)

Banksia subser. Leptophyllae

Banksia telmatiaea

(4 other taxa)

To achieve this, instead of

{{clade
 |1=Sister1
 |label2=Sister2
 |2={{clade
   |1=taxon1
   |2=taxon2}}
}}

which displays as:

Sister1

Sister2

taxon1

taxon2

use

{{clade
 |1=Sister1
 |2={{clade <!--extra dummy clade-->
    |label1=Sister2
    |1={{clade
       |1=taxon1
       |2=taxon2
       }}
   }}
}}

which displays as:

Sister1

Sister2

taxon1

taxon2

Bracketting and labelling nodes edit

Adding vertical bars and brackets edit

To insert a coloured 'bracket' around a set of leaf nodes which follow one another in the generated cladogram:

  • Add barbeginN=colour for the first leaf node, where N is the order of that leaf node within its clade, and colour is the required colour.
  • Add barN=colour for the remaining nodes other than the last (note that N must be the order of that node within its clade).
  • Add barendN=colour for the last node.
CodeOutput

{{clade|style=font-size:85%;line-height:100%;
|1={{clade
   |1=Leaf A
   |2=Leaf B|barbegin2=green
   |3=Leaf C|bar3=green
   |4={{clade
      |1=Leaf D|barend1=green
      |2=Leaf E
      |3=Leaf F|barbegin3=purple
      |4={{clade
         |1=Leaf G |bar1=purple
         |2=Leaf H |barend2=purple
         }}
      }}
   }}
}}

Leaf A

Leaf B

Leaf C

Leaf D

Leaf E

Leaf F

Leaf G 

Leaf H 

Note the using of the non-breaking space ( ) to move the vertical bar from the leaf text.

The horizontal lines can be omitted by using |barN=colour throughout. Thus the following produces simple vertical bars:

CodeOutputComment

{{clade|style=font-size:85%;line-height:100%;
|1=Leaf A
|2={{clade
   |1=Leaf B|bar1=midnightblue
   |2=Leaf C|bar2=midnightblue
   }}
|3=Leaf D|bar3=midnightblue
}}

Leaf A

Leaf B 

Leaf C 

Leaf D

Note that brackets or bars cane be applied internal nodes as well as leaf nodes. So the following code produces the same result.


{{clade|style=font-size:85%;line-height:100%;
|1=Leaf A
|bar2=midnightblue
|2={{clade
   |1=Leaf B
   |2=Leaf C
   }}
|3=Leaf D|bar3=midnightblue
}}

Specifying bracket colours edit

You can use any of the ways in which colours can be specified in HTML; e.g. the standard colour names, the three or six hex digit notations, such as #FC3 or #F3C630, or the rgb() notation.

Adding text labels to brackets edit

Accessibility guidelines require pages not to rely on colour alone, so it's particularly important to add labels if you have more than one bracket/bar and need to refer to them separately. A couple of methods are available.

  1. Text labels for each bracket/bar can be added using {{Barlabel}} (see instructions at template page).
  2. Use the |grouplabelN= parameter. This adds a label to the right of the righthand bracket or bar, as shown in the following example. The right hand column illustrates how |grouplabel= adds an HTML cell to the right of the terminal leaf.
CodeOutputCell structure
{{clade
|label1=labelA 
|grouplabel1=Grouplabel A
|bar1=blue
|1={{clade 
   |label1=label1
   |1= leaf1 
   |label2=label2
   |2= leaf2 
   }}
}}
labelA
label1

 leaf1 

label2

 leaf2 

Grouplabel A
sublabelA
labelA
label1 leaf1
 
label2 leaf2
 
Grouplabel A
sublabelA

In the example above grouplabel was used to label a bar marking the entire clade. It provided an alternative to labelA. However, if the bar is only applied to some terminals, |grouplabelN= can be used to mark paraphyletic groups. The following example also demonstrates the use of |grouplabelstyleN= to apply CSS styling to the grouplabel, in this case the color.

CodeOutput
{{clade
|grouplabel1=ANA Group
|label1='''Angiosperms'''
|1={{clade
   |1=[[Amborellales]]           |barbegin1=green
   |2={{clade
      |1=[[Nymphaeales]]         |bar1=green
      |2={{clade
         |1=[[Austrobaileyales]] |barend1=green
         |2=[[Mesangiosperms]]   
         }}
      }}
   }}
}}
Angiosperms

Amborellales

Nymphaeales

Austrobaileyales

Mesangiosperms

ANA Group

The |grouplabel= parameter can be used to add multiple labels with the aid of the {{clade labels}} template. This template uses absolute CSS positioning to determine the placement of the label. When applied to a |grouplabel1= parameter on the outer clade it behaves very similarly to {{barlabel}}. A simple example to label two groups is shown below:

CodeOutput
{{clade
|label1=root
|1={{clade
   |1=Leaf 1 |bar1=green
   |2={{clade
      |1=Leaf 2  |bar1=green
      |bar2=red
      |2={{clade
         |1=Leaf 3  
         |2=Leaf 4 
         }}
      }}
   }}
|grouplabel1={{clade labels |width=10em;
             |label1=stem group  |top1=20% |color1=green
             |label2=crown group |top2=70% |color2=red
             }}  
}}
root

Leaf 1

Leaf 2 

Leaf 3 

Leaf 4

stem group
crown group

The |grouplabel= parameter can contain any Wikitext or allowed HTML content and this offers a lot of flexibility in customising cladograms. The following example uses |grouplabel= to add an alternative topology using {{cladeR}}:

CodeOutput
{{clade
|label1=''Panthera''
|1={{clade
   |1={{clade
      |1=snow leopard
      |2=tiger
      }}
   |2={{clade
      |1=jaguar
      |2={{clade
         |1=lion
         |2=leopard
         }}
      }}
   }}
|grouplabel1=<nowiki/>{{cladeR
      |label1= 
      |1={{cladeR
         |1={{cladeR
            |1={{cladeR |1= }}
            |2={{cladeR |1= }}
            }}
         |label2= 
         |2={{cladeR
            |1={{cladeR
               |1= 
               |2= 
               }}
            |2={{cladeR |1= }}
            }}
         }}   
      }}

}}
}}
Panthera

snow leopard

tiger

jaguar

lion

leopard

 

 

 

 

 

 
 

Debugging edit

If your cladogram doesn't display brackets/bars as you expected, check that:

  • You understand the numbering system for the parameters barN, etc. The N must be the same as the number of the child within its clade. Thus typically you should write |N=label for leaf|barN=colour for bar, e.g. |2=[[Passeridae]]|bar2=midnightblue.
  • You have only attempted to apply brackets/bars to leaf nodes.

Limitations edit

Label length edit

Labels produced by |labelN=, where N is 1, 2, ..., can lead to poor layout of the resulting cladogram. (This does not apply to the text of leaves, i.e. text produced by |N=.) To avoid problems:

  • Labels should be kept as short as possible, ideally a single word
  • Any necessary spaces in labels should be represented as &nbsp; not as actual spaces.
  • Line breaks (i.e. <br/>) should not be used.

Browser differences edit

Browser variation: left – most browsers; right – Safari

Cladograms are drawn by generating hidden tables. The horizontal and vertical lines making up the tree are actually the edges of table cells. The tables are then drawn by the browser or user agent using its internal algorithms. As these differ from browser to browser, the trees produced will not look the same on all browsers.

In particular, as of January 2017, there are two algorithms for laying out tables with empty cells, used by two groups of browsers. Most browsers now use the algorithm that produces cladograms like the two on the left in the diagram. Safari (under both MacOS and iOS) uses another algorithm, producing cladograms like the two on the right in the diagram.

No automated "fix" for these differences exists at present.

If there is a choice over the ordering of the terminal nodes (leaves) of the tree, cladograms look best in a Safari-like browser if as much branching as possible is at the bottom of the cladogram. Typically this is produced by arranging the terminal nodes downwards on the page in order of their evolutionary divergence. Compare the bottom row of the diagram to the top row.

Inclusion in books edit

There are many known bugs in rendering tables in the software which produces Wikipedia books; see the book tool feedback page. As of July 2011 these result in the lines in cladograms not displaying in books.

Large cladograms edit

There are limitations on the size and complexity of the cladograms which can be drawn:

  • A maximum of 20 children is allowed per node.
  • The Wikimedia software has certain limits on the processing allowed by templates and modules. Large cladograms can potentially exceed some of these limits.
    • Post-expand include size. Essentially this is the output of all templates, modules and parser calls. Pages with very large or several large cladograms will occasionally exceed this limit, especially on larger pages with many references and other demands on the system.
    • Template expansion depth limit. When a template is used it adds to the expansion depth, once for the template expansion and once for parameter expansion. As a result, template calls can only be nested 20 deep. Because cladograms are built by nesting templates within each other this is a common problem on larger phylogenetic trees. Fortunately there are now ways around this problem (see following section ).

Techniques for building large cladograms. edit

Because cladograms are build by nesting {{clade}} templates within each other, larger cladograms can exceed the expansion depth allowed by the Wikimedia software. The cladogram on the right fails on the twentieth nested clade template.

There are two methods to get around this limitation:

Using sequential listing of taxa edit

This approach uses the template {{clade sequential}} to list taxa in a taxonomic sequence. In the following example six taxa are listed sequentially in the template and the cladogram has the first one as the first branch, the second next and so on until the final two are sisters. Because all taxa are added in one template call, this only counts once towards the 20 limit. The downside is that it is not possible to format each level independently.

CodeOutput
{{clade sequential
        |1=Leaf 1
        |2=Leaf 2
        |3=Leaf 3
        |4=Leaf 4
        |5=Leaf 5
        |6=Leaf 6
        }}

Leaf 1

Leaf 2

Leaf 3

Leaf 4

Leaf 5

Leaf 6

{{clade sequential
        |1=Leaf 1
        |label2=Clade 2
        |2={{clade 
           |1=Leaf 2A 
           |2=Leaf 2B
           }}
        |3=Leaf 3
        |label4=Clade 4
        |4={{clade 
           |1=Leaf 4A 
           |2=Leaf 4B
           }}
        |5=Leaf 5
        |6=Leaf6
        }}

Leaf 1

Clade 2

Leaf 2A

Leaf 2B

Leaf 3

Clade 4

Leaf 4A

Leaf 4B

Leaf 5

Leaf6

The second example shows that some substructure can be added to each level with normal use of the {{clade}} template.


Using subtrees edit

This method uses the parameters |target= and |subclade= to "modularise" the phylogenetic tree. Each subtree is processed in parallel so they don't contribute to the expansion depth in an additive manner. The limit applies to each tree, but many subtrees can be used.

The basic arrangement is illustrated below. The main tree has two subclades, A and B, and subclade B calls a third.

CodeOutput
{{Clade
|label1=root |sublabel1=[12/40]
|1={{Clade
   |1=Leaf 1
   |2={{clade
      |1=Leaf 2.1
      |2={{clade
         |1=Leaf 2.2.1
         |2={{clade
            |label1=Subclade A
            |1={SUBCLADE_A}  
            |label2=Subclade B
            |2={SUBCLADE_B}  
            }}
         }}
      }}
   }}
|targetA ={SUBCLADE_A}
|subcladeA={{Clade
           |1=Leaf A1
           |2={{clade
              |1=Leaf A2.1
              |2={{clade
                 |1=Leaf A2.2.1
                 |2=Leaf A2.2.2
                 }}
              }}
           }}
|targetB = {SUBCLADE_B}
|subcladeB={{Clade
           |1=Leaf B1
           |2={{clade
              |1=Leaf B.1
              |2={{clade
                 |1=Leaf B2.2.1
                 |label2=Subclade C
                 |2={TARGET_C}
                 }}
              }}
           }}
|targetC = {TARGET_C}
|subcladeC={{Clade
           |1=Leaf C1
           |2={{clade
              |1=Leaf C2.1
              |2={{clade
                 |1=Leaf C2.2.1
                 |2=Leaf C2.2.2
                 }}
              }}
           }}          
root

Leaf 1

Leaf 2.1

Leaf 2.2.1

SubcladeA

Leaf A1

Leaf A2.1

Leaf A2.2.1

Leaf A2.2.2

SubcladeB

Leaf B1

Leaf B.1

Leaf B2.2.1

SubcladeC

Leaf C1

Leaf C2.1

Leaf C2.2.1

Leaf C2.2.2

[12/40]

The encoding relies on a number of conventions.

  • The names of the subclades are in uppercase and enclosed in a single brace. This is not absolutely necessary, as long as the names are unique, but some advanced features (e.g. partial tranclusion) rely on this convention.
  • The parameters |subcladeA=, |subcladeB=, ... |subcladeZ= contain the subtrees in clade structure that will be substituted into the main tree.
  • The parameters |targetA=, |targetB=, ... |subcladeZ= contain the targets where the subtrees will be substituted. For instance, |targetA={SUBCLADE_A} indicates that the target {SUBCLADE_A} will be replaced by the content of |subcladeA=content.
  • The target parameters may be omitted and the default targets are {SUBCLADE_A} and {SUBCLADE_B} for |subcladeA= and |subcladeB=, respectively.
  • The suffixes A-Z were chosen because these parameters don't correspond the other numbered parameters used by the template (e.g. |1=, |label2= etc.
  • The subclades can all be listed in the outer clade template or nested within the appropriate tree. For instance, in the example subclade C is listed at the end of the outer clade template but this could have been nested in the clade template attached to subtree B.

An example of a large phylogenetic tree divided into multiple subtrees can be found at {{Phylogeny/APG IV}}.

Add interactivity with collapsible clades edit

Sometimes with large phylogenetic trees it is hard to see the wood for the trees. The cladogram may exceed the screen height making it difficult to see the overall structure and important small clades are to to see. A way around this is to collape the large clades and expand them interactively.

The following example shows a simple example to illustrate the principle:

CodeOutput
{{clade |style=font-size:80%;line-height:90%;
|label1='''Amphibia'''
|1={{clade
   |1=[[Gymnophiona]] (caecilians)
   |label2=[[Batrachia]]
   |2={{clade hidden |id=1 |mode=left
      |expand-text=(frogs and salamanders)          
      |1=[[Caudata]] (salamanders)
      |2=[[Anura]] (frogs)
      }}
   }}
}}
Amphibia

Gymnophiona (caecilians)

Batrachia
⊞(frogs and salamanders)

Caudata (salamanders)

Anura (frogs)

A note of caution. The Wikimedia collapsible elements require javascript and are currently disabled in the mobile view. In such cases the whole cladogram will be shown. As with any large phylogentic trees, editors should decide if having a smaller less inclusive tree makes the point more clearly.

Graphical summary edit

Template:Clade
Demo
Node structure
label1

leaf 1

sublabel1
label2
label A

leaf A

label B

leaf B

 leaf 2 is a transcluded clade structure
sublabel2
label3

leaf 3

sublabel3
(brackets)

 

Leaf styling
thicknessN

1 (default)

2

 line thickness

3

colorN

black (default)

red

blue

 #00ff00

stateN

solid (default)

dotted

dashed

 line styles

none

double

(branches)
node styling
thickness

I

J

K

color

A

B

C

state

X

Y

Z

(brackets)
newick
input string

((lion,jaguar,leopard),((siberian,bengal)tiger,snow leopard))panthera

output tree
panthera

lion

jaguar

leopard

tiger

siberian

bengal

snow leopard

 expanded Newick string
paraphyly example 

Geraniales

Myrtales

clade x

Crossosomatales

Picramniales

Sapindales

Huerteales

Brassicales

Malvales

 paraphyletic group within clade x

A cladogram illustrating clade template features.