I explain myself better, the question I have is if I can apply an XSLT to two XML that have certain tags with different names.
An example
first Xml
<Persona>
<Nombre>Sebastián</Nombre>
</Persona>
second XML
<Persona>
<PrimerNombre>Claudio</PrimerNombre>
</Persona>
The result would be after applying the XSLT
Persona : Sebastián
Persona : Claudio