blob: 13f16b5974dec2e85e5032920722828e99978c95 (
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
77
78
|
# 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=1;
# 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(Name);
# Language
#
# $language="english";
$language="russian";
# Override the encoding
#
$encoding="koi8-r";
#
# Fonts for nodes
#
$belowtextfont='\small';
$abovetextfont='\scriptsize';
#
# descarmA
#
$descarmA = 0.8;
#
# Distances between nodes (in cm)
#
$xdist=3.3;
$ydist=3.3;
#
# 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;
|