blob: 5ce3a8d3037a568556298b50a11a48e3188b1bc4 (
plain)
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
|
# An example configuration file for pedigree program
# This file is used for the examples in the program manual.
# Do we want to have a full LaTeX file or just a fragment?
#
$fulldoc=0;
# What kind of document do we want
#
# $documentheader='\documentclass[landscape]{article}';
# Define additional packages here
#
# $addtopreamble=<<END;
# \\usepackage{pst-pdgr}
# END
# Do we want to print a legend?
#
$printlegend=0;
# Fields to include in the legend. Delete Name for privacy
# protection.
#
@fieldsforlegend = qw(Name DoB AgeAtDeath Comment);
#
# Fields to put at the node. Delete Name for privacy
# protection.
#
@fieldsforchart = qw();
# Language
#
# $language="russian";
$language="english";
# Override the encoding
#
# $encoding="koi8-r";
#
# Fonts for nodes
#
$belowtextfont='\small';
$abovetextfont='\scriptsize';
#
# descarmA
#
$descarmA = 0.9;
#
# Distances between nodes (in cm)
#
$xdist=1.5;
$ydist=1.8;
#
# Maximal width and height of the pedigree in cm.
# Set this to 0 to switch off scaling
#
$maxW = 15;
$maxH = 19;
#
# Whether to rotate the page. The values are 'yes', 'no' and 'maybe'
# If 'maybe' is chosen, the pedigree is rotated if it allows better
# scaling
#
$rotate = 'maybe';
# Must be the last line
#
1;
|