-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathibis.php
62 lines (49 loc) · 1.32 KB
/
ibis.php
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
<?php
return [
/**
* The book title.
*/
'title' => 'Product Engineering',
/**
* The author name.
*/
'author' => 'Tom Halpin',
/**
* The list of fonts to be used in the different themes.
*/
'fonts' => [
// 'calibri' => 'Calibri-Regular.ttf',
// 'times' => 'times-regular.ttf',
],
/**
* Document Dimensions.
*/
'document' => [
'format' => [210, 297],
'margin_left' => 27,
'margin_right' => 27,
'margin_bottom' => 14,
'margin_top' => 14,
],
/**
* Cover photo position and dimensions
*/
'cover' => [
'position' => 'position: absolute; left:0; right: 0; top: -.2; bottom: 0;',
'dimensions' => 'width: 210mm; height: 297mm; margin: 0;',
],
/**
* Page ranges to be used with the sample command.
*/
'sample' => [
[1, 3],
[80, 85],
[100, 103]
],
/**
* A notice printed at the final page of a generated sample.
*/
'sample_notice' => 'Product Engineering - A Tale from the Pet Clinic multi-verse<br>
The novelization of the Online Product Engineering Dojo<br>
<a href="https://github.com/dxc-technology/about-pe-dojo/">Click here</a> for more info.',
];