Apartado 2B
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<xsl:for-each select="Personalhosp/Medico/Situacion_hospital">
<xsl:sort select="Provincia">
<xsl:value-of select="../Datos_per/Nombre"/>
<xsl:value-of select="../Datos_per/Primer_apellido"/>
<xsl:value-of select="../Datos_per/Segundo_apellido"/>
</xsl:sort>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>