/usr/share/lifelines/register-tex.ll is in lifelines-reports 3.0.61-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 | /*
* @progname register-tex.ll
* @version 2.1 of 2004-06-18
* @author Wetmore, David Olsen (dko@cs.wisc.edu), Simms
* @category
* @output LaTeX
* @description
*
* This report prints, in book format, information about all descendants of a
* person and all of their spouses. It tries to understand as many different
* GEDCOM tags as possible. All source iformation (SOUR lines) is in the
* footnotes.
* The output is in LaTeX format.
*
**
** Version 2.1 18 Jun 2004 (Robert Simms)
** Version 2 24 Feb 1993
** Version 1 Nov 1992
**
** Requires LifeLines version 2.3.3 or later
**
**
** Robert Simms (rsimms@ces.clemson.edu)
** Render characters meaningful to the LaTeX system as if they were ordinary characters.
**
** David Olsen (dko@cs.wisc.edu)
** based on work originally done by Tom Wetmore (ttw@cbnews1.att.com).
**
** This report prints, in book format, information about all descendants of a
** person and all of their spouses. It tries to understand as many different
** GEDCOM tags as possible. All source iformation (SOUR lines) is in the
** footnotes.
**
** The output is in LaTeX format. Therefore, the name of the output file
** should end in ".tex". To print (assuming the name of the output file is
** "out.tex"):
** latex out < ignore lots of warnings about underfull \hboxes >
** dvips out
** lpr out.ps
**
** Indexing commands are placed within the LaTeX output. To include an index
** in the document do the following:
** latex out
** makeindex out < not all systems have makeindex available>
** < edit out.tex, uncomment (remove leading '%') from
** the line \input{out.ind} just before \end{document} >
** latex out
** dvips out
** lpr out.ps
** < the last three commands here may be replaced by >
** pdflatex out -- if you have 'pdflatex' and a PDF is
** the desired final product >
**
** I admit that this is lot of post-processing, but the results are worth it.
**
** NOTE ON PAPER SIZES:
** Paper sizes (A4 or letter) can be specified within the LaTeX output,
** but this requires editing by folks who don't like the default.
**
** Since dvips (a neccessary processing step) can take a paper-size
** argument on the command line, it's much simpler to let the user
** specify the desired page size when running dvips (outlined above)
** instead of editing the report/LaTeX output.
**
** Example:
** dvips -t letter out [ for US Letter-sized paper, 8.5x11" ]
** dvips -t a4 out [ for ISO/European A4-sized paper, 8.3x11.7" ]
**
*/
global(opt_xlat)
global(tex_xlat)
proc main ()
{
getindi(indi) /* Get the individual to start with */
/* Print preamble. Feel free to change this to suit your tastes. */
"\\documentstyle[twocolumn]{article}\n"
"\\usepackage{isolatin1}\n\n"
"\\pagestyle{myheadings}\n\n"
"% Shrink the margins to use more of the page.\n"
"% This is taken from fullpage.sty, which is on some systems.\n"
"\\topmargin 0pt\n"
"\\advance \\topmargin by -\\headheight\n"
"\\advance \\topmargin by -\\headsep\n"
"\\textheight 8.9in\n"
"\\oddsidemargin 0pt\n"
"\\evensidemargin \\oddsidemargin\n"
"\\textwidth 6.5in\n\n"
"\\newcounter{childnumber}\n\n"
"% The \\noname command is needed because TeX doesnt like underscores.\n"
"\\newcommand{\\noname}{\\underline{\\ \\ \\ \\ \\ }}\n\n"
"% Environment for printing the list of children.\n"
"\\newenvironment{childrenlist}"
"{\\begin{small}\\begin{list}{\\sc\\roman{childnumber}.}"
"{\\usecounter{childnumber}\\setlength{\\leftmargin}{0.5in}"
"\\setlength{\\labelsep}{0.07in}\\setlength{\\labelwidth}{0.43in}}}"
"{\\end{list}\\end{small}}\n\n"
"% The following commands are used to create the index.\n"
"\\newcommand{\\bold}[1]{{\\bf #1}}\n"
"\\newcommand{\\bfit}[1]{{\\bf\\it #1}}\n"
"\\newcommand{\\see}[2]{{\\it see #1}}\n\n"
"% Command to use at the beginning of each new generation.\n"
"\\newcommand{\\generation}[1]"
"{\\newpage\\begin{center}{\\huge\\bf Generation #1}\\end{center}"
"\\vspace{3ex}\\setcounter{footnote}{0}"
"\\markright{Descendants of " strxlat(tex_xlat, fullname(indi,0,1,40))
"\\hfill Generation #1\\hfill\\ }}\n\n"
"\\makeindex\n\n"
"\\begin{document}\n\n"
"\\title{Descendants of " strxlat(tex_xlat, fullname(indi, 0, 1, 40)) "}\n"
getstrmsg(author, "Enter the author(s) of this document:")
"\\author{" strxlat(tex_xlat, author) "}\n"
"\\date{\\today}\n"
"\\maketitle\n"
getstrmsg(intro, "File that contains introduction (if any):")
if (ne(strcmp(intro, ""), 0)) {
"\\input{" intro "}\n"
}
list(ilist) /* List of individuals */
list(glist) /* List of generation for each individual */
table(stab) /* Table of numbers for each individual */
indiset(idex)
/* LaTeX interprets $, &, %, #, _, {, }, ~, ^, and \ as special characters.
A table is loaded here with the alternatives to make those special
characters appear in the final product. Any text from the database
sent to the LaTeX file to appear as text should be passed through
the function strxlat().
*/
set(opt_xlat, 1)
table(tex_xlat)
insert(tex_xlat, "$", "\\$")
insert(tex_xlat, "&", "\\&")
insert(tex_xlat, "%", "\\%")
insert(tex_xlat, "#", "\\#")
insert(tex_xlat, "_", "\\_")
insert(tex_xlat, "{", "\\{")
insert(tex_xlat, "}", "\\}")
insert(tex_xlat, "~", "\\verb|~|")
insert(tex_xlat, "^", "\\verb|^|")
insert(tex_xlat, "\\", "\\verb|\\|")
enqueue(ilist, indi)
enqueue(glist, 1)
set(curgen, 0)
set(out, 1)
set(in, 2)
while (indi, dequeue(ilist)) {
set(thisgen, dequeue(glist))
if (ne(curgen, thisgen)) {
print("Generation ") print(d(thisgen)) print("\n")
"\n\n\\generation{" d(thisgen) "}\n"
set(curgen, thisgen)
}
print(d(out)) print(" ") print(name(indi)) print("\n")
"\n\\vspace{3ex}\\ \\\\\\begin{center}{\\large\\bf " d(out) ".\\ "
name(indi) "}\\end{center}\n"
insert(stab, save(key(indi)), out)
call longvitals(indi, 1, 2)
addtoset(idex, indi, 0)
set(out, add(out, 1))
families(indi, fam, spouse, nfam) {
"\n\n"
if (eq(0, nchildren(fam))) {
call texname(inode(indi), 0) "\\ and "
if (spouse) {
call texname(inode(spouse), 0)
} else {
"\\noname"
}
"\\ had no children.\n"
} elsif (and(spouse, lookup(stab, key(spouse)))) {
"Children of " call texname(inode(indi), 0) "\\ and "
call texname(inode(spouse), 0) "\\ are shown under "
call texname(inode(spouse), 0)
"\\ (" d(lookup(stab, key(spouse))) ").\n"
} else {
"Children of " call texname(inode(indi), 0) "\\ and "
if (spouse) {
call texname(inode(spouse), 0)
} else {
"\\noname"
}
":\n\\begin{childrenlist}\n"
children(fam, child, nchl) {
set(haschild, 0)
families(child, cfam, cspou, ncf) {
if (ne(0, nchildren(cfam))) { set(haschild, 1) }
}
if (haschild) {
enqueue(ilist, child)
enqueue(glist, add(1, curgen))
"\n\\item[{\\bf " d(in) "}\\ \\hfill"
"\\addtocounter{childnumber}{1}"
"{\\sc\\roman{childnumber}}.]"
set (in, add (in, 1))
call shortvitals(child)
} else {
"\n\\item "
call longvitals(child, 0, 1)
addtoset(idex, child, 0)
}
}
"\\end{childrenlist}\n"
}
}
}
set(basename,
save(substring(outfile(), 1, sub(index(outfile(), ".tex", 1), 1))))
"\n% remove percent-sign at the beginning of the line\n"
"% with the input command if you create the index file\n"
"% using 'makeindex'\n"
"% \\input{" basename ".ind}"
"\n\n\\end{document}\n"
}
/* shortvitals(indi): Displays the short form of the vital statistics (birth
and death only) of an individual. */
proc shortvitals(indi)
{
call texname(inode(indi), 1)
set(b, birth(indi))
set(d, death(indi))
if (and(b, long(b))) { ", b.\\ " strxlat(tex_xlat, long(b)) }
if (and(d, long(d))) { ", d.\\ " strxlat(tex_xlat, long(d)) }
"\n"
}
/* longvitals(i, name_parents, name_type)
Prints out the complete vital statistics of the individual (i). If
name_parents is not 0, then the names of the parents of the individual will
be printed. The parameter name_type is passed to texname. The GEDCOM tags
are divided into ones that would likely occur before getting married and
ones that would likely occur after getting married. Within the two sets
they are printed in the order in which they appear in the database. I
haven't yet figured out a convenient way of indicating the sex. */
proc longvitals(i, name_parents, name_type)
{
call texname(inode(i), name_type) "." call print_sources(inode(i)) "\n"
set(dad, father(i))
set(mom, mother(i))
if (and(name_parents, or(dad, mom))) {
if ( male(i)) { "Son of " }
elsif (female(i)) { "Daughter of " }
else { "Child of " }
if (dad) { call texname(inode(dad), 0) }
if (and(dad, mom)) { "\nand " }
if (mom) { call texname(inode(mom), 0) }
".\n"
}
set(name_found, 0)
fornodes (inode(i), n) {
if (eq(strcmp(tag(n), "ADOP"), 0)) {
call process_event(n, "Adopted")
}
if (eq(strcmp(tag(n), "BAPL"), 0)) {
call process_event(n, "Baptized")
}
if (eq(strcmp(tag(n), "BAPM"), 0)) {
call process_event(n, "Baptized")
}
if (eq(strcmp(tag(n), "BARM"), 0)) {
call process_event(n, "Bar mitzvah")
}
if (eq(strcmp(tag(n), "BASM"), 0)) {
call process_event(n, "Bat mitzvah")
}
if (eq(strcmp(tag(n), "BIRT"), 0)) {
call process_event(n, "Born")
}
if (eq(strcmp(tag(n), "BLES"), 0)) {
call process_event(n, "Blessed")
}
if (eq(strcmp(tag(n), "CAST"), 0)) {
"Caste: " call valuec(n) "."
call print_sources(n) "\n"
}
if (eq(strcmp(tag(n), "CHR"), 0)) {
call process_event(n, "Christened")
}
if (eq(strcmp(tag(n), "CONF"), 0)) {
call process_event(n, "Confirmed")
}
if (eq(strcmp(tag(n), "CONL"), 0)) {
call process_event(n, "Confirmed")
}
if (eq(strcmp(tag(n), "GRAD"), 0)) {
call process_event(n, "Graduated")
}
if (eq(strcmp(tag(n), "NAME"), 0)) {
if (eq(name_found, 0)) {
set(name_found, 1)
} else {
"Also known as " call texname(n, 3) "."
call print_sources(n) "\n"
}
}
if (eq(strcmp(tag(n), "NAMR"), 0)) {
"Religious name: " call valuec(n) "."
call print_sources(n) "\n"
}
if (eq(strcmp(tag(n), "NATI"), 0)) {
"Nationality: " call valuec(n) "."
call print_sources(n) "\n"
}
if (eq(strcmp(tag(n), "ORDN"), 0)) {
call process_event(n, "Ordained")
}
if (eq(strcmp(tag(n), "RELI"), 0)) {
"Religious affiliation: " call valuec(n) "."
call print_sources(n) "\n"
}
if (eq(strcmp(tag(n), "TITL"), 0)) {
"Title: " value(n) "."
call print_sources(n) "\n"
}
}
if (eq(1, nfamilies(i))) {
families(i, f, s, n) {
"Married" call print_sources(fnode(f))
call spousevitals(s, f)
}
} else {
families(i, f, s, n) {
"Married " ord(n) "," call print_sources(fnode(f))
call spousevitals(s, f)
}
}
fornodes (inode(i), n) {
if (eq(strcmp(tag(n), "BURI"), 0)) {
call process_event(n, "Buried")
}
if (eq(strcmp(tag(n), "CENS"), 0)) {
call process_event(n, "Listed in census")
}
if (eq(strcmp(tag(n), "CHRA"), 0)) {
call process_event(n, "Christened (as an adult)")
}
if (eq(strcmp(tag(n), "DEAT"), 0)) {
call process_event(n, "Died")
}
/* One part of the GEDCOM standard says the tag should be DSCR,
another part says DESR. */
if (eq(strcmp(tag(n), "DESR"), 0)) {
"Description: " call valuec(n)
call print_sources(n) "\n"
}
if (eq(strcmp(tag(n), "EVEN"), 0)) {
call process_event(n, value(n))
}
if (eq(strcmp(tag(n), "NATU"), 0)) {
call process_event(n, "Naturalized")
}
if (eq(strcmp(tag(n), "OCCU"), 0)) {
"Occupation: " call valuec(n) "."
call print_sources(n) "\n"
}
if (eq(strcmp(tag(n), "PROB"), 0)) {
call process_event(n, "Will probated")
}
if (eq(strcmp(tag(n), "PROP"), 0)) {
"Possessions: " call valuec(n) "."
call print_sources(n) "\n"
}
if (eq(strcmp(tag(n), "RETI"), 0)) {
call process_event(n, "Retired")
}
if (eq(strcmp(tag(n), "WILL"), 0)) {
call process_event(n, "Will dated")
}
}
call print_notes(inode(i), "\n\n")
}
/* spousevitals (spouse, fam)
Prints out information about a marriage (fam) and about a spouse in the
marriage (spouse). */
proc spousevitals (spouse, fam)
{
if (e, marriage(fam)) {
call print_event(e) "," call print_sources(e) " "
}
"\n"
if (spouse) {
call texname(inode(spouse), 3)
call print_sources(inode(spouse))
set(bir, birth(spouse))
set(chr, baptism(spouse))
set(dea, death(spouse))
set(bur, burial(spouse))
set(dad, father(spouse))
set(mom, mother(spouse))
if (or(bir, chr, dea, bur, mom, dad)) {
"\n("
if (bir) {
"born" call print_event(bir)
if (or(dea, bur, mom, dad)) { "," }
call print_sources(bir)
if (or(dea, bur, mom, dad)) { "\n" }
}
if (and(chr, not(bir))) {
"christened" call print_event(chr)
if (or(dea, bur, mom, dad)) { "," }
call print_sources(chr)
if (or(dea, bur, mom, dad)) { "\n" }
}
if (dea) {
"died" call print_event(dea)
if (or(mom, dad)) { "," }
call print_sources(dea)
if (or(mom, dad)) { "\n" }
}
if (and(bur, not(dea))) {
"buried" call print_event(bur)
if (or(mom, dad)) { "," }
call print_sources(bur)
if (or(mom, dad)) { "\n" }
}
if (or(mom, dad)) {
if ( male(spouse)) { "son of " }
elsif (female(spouse)) { "daughter of " }
else { "child of " }
if (dad) { call texname(inode(dad), 3) }
if (and(mom, dad)) { " and " }
if (mom) { call texname(inode(mom), 3) }
}
")"
}
} else {
"\\noname"
}
".\n"
}
/* texname (i, type)
Prints an individual's name in LaTeX format, with the surname in small caps.
For example, "David Kenneth /Olsen/ Jr." would be printed as
"David Kenneth {\sc Olsen} Jr.". The type argument determines how the name
will appear in the index.
type = 0: no index
type = 1: page number appears in bold
type = 2: page number appears in bold-italics
type = 3: page number appears in normal text
The parameter i can be either an INDI node (NOT an individial) or a
NAME node. */
proc texname (i, type)
{
list(name_list)
set(sname, "")
extractnames(i, name_list, num_names, surname_no)
forlist (name_list, nm, num) {
if (eq(num, surname_no)) {
if (eq(strcmp(nm, ""), 0)) {
" \\noname"
set(sname, "\\noname")
} else {
" {\\sc " strxlat(tex_xlat, save(nm)) "}"
set(sname, nm)
}
} else {
" " strxlat(tex_xlat, nm)
}
}
if (gt(type, 0)) {
"\\index{" strxlat(tex_xlat, sname)
if (gt(num_names, 1)) { "," }
forlist (name_list, nm, num) {
if (ne(num, surname_no)) {
" " strxlat(tex_xlat, nm)
}
}
if (eq(type, 1)) { "|bold"}
elsif (eq(type, 2)) { "|bfit"}
"}"
}
}
/* process_event (event_node, event_name)
Prints information about a particular event (event_node, which is a GEDCOM
node). event_name is verb form of the text describing the event (such as
"Born", "Died", etc.). */
proc process_event (event_node, event_name)
{
event_name
call print_event(event_node) "."
call print_sources(event_node)
call print_notes(event_node, " ") "\n"
}
/* print_event (event_node): Prints the date and place of an event. */
proc print_event (event_node)
{
if (date(event_node)) { " " strxlat(tex_xlat, date(event_node)) }
if (place(event_node)) { " at " strxlat(tex_xlat, place(event_node)) }
}
/* print_notes (root, sep): Prints all the notes (NOTE nodes) associated with
the GEDCOM line root, separated by the given separator. */
proc print_notes (root, sep)
{
fornotes (root, note) {
sep strxlat(tex_xlat, note) " "
}
}
/* print_sources (root)
Prints all sources (SOUR lines) associated with the given GEDCOM line. The
sources are formated as LaTeX footnotes. This routine prints each SOUR line
as a separate footnote, which is not correct. This should be corrected so
that all sources are combined into a single footnote. */
proc print_sources (root)
{
fornodes (root, n) {
if (eq(strcmp(tag(n), "SOUR"), 0)) {
"\\footnote{" call valuec(n) "}"
}
}
}
/* valuec(n): Prints the value of a GEDCOM node and the values of any CONT
lines associated with it. */
proc valuec(n)
{
value(n)
fornodes (n, n1) {
if (eq(strcmp(tag(n1), "CONT"), 0)) {
"\n" strxlat(tex_xlat, value(n1))
}
}
}
/*
** function: strxlat
**
** This idea was copied and/or adapted from Jim Eggert's modification
** to the ps-circ(le) program for LifeLines.
** A typical call would look like:
** set(str, strxlat(tex_xlat, name(person)))
** which would translate characters in person's name according to the
** table called tex_xlat -- which escapes the special characters being
** displayed as text via LaTeX. The output is assigned to str.
** The output of strxlat() can also be sent directly to output.
**
*/
func strxlat(xlat, string)
{
if(opt_xlat) {
set(fixstring, "")
set(pos, 1)
while(le(pos, strlen(string))) {
set(char, substring(string, pos, pos))
if(special, lookup(xlat, char)) {
set(fixstring, concat(fixstring, special))
} else {
set(fixstring, concat(fixstring, char))
}
incr(pos)
}
} else {
set(fixstring, string)
}
return(save(fixstring)) /* save() is for compatibilty with older LL */
}
|