-
Notifications
You must be signed in to change notification settings - Fork 431
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
Add substitution key for maiden name #1440
base: master
Are you sure you want to change the base?
Conversation
Definition of maiden name is quite vague. A girl could be born and registered with father's last name, but after a few months parents are divorced, and girl's last name is changed to mother's last name, which becomes her maiden name at the time of marriage. Another relatively common case is that a girl is born, but then gets adopted and her last name is changed to adoptive family's last name. Examples above are edge cases for regular life, but gramps is a genealogical software. It should be handling cases related to complex relationships. In my personal trees I, personally, prefer to report person's preferred last name and other last names that they used during their lifetimes (it's not a single last name, but a list of names). It's not only about girls, occasionally guys also change last names during their lives. |
I see what you mean. Out of curiosity, how do you generate this list of last names? Is it also based on substitution keys or do you have some custom procedure in place? I absolutely agree with you that gramps needs to be able to handle such edge cases. It's just that I've found multiple requests to list both maiden and married names in the past with no satisfactory answer so far. Do you have a better idea? |
I recall seeing a Report that had an option to show the last multiple surname. But cannot dig it up on the spur of the moment. But this 2010 Blog entry is interesting: |
@Gnarflord To suit my needs I just created a custom version of the report. For the general case, I would probably consider a modifier on the substitution keys. Regular version reports the preferred name, substitution key with modifier reports preferred name and all remaining names in parentheses. For example: Another format could be: Modifiers could be applied to any substitution keys that represent parts of the name. I'm Russian, so the problem of multiple names applies not only to last names. Some people in my tree have multiple patronymic names. Some of them were adopted, hence the change of the father and of the patronymic. In some cases multiple patronymic names are produced from the same father's name, e.g. "Egorovich" and "Georgievich", because the name "Egor" is consider a synonym to "Georgiy". Hence the same physical person had documents with different patronymics. my 2c |
Additionally, one needs to consider cultures where people have patrilineal and matrilineal last names, like in Spanish speaking countries. A cousin whose maiden name was Beatriz Diaz Garcia, after marriage becomes Beatriz Perez Diaz (matrilineal last name is removed, husband's patrilineal last name is added). In this case combining multiple last names gets cumbersome. |
I'm not sure if there was any agreement here. |
We may need a tool to begin to create consistent surname Origin data for some statistical analysis. Most of my Tree's "Birth Name" and "Married Name" records do not have the "Origin" or date range defined. (And the date range is kind of ugly since a bride's name date ranges are event date based. In the US patriarchal society following couverture doctrine, a female's Birth name is likely a 'Patrilineal' origin from "'Birth' to 'Marriage'" and her married surname is likely 'Taken' origin from "'Marriage' to 'Death'". Redundant-entry of the date in the Marriage event and the 2 name date ranges seems both excessive and easily overlooked. References to the event as a date placeholder would be lower maintenance for the genealogist.) The SuperTool script created as an Example in a Discourse tutorial shows a rule that could be one option in a Name harmonization tool. It checks if Primary surname(s) matches the Father's Primary surname(s) and, if so, marks the null origins as "Patrilineal". (Looking at this years later, some logic holes are apparent. Shouldn't it be preferring to work with Birth names rather than just Primary?) But without consistent date ranges and origins, is there enough information to extrapolate cultural bias? Because you need to determine the cultural bias to determine which variation of maiden name substitution is appropriate |
For me, I just added a "Married Name" for each woman that is married but have a name different from cultural norms (used in the Calendar and Birthday/Anniversary Reports). Can we close this PR, or move to "draft" status? |
I can see why someone would want to display a name as "Mary Smith née Jones" where "Mary Smith" is the married name and "Mary Jones" is the birth name. At the moment the name displayer doesn't compose a name format from different names. More thought is needed. I don't think that we have a good solution yet. Perhaps as a workaround a new name combining the married name and birth name could be created. |
Maybe if the Origin attribute was more consistently entered then the logic would have more to work with. The SuperTool script to set Patrilineal and Taken origins for Married Names might be a starting point. (And making Surname Guessing also guess Patrilineal origin for children/fathers added while using "Father's surname" default.) There may also be some conflict over whether to use the "Mary Smith née Jones" or "Mary (née Jones) Smith" format for Married Names. The latter works nicely with the couples formats: "Dr. Thomas and Prof. Mary (née Jones) Smith" |
Why
I wanted to add both the married name as well as the maiden name to our family tree. For this I'm using a new substitution key
h
, which tries to find out a person's maiden name (h
was chosen at random because it was still free, I'm open to other suggestions).Example
For example one could use the pattern
$n {born "$n(h)" }
For a person who has a preferred surname which is different from their birth surname this results in:
For a person who did not adopt a new surname,
h
remains empty. This results in:How
The approach for this is:
Caveats
The pattern only woks when the preferred name is the married name (if the preferred name is the birth name it would result in "Mary Bar born Bar"). I was thinking about an additional substitution key to find out the married name, but this is more complicated because there can be multiple married names. I guess one could search for the most recent?