show/hide this revision's text 2 Corrected the FXSL link

As all other answers have specified, there are two XSLT instructions:

<xsl:import>

and

<xsl:include>

that were designed exactly to provide this capability.

It may be of interest to you that there are complete libraries of templates and functions that internally import other stylesheets of the library. The stylesheets of the library are intended to be imported in the user's XSLT stylesheets.

For example, do have a look at the FXSL library for functional programming in XSLT.

show/hide this revision's text 1

As all other answers have specified, there are two XSLT instructions:

<xsl:import>

and

<xsl:include>

that were designed exactly to provide this capability.

It may be of interest to you that there are complete libraries of templates and functions that internally import other stylesheets of the library. The stylesheets of the library are intended to be imported in the user's XSLT stylesheets.

For example, do have a look at the FXSL library for functional programming in XSLT.