Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What happens with compound surnames? #287

Closed
elboletaire opened this issue Mar 26, 2016 · 2 comments
Closed

What happens with compound surnames? #287

elboletaire opened this issue Mar 26, 2016 · 2 comments

Comments

@elboletaire
Copy link

What happens with compound surnames? Although wikipedia says that...

This custom is not seen in the Hispanic world as being a true compound surname system per se, since it is widely understood that the first surname denotes one's father's family, and the second surname denotes one's mother's family

That's not absolutely true. Currently in Spain one can choose which surname order wants for their son. So this should be a must in a family tree specification.

This may be somehow related to #120, but I'm not sure at all.

@stoicflame
Copy link
Member

Hi.

Thanks for your interest. Compound surnames should be covered by providing the full text as well as separate name parts. So let's take one of the names mentioned in that wikipedia article you reference, "Luis Telmo Paz y Miño Estrella". We'll use XML for readability and we'll designate "Telmo" as the middle name using a qualifier. We'll also designate "Paz y Miño" as the paternal surname and "Estrella" as the maternal surname using qualifiers.

<name>
  <nameForm>
    <fullText>Luis Telmo Paz y Miño Estrella</fullText>
    <part type="http://gedcomx.org/Given" value="Luis"/>
    <part type="http://gedcomx.org/Given" value="Telmo">
      <qualifier name="http://gedcomx.org/Middle"/>
    </part>
    <part type="http://gedcomx.org/Surname" value="Paz y Miño">
      <qualifier name="http://gedcomx.org/Patronymic"/>
    </part>
    <part type="http://gedcomx.org/Surname" value="Estrella">
      <qualifier name="http://gedcomx.org/Matronymic"/>
    </part>
  </nameForm>
</name>

@elboletaire
Copy link
Author

Thanks for the clarification! 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants