summaryrefslogtreecommitdiff
path: root/info/mathtrip/src/SpecificDimentions.sty
blob: fdc342efb9c7d4d0224444580f1907702765fd42 (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
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
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
%This files describe some lengths useful to setup correctly
%the file "cheat.tex". 
%
%Since these lengths are closely related to the
%fonts used, one can use the variable "\PoliceDocument" from
%the package "ChoixPolice" to define them specifically.
%
%Generally some parameters for the dimentions are always present.
%These parameters are used to contain:
%        — the width of the first columns
%          of each page. The width of the last column
%          in the page is computed by substracting the width of
%          the first columns from the total width allocated for the
%          document.
%        — the height (in number of lines) of the horizontal areas of
%          the page. Most of the text is displayed on block of one (or
%          more) columns and many lines. Playing with these values
%          has the effect of moving the text inside the block.
%        — a dimention to space the different formulae used in the page
%        — a dimention to manage the space to let before a title in the page
%In addition each block might have two dimentions to move it verticaly and horizontaly.
%
%The other dimentions are generally much more specific to the layout of
%the page.
%          

%This length is the width of the table used on each page
\newlength{\TableWidth}
\setlength{\TableWidth}{195mm}


%All the variables are prefixed with "Tx" where x is a number
%corresponding to the page of the document "cheat.tex".

%
%Page 1
%
\newlength{\TOneColOne}
%The length to push the area of the definitions in the first column
\newlength{\TOnePushDef}
%and the length to push the area of the second part of the
%identities (FormulaB).
\newlength{\TOnePushFormulaeB}
%This is the dimentions of the three horizontal areas of the page
%The parts about Series, Formula first part and formula second part
\newcounter{TOneSeriesPart}
\newcounter{TOneFormulaeAPart}
\newcounter{TOneFormulaeBPart}
%The interline space for the formulae in the part about Series and
%the two parts with some general identities.
\newlength{\TOneInterlineSeries}
\newlength{\TOneInterlineFormulaeA} %First part
\newlength{\TOneInterlineFormulaeB} %Second part
%And the one to move the the horizontal area (containing the definition)
%horizontally
\newlength{\TOneMoveDef}
%Space before a title in page one
\newlength{\TOneInterTitle}
%Space between the definition in the column 1
\newlength{\TOneInterlineDef}
%
%Page 2
%
%Horizontal area of the three zones (Identities, Trees and Recurences)
%of the table in page 2
\newcounter{TTwoIdentitiesPart}
\newcounter{TTwoTreesPart}
\newcounter{TTwoRecurencesPart}
%Space to let before math in display mode (normal and short) in page 2
\newlength{\TTwoDisplaySpace}
\newlength{\TTwoDisplayShortSpace}
%Space before a title in page two
\newlength{\TTwoInterTitle}
%Space between the paragraphs in the text about recurence
%on the page 2
\newlength{\TTwoRecurParSkip}
%The space between the lines of formulae in the first part of the
%page
\newlength{\TTwoInterlineFormulae}
%
%Page 3
%
\newlength{\TThreeColOne}
\newlength{\TThreeColTwo}
\newlength{\TThreeColThree}
\newlength{\TThreeColFour}
%These are the horizontal dimestions for the following parts:
%          1) The columns with the numbers
%          2) The Pascal's triangle
%          3) The general part
%          4) The probability part in the fourth column
%          5) The probability part in the fiveth column.
%of the 'General' and 'Pascal's triangle' part
\newcounter{TThreeNumbersPart}
\newcounter{TThreePascalPart}
\newcounter{TThreeGeneralPart}
\newcounter{TThreeProbAPart}
\newcounter{TThreeProbBPart}
%The interline to use in the three first columns
%containing the numbers (i, power 2, and prime)
\newlength{\TThreeInterlineNumbers}
%And the interline of Pascal's triangle.
\newlength{\TThreeInterlinePascal}
%This one is used for the first probability block wich start
%with "Normal (Gaussian)..." on page 3
\newlength{\TThreeMoveProbA}
%This dimention is used to push the block of
%probability starting with 'Binomial Distribution' (ProbPartB)
\newlength{\TThreeMoveProbB}
%Space to let before math in display mode (normal and short) in page 3
\newlength{\TThreeDisplaySpace}
\newlength{\TThreeDisplayShortSpace}
%Space to let between intertitle in page 3
\newlength{\TThreeInterTitle}
%
%Page 4
%
\newlength\TFourColOne
\newlength\TFourColTwo
\newlength\TFourColThree
%The page 4 is mainly 3 column with the column
%2 roughly divided in 4 horizontal areas.
%One area for matrix, one for the hyperbolic function,
%one for the trigonometric table and one for the quote
%and copyright.
\newcounter{TFourMatrix}
\newcounter{TFourHyperbolic}
\newcounter{TFourTrig}
\newcounter{TFourQuote}
%These both lengths are used to push up the content of the
%column one and three
\newlength\TFourPushTrig
\newlength\TFourPushMoreTrig
%Space to let between intertitle in page 4
\newlength{\TFourInterTitle}
%Space to let before math in display mode (normal and short) in page 4
\newlength{\TFourDisplaySpace}
\newlength{\TFourDisplayShortSpace}
%Interline for formulae on page 4
\newlength{\TFourSkipFormulae}
%
%Page 5
%
\newlength\TFiveColOne
\newlength\TFiveColTwo
%Size (in number of lines) of the three main columns and
%the area used for the quote
\newcounter{TFiveNumberTheoryCol}
\newcounter{TFiveGeometryCol}
\newcounter{TFiveGraphCol}
\newcounter{TFiveQuoteArea}
%Space to let before math in display mode (normal and short) in page 5
\newlength{\TFiveDisplaySpace}
\newlength{\TFiveDisplayShortSpace}
%Space to let between intertitle in page 5
\newlength{\TFiveInterTitle}
%Space to move verticaly the column with the projective
%geometry
\newlength{\TFivePushGeometry}
%And the column about the 'Graph Theory'
\newlength{\TFivePushGraph}
%This value is used in the page 5 to align some formula
%to the left margin 
%For a strange reason an indent is always remaining even
%with the environment "flalign".
\newlength{\TFiveCalcEqLeftMargin}
%Big space to add or remove around mathematics. For a strange reason there is
%too much space around math environment.
\newlength{\TFiveBigSpaceAroundEq}
%and small space around equation
\newlength{\TFiveSmallSpaceAroundEq}
%Width of the first column on page 6
\newlength{\TSixColumnOne}
%The number of lines used for the Pi area
\newcounter{TSixHorizontalPiPart}
%The number of lines used for the partial fractions area
\newcounter{TSixHorizontalPartialFracPart}
%The number of lines used for the quote
\newcounter{TSixHorizontalQuotePart}
%Space to let before math in display mode (normal and short) in page 6
\newlength{\TSixDisplaySpace}
\newlength{\TSixDisplayShortSpace}
%Space to let before the intertitle in page 6
\newlength{\TSixInterTitle}
%Interline before the formulae on page 6
\newlength{\TSixSkipFormulae}
%Length of the rule in column 2 of page 6 to push
%text toward the top of the column
\newlength\TSixPushCalculus
%Interline for formulae on page 7
\newlength{\TSevenSkipFormulae}
%Number of lines of the only column of page 7
\newcounter{TSevenHorizontalCalculusPart}
%Width of the first column from the tabular environment on page 8
\newlength{\TEightFirstColWidth}
%Number of line of the two horizontal areas
\newcounter{TEightHorizontalCalculusPart}
%The number of line used for the part with the binomial? development
\newcounter{TEightHorizontalPowerPart}
%The height of the 'finite calculus' part
\newcounter{TEightHorizontalFiniteCalculusPart}
%Space to let before the intertitle in page 8
\newlength{\TEightInterTitle}
%Interline for formulae (in calculus part) on page 8
\newlength{\TEightBaselineSkipFormulae}
%To separe the formulae used in the column 'FiniteCalculus'
%instead of the formulae of the first column.
\newlength{\TEightBaselineSkipFormulaeB}
%Space to let before math in display mode (normal and short) in page 8
\newlength{\TEightDisplaySpace}
\newlength{\TEightDisplayShortSpace}
%Width of the first column from the tabular environment on page 9
\newlength{\TNineColOne}
%Space to let before math in display mode (normal and short) in page 9
\newlength{\TNineDisplaySpace}
\newlength{\TNineDisplayShortSpace}
%Space to let between intertitle in page 9
\newlength{\TNineInterTitle}
%The page has 2 column and one area containing
%a lot of series (plus some lines with title)
%
%This counter wil contain the number of line of the
%area of the first column with the series
\newcounter{TNineHorizontalSeriesColOne}
%For the second column about series in the first horizontal area.
\newcounter{TNineHorizontalSeriesColTwo}
%The number of line used for the citation of L. Kronecker
\newcounter{TNineHorizontalQuote}
%
%Space between all the taylor serie expansion in page 9
\newlength{\TNineExpansionSkip}
%Length of the rule in column 2 of page 9 to push
%text toward the top of the column
\newlength\TNinePushSeries
%This is the width of the first column of page 10
\newlength{\TTenColOne}
%This is the width of the second column of page 10
%The length of the third column is computed automatically
%with the dimentions of the two first columns.
\newlength{\TTenColTwo}
%Space to let between intertitle in page 10
\newlength{\TTenInterTitle}
%
%Space to be used in a rule to push up the text in the column
%with the series on page 10
\newlength\TTenPushSeries
%
%Space between all the serie expansion in page 10
\newlength{\TTenExpansionSkip}
%Space to let before math in display mode (normal and short) in page 10
\newlength{\TTenDisplaySpace}
\newlength{\TTenDisplayShortSpace}
%The page the can be divided in 4 horizontal parts. The following value
%are the number of lines used bythese three parts. 
\newcounter{TTenHorizontalPartOne} %The area with the series and the image
\newcounter{TTenHorizontalPartTwo} %The area with the series and the Stieltjes intergration
\newcounter{TTenHorizontalPartThree} %The area with the cramer's rule and the ibonacci numbers
\newcounter{TTenHorizontalPartFour}  %The area with the quote and the magic square.

%This value is the space which should be let before printing 
%the number of a formula. Depending of the size of the font, one might
%wish to change it. This value is not necessarly
%related to a specific page.
\newlength{\SpaceBeforeFormula} 
%This value is the space to let before a long equation (a long equation has
%at most two equal signs and the formula at most 3 parts)
\newlength{\SpaceBeforeLongEq}
%This value is the interline space used when displaying formulae
%preceded by a number. This length is not related to a specific page
%and it is used inside the environment 'DisplayFormulae'.
\newlength{\BaseLineSkipFormulae}
%The length added between two formulae inside the environment
%'DisplayFormulae' when using the '\Fm' family
\newlength{\InterFormulaeSkip}
%Counter for the number of lines to add in an environment
%'NiceTabular' when a block is used.
%
%If two blocks in the same rows have different number of lines
%the biggest number should be used to add the lines necessary
%to the environment.
\newcounter{NbLinesToAdd}

%This command define the default values for the document.
%These values are related to the font "NeoHellenic" which
%was the first font used to typeset the document.
%
%The command has no parameter
\newcommand\DefaultDimentions{%
  %
  %Page 1
  %
  %Size of the font used to typeset the formulae (part 1 and 2)
  \newcommand{\TOneFormulaeFontSize}{\fontsize{8.8pt}{9.6pt}\selectfont}
  %Size of the font to typeset the part about the Series
  \newcommand{\TOneSeriesFontSize}{\relax}
  %Size of the font used to type the definitions (the two first columns)
  \newcommand{\TOneDefinitionsFontSize}{\footnotesize}
  \setlength{\TOneColOne}{6.9cm}
  \defcounter{TOneFormulaeAPart}{18}
  \deflength{\TOneInterTitle}{1ex plus .5ex minus .5ex}
  \deflength{\TOneInterlineSeries}{3ex plus .5ex minus .5ex}
  \deflength{\TOneInterlineFormulaeA}{4.2ex plus .5ex minus .5ex}
  \deflength{\TOnePushDef}{55ex}
  \deflength{\TOneMoveDef}{-.8em}
  \defcounter{TOneSeriesPart}{26}
  \defcounter{TOneFormulaeBPart}{14}
  \deflength{\TOneInterlineDef}{-2ex plus .2ex minus .5ex}
  \deflength{\TOneInterlineFormulaeB}{3.6ex plus .5ex minus .5ex}
  \deflength{\TOnePushFormulaeB}{0ex}
  \ifluatex
     %luatex seems to typeset differently when the white space is scarce
     %and the dimention for the writing tiny. Thus few parameters
     %should be specifically adapted.
     \defcounter{TOneSeriesPart}{25}
     \defcounter{TOneFormulaeBPart}{15}
     \deflength{\TOneInterlineDef}{-2.4ex plus .2ex minus .5ex}
     \deflength{\TOneInterlineFormulaeB}{2.5ex plus .35ex minus .35ex}
     \deflength{\TOnePushFormulaeB}{3ex}
  \fi
  %Page 2
  \defcounter{TTwoIdentitiesPart}{16}
  \defcounter{TTwoTreesPart}{4}
  \defcounter{TTwoRecurencesPart}{38}
  %Size of the font to type the recurence part
  \newcommand\TTwoRecurenceFontSize{\fontsize{9.6pt}{10.2pt}\selectfont}
  %Size of the font for the part about the tree
  \newcommand\TTwoTreeFontSize{\relax}
  \setlength{\TTwoDisplaySpace}{0pt plus 1pt minus 1.5pt}
  \setlength{\TTwoDisplayShortSpace}{0pt plus 1pt minus 1pt}
  \setlength{\TTwoInterTitle}{1ex plus .5ex minus .5ex}
  \setlength{\TTwoRecurParSkip}{.3ex plus .5ex minus 0ex}
  \setlength{\TTwoInterlineFormulae}{3.4ex plus 1ex minus 1ex}
  %Size of the font to typeset the formulae in the first part of the page
  \newcommand\TTwoFormulaeFontSize{\relax}
  \setlength{\TTwoInterlineFormulae}{3.4ex plus 1ex minus 1ex}
  \ifluatex
     \renewcommand\TTwoFormulaeFontSize{\fontsize{9.4pt}{9.8pt}\selectfont}
     \setlength{\TTwoInterlineFormulae}{3.1ex plus 1ex minus 1ex}
  \fi
  %
  %Page 3
  %
  \setlength{\TThreeColOne}{4mm}
  \setlength{\TThreeColTwo}{2.4cm}
  \setlength{\TThreeColThree}{6mm}
  \setlength{\TThreeColFour}{6.4cm}
  \defcounter{TThreeNumbersPart}{43}
  \defcounter{TThreePascalPart}{12}
  \defcounter{TThreeGeneralPart}{45}
  \defcounter{TThreeProbAPart}{12}
  \defcounter{TThreeProbBPart}{45}
  %Font size for the three first column of numbers
  \newcommand\TThreeNumbersFontSize{\relax}
  %Font size for the pascal's triangle
  \newcommand\TThreePascalFontSize{\fontsize{7.6pt}{8pt}\selectfont}
  \setlength{\TThreeDisplaySpace}{0ex plus .5ex minus .1ex}
  \setlength{\TThreeDisplayShortSpace}{0ex plus .5ex minus .1ex}
  \setlength{\TThreeInterlineNumbers}{3.6ex plus 1ex minus 1ex}
  \setlength{\TThreeInterlinePascal}{2.75ex plus 1ex minus 1ex}
  \setlength{\TThreeInterTitle}{.75ex plus .5ex minus .5ex}
  \setlength{\TThreeMoveProbA}{29.75ex}
  \setlength{\TThreeMoveProbB}{0ex}
  \ifluatex
      \setlength{\TThreeMoveProbB}{-1ex}%To move the parbox up
  \fi
  %
  %Page 4
  %
  \setlength{\TFourColOne}{7.3cm}
  \setlength{\TFourColTwo}{7.5cm}
  \deflength{\TFourPushTrig}{63ex}
  \deflength{\TFourPushMoreTrig}{34ex}
  \defcounter{TFourMatrix}{25}
  \defcounter{TFourHyperbolic}{26}
  \defcounter{TFourTrig}{5}
  \defcounter{TFourQuote}{3}
  \setlength{\TFourInterTitle}{2ex plus .25ex minus 1ex}
  \setlength{\TFourDisplaySpace}{0ex plus .5ex minus .1ex}
  \setlength{\TFourDisplayShortSpace}{0ex plus .5ex minus .1ex}
  \setlength{\TFourSkipFormulae}{3ex plus 1ex minus 1ex}
  \newcommand\TFourColOneFontSize{\relax}
  \newcommand\TFourColTwoFontSize{\relax}
  \newcommand\TFourColThreeFontSize{\relax}
  %Fonts for the quote, the version and the table of trig
  %value
  \newcommand\TFourCopyrightFontSize{\scriptsize}
  \newcommand\TFourTrigTableFontSize{\footnotesize}
  %Scale factor of the drawing of the trigonometric circle and pythagorean triangle
  %at the beginning of Columnn one (when draw with Tikz)
  \newcommand\TFourTrigOneScale{0.8}
  \newcommand\TFourQuoteFontSize{\relax}
  \ifluatex
     \setlength{\TFourSkipFormulae}{2.7ex plus 1ex minus 1ex}
     \renewcommand\TFourQuoteFontSize{\fontsize{9.6pt}{10.2pt}\selectfont}
  \fi
  %
  %Page 5
  %
  \setlength{\TFiveColOne}{6.3cm}
  \setlength{\TFiveColTwo}{7cm}
  \defcounter{TFiveNumberTheoryCol}{51}
  \defcounter{TFiveGeometryCol}{48}
  \defcounter{TFiveGraphCol}{54}
  \defcounter{TFiveQuoteArea}{5}
  \setlength{\TFiveInterTitle}{1ex plus .5ex minus .5ex}
  \setlength{\TFivePushGeometry}{.75ex}
  \setlength{\TFivePushGraph}{.5ex}
  \ifluatex
     \defcounter{TFiveNumberTheoryCol}{53}
     \defcounter{TFiveGeometryCol}{48}
     \defcounter{TFiveGraphCol}{56}
     \defcounter{TFiveQuoteArea}{4}
     \setlength{\TFiveInterTitle}{.75ex plus .5ex minus .5ex}
     \setlength{\TFivePushGeometry}{-.25ex}
     \setlength{\TFivePushGraph}{.5ex}
  \fi
  %Size of the font of the second column (file "graph.tex" and graph2.tex)
  \newcommand\TFiveGraphFontSize{\fontsize{9.2pt}{10pt}\selectfont}
  %Font size of the text in column one
  \newcommand\TFiveColOneFontSize{\relax}
  %Size of the geometry part of the third column on page 5
  \newcommand\TFiveGeomFontSize{\relax}
  \setlength{\TFiveDisplaySpace}{0ex plus .5ex minus .1ex}
  \setlength{\TFiveDisplayShortSpace}{0ex plus .5ex minus .1ex}
  %
  %Page 6
  %
  \setlength{\TSixColumnOne}{6.8cm}
  \defcounter{TSixHorizontalPiPart}{26}
  \defcounter{TSixHorizontalPartialFracPart}{25}
  \defcounter{TSixHorizontalQuotePart}{7}
  \deflength{\TSixDisplaySpace}{0ex plus .5ex minus .1ex}
  \deflength{\TSixDisplayShortSpace}{0ex plus .5ex minus .1ex}
  \deflength{\TSixInterTitle}{1ex plus .5ex minus 1ex}
  \deflength{\TSixSkipFormulae}{3.8ex plus 1ex minus 2ex}
  \deflength{\TSixPushCalculus}{69.5ex}
  %Size of the fonts in the three text of the column one: pi.tex, partial.tex and quote3.tex.
  \newcommand\TSixPiFontSize{\relax}
  \newcommand\TSixPartialFontSize{\relax}
  \newcommand\TSixQuoteFontSize{\relax}
  %And the size of the font for the column two (calculus formulae)
  \newcommand\TSixColTwoFontSize{\relax} 
  %
  %Page 7
  %
  \setlength{\TSevenSkipFormulae}{3.8ex plus 1ex minus 2ex}
  %Size of font at page 7
  \newcommand\TSevenSeriesCalculusFontSize{\relax}
  \defcounter{TSevenHorizontalCalculusPart}{59}
  %
  %Page 8
  %
  \deflength{\TEightFirstColWidth}{12.2cm}
  \defcounter{TEightHorizontalCalculusPart}{43}
  \defcounter{TEightHorizontalFiniteCalculusPart}{44}
  \defcounter{TEightHorizontalPowerPart}{14}
  %Define a new command to define the font's size to typeset the calulus and finite calculus
  %and the formulae on the second line first column on page 8
  \newcommand\TEightSeriesCalculusFontSize{\fontsize{9.2pt}{9.8pt}\selectfont}
  \newcommand\TEightSeriesFiniteCalculusFontSize{\relax}
  \newcommand\TEightSeriesFactAFontSize{\fontsize{9.2pt}{9.8pt}\selectfont}
  \deflength{\TEightInterTitle}{1ex plus .5ex minus 1ex}
  \deflength{\TEightDisplaySpace}{0ex plus .5ex minus .1ex}
  \deflength{\TEightDisplayShortSpace}{0ex plus .5ex minus .1ex}
  \deflength{\TEightBaselineSkipFormulae}{4ex plus .5ex minus 1ex}
  \deflength{\TEightBaselineSkipFormulaeB}{1ex plus .5ex minus 1ex}
  \ifluatex
     \deflength{\TEightInterTitle}{1.75ex plus .5ex minus 1ex}
  \fi
  %
  %Page 9
  %
  \deflength{\TNineColOne}{12.5cm}
  \deflength{\TNineDisplaySpace}{0ex plus .5ex minus .5ex}
  \deflength{\TNineDisplayShortSpace}{0ex plus .5ex minus .1ex}
  \deflength{\TNineInterTitle}{2ex plus .1ex minus 1ex}
  \deflength{\TNineExpansionSkip}{2ex plus .5ex minus .5ex}
  \deflength{\TNinePushSeries}{0ex}
  \defcounter{TNineHorizontalSeriesColOne}{51} 
  \defcounter{TNineHorizontalSeriesColTwo}{48} 
  \defcounter{TNineHorizontalQuote}{6} 
  %Define a new command to define the font's size to typeset the series page 9
  \newcommand\TNineSeriesFontSize{\relax}
  %
  %Page 10
  %
  \setlength{\TTenColOne}{7.5cm}
  \setlength{\TTenColTwo}{5.6cm}
  \setlength{\TTenInterTitle}{1ex plus .5ex minus .5ex}
  \defcounter{TTenHorizontalPartOne}{13} %13 tabular lines
  \defcounter{TTenHorizontalPartTwo}{23} 
  \defcounter{TTenHorizontalPartThree}{14} 
  \defcounter{TTenHorizontalPartFour}{5} 
  \setlength{\TTenExpansionSkip}{1.75ex plus .5ex minus 1ex}
  \setlength{\TTenDisplaySpace}{0ex plus .5ex minus .1ex}
  \setlength{\TTenDisplayShortSpace}{0ex plus .5ex minus .1ex}
  \setlength{\TTenPushSeries}{4ex}
  %Define a new command to define the font's size to typeset the magic square at page 10
  \newcommand\TTenMagicSquareFontSize{\tiny}
  %Define a new command to define the font's size to typeset the Stieljes integration page 10
  %For most font, one can use the standard size and has nothing to do
  \newcommand\TTenStieljesFontSize{\relax}
  %Define a new command to define the font's size to typeset the cramer's rule page 10
  %For most font, one can use the standard size and has nothing to do
  \newcommand\TTenCramerFontSize{\relax}
  %Define a new command to define the font's size to typeset the series formulae on page 10
  %For most font, one can use the standard size and has nothing to do
  \newcommand\TTenSeriesFontSize{\relax}
  %Font to use for the definition and properties of the Fibonacci
  %numbers.
  \newcommand\TTenFibonacciFontSize{\relax}
  %
  %--------------------------General values--------------------
  %
  %Normally these value should not be modified when changing
  %the font in which the document is typeseted.
  \deflength{\SpaceBeforeLongEq}{2ex plus .5ex minus .5ex}
  \deflength{\InterFormulaeSkip}{.3em plus .05em minus .1em}
  \deflength{\SpaceBeforeFormula}{10pt}
  \deflength{\BaseLineSkipFormulae}{3.7ex plus 1ex minus 1ex}
  %Remove all the margin in the left margin of the equations:
  %all the spacing will be managed manually to be able to do typeseting
  %as precisely as possible.
  \deflength{\@mathmargin}{0pt}
}

%This macro set the definition for the lmodern fonts.
%A macro is useful since these modification of parameters are
%used at many places in the code (notably when "lmodern" fonts is choosen
%for the default behaviour with 8bits TeX).
%
%This macro has no parameter
\newcommand\LModernDimentions{%
  \setlength{\TOneColOne}{2.65cm}
  \setlength{\TOneColTwo}{4.6cm}
  \setlength{\TOneMoveSums}{5.25cm}
  \setlength{\TOneSpaceSums}{-0.8ex plus .2ex minus .3ex}
  \setlength{\TOneMoveFormulaeA}{3.9cm}
  \setlength{\TOneSeriesTitleSpace}{-1.4\baselineskip plus .2\baselineskip minus .1\baselineskip}
  \setlength{\TOneSeriesEqLeftMargin}{-2.50em}
  \setlength{\TOneThirdColumnMargin}{0.5em}
  \setlength{\TOneSepareBlockFormulae}{0pt}
  \setlength{\TOneColBPar}{.5ex plus .2ex minus .1ex}
  \setlength{\SpaceBeforeFormula}{10pt}
  \setlength{\BaseLineSkipFormulae}{5ex plus 1ex minus 1ex}
  \renewcommand{\TTwoFormulaeFontSize}{\small}
  \setlength{\TTwoColumnTree}{3cm}
  \setlength{\TTwoColumnFormulae}{\TableWidth-\TTwoColumnTree-\tabcolsep-10pt}
  \setlength{\TTwoColumnOne}{6cm}
  \setlength{\TTwoColumnTwo}{6.3cm}
  \setlength{\TTwoColumnThree}{6cm}
  \setlength{\TThreeColumnFour}{6cm}
  \setlength{\TThreeInterTitle}{1.5ex plus .5ex minus .5ex}
  \setlength{\TThreeStrutRaise}{-1.5ex}
  \setlength{\TThreeStrutLength}{3.8ex}
  \setlength{\TThreeAckermannEqLeftMargin}{-1cm}
  \setlength{\TThreeBinomialEqLeftMargin}{-0.8cm}
  \setlength{\TThreeEspEqLeftMargin}{0pt}
  \setlength{\TThreeProbEqLeftMargin}{-.8cm}
  \setlength{\TThreeIncExcEqLeftMargin}{-0.8cm}
  \setlength{\TFourColOne}{.37\TableWidth}
  \setlength{\TFourColTwo}{.39\TableWidth}
  \setlength{\TFourColThree}{.20\TableWidth}
  \setlength{\TFourSkipFormulae}{18pt}
  \setlength{\TFourMoveVersion}{-1.75cm}
  \setlength{\TFourPosColTwo}{-.75\fboxsep}
  \setlength{\TFourVersionWidth}{.92\TFourColOne}
  \setlength{\TFourMoreIdentSpace}{2ex}
  \setlength{\TFiveColOne}{6.0cm}
  \setlength{\TFiveColTwo}{6.8cm}
  \renewcommand\TFiveColOneFontSize{\small}
  \renewcommand\TFiveGraphFontSize{\small}
  \setlength{\TFiveCalcEqLeftMargin}{-2em}
  \setlength{\TEightFirstColWidth}{12.8cm}
  \renewcommand\TSevenSeriesCalculusFontSize{\fontsize{9.6pt}{11.4pt}\selectfont}
  \setlength\TEightSecondColWidth{\TableWidth-\TEightFirstColWidth-4\tabcolsep}
  \renewcommand\TEightSeriesFiniteCalculusFontSize{\small}
  \setlength{\TEightInterTitle}{-1ex plus 1ex minus 1ex}
  \setlength{\TEightInterTitleAfter}{-1ex plus 1ex minus 1ex}
  \setlength{\TEightCalcEqLeftMargin}{-2.5em}
  \setlength{\TNineColOne}{12.35cm}
  \iftutex
       \setlength{\TThreeNormalGaussEqLeftMargin}{0pt}
  \else %8 bits TeX. Some spacing are different between pdflatex and
            %xelatex
       \setlength{\TThreeNormalGaussEqLeftMargin}{-0.8cm}
       \renewcommand\TNineSeriesFontSize{\fontsize{9.6pt}{11.4pt}\selectfont}
  \fi
}

\DefaultDimentions

%------------------------------------------------------------------------------------------------
%                                      Specification of the values for                           
%                                      the different fonts
%------------------------------------------------------------------------------------------------
\ifcase\PoliceDocument
  %Latin Modern
  \LModernDimentions
  \or
  %Didot 
  %This is not exactly the same font with TeX 16bits and TeX 8bits
  %since in TeX 16bits the font Assana is used for math.
  \setlength{\TOneSeriesTitleSpace}{-1.6\baselineskip}
  \setlength{\TOneSeriesEqLeftMargin}{-2.50em}
  \setlength{\TOneThirdColumnMargin}{0.5em}
  \setlength{\SpaceBeforeFormula}{10pt}
  \renewcommand{\TTwoFormulaeFontSize}{\small}
  \setlength{\TTwoColumnTree}{3.5cm}
  \setlength{\TTwoColumnFormulae}{\TableWidth-\TTwoColumnTree-\tabcolsep-10pt}
  \setlength{\TTwoColumnOne}{6cm}
  \setlength{\TTwoColumnTwo}{6.3cm}
  \setlength{\TTwoColumnThree}{6cm}
  \setlength{\TThreeStrutRaise}{-1.5ex}
  \setlength{\TThreeInterTitle}{.5ex plus .2ex minus .3ex}
  \setlength{\TThreeAckermannEqLeftMargin}{-0.75cm}
  \setlength{\TThreeBinomialEqLeftMargin}{-.5cm}
  \setlength{\TThreeProbEqLeftMargin}{-1cm}
  \setlength{\TThreeIncExcEqLeftMargin}{-.8cm}
  \setlength{\TThreeRandVarEqLeftMargin}{-0.5cm}
  \setlength{\TFourColOne}{.365\TableWidth}
  \setlength{\TFourColTwo}{.395\TableWidth}
  \setlength{\TFourColThree}{.20\TableWidth}
  \setlength{\TFourSkipFormulae}{18pt}
  \renewcommand\TFiveColOneFontSize{\small}
  \setlength{\TEightSpaceBegFactTwo}{-4ex plus 1ex minus 1ex}
  \setlength{\TEightSpaceAfterFactTwo}{-5ex plus 2ex minus 2ex}
  \iftutex %16bits TeX   
     \setlength{\TOneSepareBlockFormulae}{0pt}
     \setlength{\TOneMoveSums}{6.2cm}
     \setlength{\TOneMoveFormulaeA}{4.1cm}
     \setlength{\BaseLineSkipFormulae}{31.2pt}
     \setlength{\TOneSpaceSums}{-0.8ex plus .1ex minus .25ex}
     \setlength{\TOneColBPar}{.7ex plus .1ex minus .3ex}
     \setlength{\TThreeColumnFour}{5.9cm}
     \setlength{\TThreeStrutLength}{3.5ex}
     \setlength{\TThreeEspEqLeftMargin}{0cm}
     \setlength{\TFourMoveVersion}{-2.5cm}
     \setlength{\TFourTableInterline}{.8ex}
     \setlength{\TFourMoreIdentSpace}{1.3ex}
     \setlength{\TFourVersionWidth}{.95\TFourColOne}
     \setlength{\TFourHMoveVersion}{.8em}
     \setlength{\TFourPosColTwo}{-.7\fboxsep}
     \renewcommand\TFiveGraphFontSize{\small}
     \setlength{\TTenLineTwoHeigth}{10.0cm}
     \setlength{\TTenLineThreeHeigth}{8.4cm}
  \else %8bits TeX
     \setlength{\TOneSepareBlockFormulae}{-1.5ex plus .5ex minus .5ex}
     \setlength{\BaseLineSkipFormulae}{27pt}
     \setlength{\TOneMoveSums}{5.5cm}
     \setlength{\TOneMoveFormulaeA}{4.9cm}
     \setlength{\TOneSpaceSums}{-0.9ex plus .1ex minus .25ex}
     \setlength{\TOneColBPar}{.5ex plus .1ex minus .3ex}
     \renewcommand\TThreeFontSize{\fontsize{9.6pt}{11.4pt}\selectfont}
     \setlength{\TThreeColumnFour}{6.1cm}
     \setlength{\TThreeColumnFive}{6.3cm}
     \setlength{\TThreeStrutLength}{3.8ex}
     \setlength{\TThreeEspEqLeftMargin}{0cm}
     \setlength{\TFourMoveVersion}{-2cm}
     \setlength{\TFourHMoveVersion}{.65em}
     \setlength{\TFourTableInterline}{1ex}
     \setlength{\TFourMoreIdentSpace}{1.7ex}
     \setlength{\TFourVersionWidth}{.99\TFourColOne}
     \setlength{\TFourPosColTwo}{-.55\fboxsep}
     \renewcommand\TFiveGraphFontSize{\fontsize{8.6pt}{11pt}\selectfont}
     \setlength{\TEightFirstColWidth}{12.6cm}
     \setlength{\TEightCalcEqLeftMargin}{-2.5em}
     \renewcommand\TEightSeriesFiniteCalculusFontSize{\small}
     \setlength{\TTenLineTwoHeigth}{10.2cm}
     \setlength{\TTenLineThreeHeigth}{8.6cm}
     \renewcommand\TTenMagicSquareFontSize{\scriptsize}
  \fi
  \or
  %Lucida
     \iftutex %16bits TeX   
       \renewcommand{\TOneFontSize}{\small}
       \setlength{\TOneColOne}{2.65cm}
       \setlength{\TOneColBPar}{.4ex plus .2ex minus .1ex}
       \setlength{\TOneSepareBlockFormulae}{0pt}
       \setlength{\TOneMoveSums}{4.8cm}
       \setlength{\TOneMoveFormulaeA}{4.1cm}
       \setlength{\BaseLineSkipFormulae}{31.2pt}
       \setlength{\TOneSeriesTitleSpace}{-1.6\baselineskip}
       \renewcommand{\TTwoFontSize}{\small}
       \renewcommand{\TTwoFormulaeFontSize}{\fontsize{8.6pt}{10.4pt}\selectfont}
       \setlength{\TTwoColumnTree}{3cm}
       \setlength{\TTwoColumnFormulae}{\TableWidth-\TTwoColumnTree-\tabcolsep-10pt}
       \setlength{\TTwoColumnOne}{6cm}
       \setlength{\TTwoColumnTwo}{6.3cm}
       \setlength{\TTwoColumnThree}{6cm}
        \renewcommand\TThreeFontSize{\fontsize{9pt}{11pt}\selectfont}
        \setlength{\TThreeDisplaySpace}{0ex plus .5ex minus .1ex}
        \setlength{\TThreeDisplayShortSpace}{0ex plus .5ex minus .1ex}
        \setlength{\TThreeInterTitle}{1ex plus .5ex minus .5ex}
        \setlength{\TThreeMoveGeneral}{0pt}
        \setlength{\TThreeColumnFour}{6.3cm}
        \setlength{\TThreeColumnFive}{6.6cm}
        \setlength{\TThreeStrutRaise}{-1.5ex}
        \setlength{\TThreeStrutLength}{3ex}
        \setlength{\TThreeAckermannEqLeftMargin}{-1cm}
        \setlength{\TThreeBinomialEqLeftMargin}{-0.8cm}
        \setlength{\TThreeEspEqLeftMargin}{0pt}
        \setlength{\TThreeProbEqLeftMargin}{-1cm}
        \setlength{\TThreeIncExcEqLeftMargin}{-.8cm}
        \setlength{\TThreeRandVarEqLeftMargin}{-.8cm}
        \setlength{\TFourColOne}{.39\TableWidth}
        \setlength{\TFourColTwo}{.395\TableWidth}
        \setlength{\TFourColThree}{.19\TableWidth}
        \renewcommand\TFourColOneFontSize{\small}
        \renewcommand\TFourColTwoFontSize{\small}
        \setlength{\TFourDisplaySpace}{0ex plus .1ex minus .5ex}
        \setlength{\TFourDisplayShortSpace}{0ex plus .1ex minus .5ex}
        \setlength{\TFourMoveVersion}{-2cm}
        \setlength{\TFourHMoveVersion}{.45em}
        \setlength{\TFourTableInterline}{.5ex}
        \setlength{\TFourMoreIdentSpace}{1ex}
        \setlength{\TFourVersionWidth}{.9\TFourColOne}
        \setlength{\TFourPosColTwo}{-.55\fboxsep}
        \setlength{\TFiveColOne}{6.5cm}
        \setlength{\TFiveColTwo}{6.5cm}
        \renewcommand\TFiveColOneFontSize{\fontsize{8.4pt}{11pt}\selectfont}
        \renewcommand\TFiveGraphFontSize{\fontsize{8.4pt}{11pt}\selectfont}
        \renewcommand\TFiveGeomFontSize{\fontsize{8.4pt}{11pt}\selectfont}
        \setlength{\TFiveBigSpaceAroundEq}{-2ex plus .5ex minus .8ex}
        \setlength{\TFiveSmallSpaceAroundEq}{0ex plus .5ex minus .5ex}
        \setlength{\TFiveCalcEqLeftMargin}{-2em}
        \setlength{\TSixColumnOne}{7.2cm}
        \renewcommand\TSixPiSize{\small}
        \renewcommand\TSixPartialSize{\small}
        \renewcommand\TSixQuoteSize{\small}
        \renewcommand\TSixColTwoFontSize{\footnotesize}
        \renewcommand\TSevenSeriesCalculusFontSize{\small}
        \setlength{\TEightSpaceAfterFactTwo}{-3ex plus 2ex minus 2ex}
        \setlength{\TEightCalcEqLeftMargin}{-2.5em}
        \renewcommand\TEightSeriesCalculusSize{\footnotesize}
        \renewcommand\TEightSeriesFiniteCalculusFontSize{\footnotesize}
        \renewcommand\TEightSeriesFactASize{\footnotesize}
        \setlength\TEightSecondColWidth{\TableWidth-\TEightFirstColWidth-4\tabcolsep}
        \setlength{\TEightInterTitle}{-1ex plus 1ex minus 1ex}
        \setlength{\TEightInterTitleAfter}{-2ex plus 1ex minus 1ex}
        \renewcommand\TNineSeriesFontSize{\small}
        \setlength{\TTenLineThreeHeigth}{8.6cm}
        \renewcommand\TTenStieljesFontSize{\small}
        \renewcommand\TTenMagicSquareFontSize{\scriptsize}
        \renewcommand\TTenCramerFontSize{\small}
     \else %If the TeX is 8bits, the font lmodern is used instead
       \LModernDimentions
     \fi
  \or
     %Stix version 2 (the version working correctly with
     %TeX)
     \iftutex %16bits TeX   
        \setlength{\SpaceBeforeFormula}{10pt}
        \setlength{\BaseLineSkipFormulae}{32pt}
        \setlength{\TOneMoveSums}{5cm}
        \setlength{\TOneMoveFormulaeA}{3.85cm}
        \setlength{\TOneColBPar}{.4ex plus .2ex minus .1ex}
        \setlength{\TOneSeriesTitleSpace}{-1.7\baselineskip}
        \setlength{\TOneSeriesEqLeftMargin}{-2.50em}
        \setlength{\TOneThirdColumnMargin}{0.5em}
        \setlength{\TOneSepareBlockFormulae}{.05ex}
        \setlength{\TOneSpaceSums}{-0.8ex plus .2ex minus .2ex}
        \renewcommand{\TTwoFormulaeFontSize}{\small}
        \setlength{\TTwoColumnTree}{3.6cm}
        \setlength{\TTwoColumnFormulae}{\TableWidth-\TTwoColumnTree-\tabcolsep-10pt}
        \setlength{\TTwoColumnOne}{6cm}
        \setlength{\TTwoColumnTwo}{6.3cm}
        \setlength{\TThreeDisplaySpace}{0ex plus .5ex minus .1ex}
        \setlength{\TThreeDisplayShortSpace}{0ex plus .5ex minus .1ex}
        \setlength{\TThreeInterTitle}{1ex plus .5ex minus .5ex}
        \setlength{\TThreeMoveGeneral}{0pt}
        \setlength{\TThreeColumnFour}{6.15cm}
        \setlength{\TThreeColumnFive}{7cm}
        \setlength{\TThreeStrutRaise}{-1.5ex}
        \setlength{\TThreeStrutLength}{3.45ex}
        \setlength{\TThreeAckermannEqLeftMargin}{-.8cm}
        \setlength{\TThreeBinomialEqLeftMargin}{-0.8cm}
        \setlength{\TThreeEspEqLeftMargin}{0pt}
        \setlength{\TThreeProbEqLeftMargin}{-.8cm}
        \setlength{\TThreeIncExcEqLeftMargin}{-.8cm}
        \setlength{\TThreeRandVarEqLeftMargin}{-.8cm}
        \setlength{\TFourColOne}{.37\TableWidth}
        \setlength{\TFourColTwo}{.395\TableWidth}
        \setlength{\TFourColThree}{.21\TableWidth}
        \setlength{\TFourTableInterline}{.55ex plus .1ex minus .1ex}
        \setlength{\TFourTableLastLineHeight}{2.5ex}
        \setlength{\TFourMoveVersion}{-2.5cm}
        \setlength{\TFourMoreIdentSpace}{1.4ex plus .2ex minus .1ex}
        \setlength{\TFourDisplaySpace}{0ex plus .15ex minus .1ex}
        \setlength{\TFourDisplayShortSpace}{0ex plus .1ex minus .1ex}
        \setlength{\TFourSkipFormulae}{18pt plus .5pt minus 1pt}
        \setlength{\TFiveColOne}{6.5cm}
        \setlength{\TFiveColTwo}{6.5cm}
        \setlength{\TFiveBigSpaceAroundEq}{-2ex plus .5ex minus .8ex}
        \setlength{\TFiveSmallSpaceAroundEq}{0ex plus .5ex minus .5ex}
        \setlength{\TFiveCalcEqLeftMargin}{-2em}
        \setlength{\TEightSpaceAfterFactTwo}{-4ex plus 2ex minus 2ex}
        \setlength{\TEightCalcEqLeftMargin}{-2.5em}
        \setlength{\TEightFirstColWidth}{12.6cm}
        \setlength{\TTenLineTwoHeigth}{10.6cm}
        \renewcommand\TTenMagicSquareFontSize{\scriptsize}
     \else %If the TeX is 8bits, the font lmodern is used instead
       \LModernDimentions
     \fi
  \or
  %Cambria
     \iftutex %16bits TeX   
        \setlength{\SpaceBeforeFormula}{10pt}
        \setlength{\BaseLineSkipFormulae}{30pt}
        \setlength{\TOneMoveSums}{6.1cm}
        \setlength{\TOneMoveFormulaeA}{4cm}
        \setlength{\TOneSeriesTitleSpace}{-1.8\baselineskip}
        \setlength{\TOneSeriesEqLeftMargin}{-2.50em}
        \setlength{\TOneThirdColumnMargin}{0.5em}
        \setlength{\TOneSepareBlockFormulae}{-.8ex plus .2ex minus .3ex}
        \setlength{\TOneColBPar}{.7ex plus .2ex minus .1ex}
        \setlength{\TOneSpaceSums}{-1ex plus .2ex minus .2ex}
        \renewcommand{\TTwoFormulaeFontSize}{\small}
        \setlength{\TTwoColumnTree}{3.6cm}
        \setlength{\TTwoColumnFormulae}{\TableWidth-\TTwoColumnTree-\tabcolsep-10pt}
        \setlength{\TTwoColumnOne}{6cm}
        \setlength{\TTwoColumnTwo}{6.075cm}
        \setlength{\TThreeDisplaySpace}{0ex plus .5ex minus .1ex}
        \setlength{\TThreeDisplayShortSpace}{0ex plus .5ex minus .1ex}
        \setlength{\TThreeInterTitle}{1ex plus .5ex minus .5ex}
        \setlength{\TThreeMoveGeneral}{0pt}
        \setlength{\TThreeColumnFour}{6.15cm}
        \setlength{\TThreeColumnFive}{7cm}
        \setlength{\TThreeStrutRaise}{-1.5ex}
        \setlength{\TThreeStrutLength}{3.5ex}
        \setlength{\TThreeAckermannEqLeftMargin}{-.8cm}
        \setlength{\TThreeBinomialEqLeftMargin}{-0.8cm}
        \setlength{\TThreeEspEqLeftMargin}{0pt}
        \setlength{\TThreeProbEqLeftMargin}{-.8cm}
        \setlength{\TThreeIncExcEqLeftMargin}{-.8cm}
        \setlength{\TThreeRandVarEqLeftMargin}{-.8cm}
        \setlength{\TFourColOne}{.37\TableWidth}
        \setlength{\TFourColTwo}{.39\TableWidth}
        \setlength{\TFourColThree}{.23\TableWidth}
        \setlength{\TFourTableInterline}{.45ex plus .1ex minus .1ex}
        \setlength{\TFourTableLastLineHeight}{2.5ex}
        \setlength{\TFourMoreIdentSpace}{1ex plus .8ex minus .1ex}
        \setlength{\TFourDisplaySpace}{0ex plus .1ex minus .1ex}
        \setlength{\TFourDisplayShortSpace}{0ex plus .1ex minus .1ex}
        \setlength{\TFourSkipFormulae}{16.5pt plus .5pt minus 1pt}
	      \setlength{\TFiveColOne}{6.4cm}
        \setlength{\TFiveColTwo}{6.4cm}
        \setlength{\TFiveBigSpaceAroundEq}{-2ex plus 1ex minus .8ex}
        \setlength{\TFiveSmallSpaceAroundEq}{0ex plus .5ex minus .5ex}
        \setlength{\TFiveCalcEqLeftMargin}{-2em}
        \renewcommand\TEightSeriesFiniteCalculusFontSize{\small}
        \setlength{\TEightSpaceAfterFactTwo}{-5ex plus 2ex minus 2ex}
        \setlength{\TEightFirstColWidth}{13.1cm}
        \setlength\TEightSecondColWidth{\TableWidth-\TEightFirstColWidth-4\tabcolsep}
        \setlength{\TNineColOne}{12.35cm}
        \setlength{\TTenLineTwoHeigth}{10.0cm}
        \setlength{\TTenLineThreeColSpace}{2ex}
     \else %If the TeX is 8bits, the font lmodern is used instead
      \LModernDimentions
     \fi
   \or
	 %DejaVu
     \iftutex %16bits TeX   
        \renewcommand{\TOneFontSize}{\small}
        \setlength{\TOneColOne}{2.35cm}
        \setlength{\TOneColTwo}{4.5cm}
        \setlength{\TOneColBPar}{.2ex plus .2ex minus .1ex}
        \setlength{\TOneSepareBlockFormulae}{-1ex plus .1ex minus .3ex}
        \setlength{\TOneMoveSums}{4.8cm}
        \setlength{\TOneMoveFormulaeA}{5.3cm}
        \setlength{\BaseLineSkipFormulae}{29pt}
        \setlength{\TOneSeriesTitleSpace}{-1.6\baselineskip}
        \renewcommand{\TTwoFontSize}{\small}
        \renewcommand{\TTwoFormulaeFontSize}{\fontsize{8.6pt}{10.4pt}\selectfont}
        \setlength{\TTwoColumnTree}{3.6cm}
        \setlength{\TTwoColumnFormulae}{\TableWidth-\TTwoColumnTree-\tabcolsep-10pt}
        \setlength{\TTwoColumnOne}{6cm}
        \setlength{\TTwoColumnTwo}{6.075cm}
        \renewcommand\TThreeFontSize{\fontsize{9pt}{11pt}\selectfont}
        \setlength{\TThreeDisplaySpace}{0ex plus .5ex minus .1ex}
        \setlength{\TThreeDisplayShortSpace}{0ex plus .5ex minus .1ex}
        \setlength{\TThreeInterTitle}{1ex plus .5ex minus .5ex}
        \setlength{\TThreeMoveGeneral}{0pt}
        \setlength{\TThreeColumnFour}{5.9cm}
        \setlength{\TThreeColumnFive}{7cm}
        \setlength{\TThreeStrutRaise}{-1.5ex}
        \setlength{\TThreeStrutLength}{3ex}
        \setlength{\TThreeAckermannEqLeftMargin}{-1cm}
        \setlength{\TThreeBinomialEqLeftMargin}{-0.8cm}
        \setlength{\TThreeEspEqLeftMargin}{0pt}
        \setlength{\TThreeProbEqLeftMargin}{-1cm}
        \setlength{\TThreeIncExcEqLeftMargin}{-.8cm}
        \setlength{\TThreeNormalGaussEqLeftMargin}{-1cm}
        \setlength{\TThreeRandVarEqLeftMargin}{-.8cm}
        \setlength{\TFourColTwo}{.3945\TableWidth}
        \setlength{\TFourColThree}{.20\TableWidth}
        \renewcommand\TFourColOneFontSize{\small}
        \renewcommand\TFourColTwoFontSize{\small}
        \setlength{\TFourDisplaySpace}{0ex plus .1ex minus .5ex}
        \setlength{\TFourDisplayShortSpace}{0ex plus .1ex minus .5ex}
        \setlength{\TFourSkipFormulae}{16pt plus .5pt minus 1pt}
        \setlength{\TFourMoreIdentSpace}{1ex plus .8ex minus .1ex}
        \setlength{\TFourVersionWidth}{.9\TFourColOne}
        \renewcommand\TFourTrigOneScale{0.86}
        \setlength{\TFiveColOne}{6.2cm}
        \setlength{\TFiveColTwo}{6.2cm}
        \renewcommand\TFiveColOneFontSize{\fontsize{8.6pt}{11pt}\selectfont}
        \renewcommand\TFiveGraphFontSize{\fontsize{8.6pt}{11pt}\selectfont}
        \renewcommand\TFiveGeomFontSize{\fontsize{8.6pt}{11pt}\selectfont}
        \setlength{\TFiveBigSpaceAroundEq}{-2ex plus .5ex minus .8ex}
        \setlength{\TFiveSmallSpaceAroundEq}{0ex plus .5ex minus .5ex}
        \setlength{\TFiveCalcEqLeftMargin}{-2em}
        \setlength{\TSixColumnOne}{7.2cm}
        \renewcommand\TSixPiSize{\small}
        \renewcommand\TSixPartialSize{\small}
        \renewcommand\TSixQuoteSize{\small}
        \renewcommand\TSixColTwoFontSize{\footnotesize}
        \renewcommand\TSevenSeriesCalculusFontSize{\small}
        \setlength{\TEightSpaceAfterFactTwo}{-2ex plus 2ex minus 2ex}
        \setlength{\TEightFirstColWidth}{12.6cm}
        \setlength{\TEightCalcEqLeftMargin}{-2.5em}
        \renewcommand\TEightSeriesCalculusSize{\footnotesize}
        \renewcommand\TEightSeriesFiniteCalculusFontSize{\footnotesize}
        \renewcommand\TEightSeriesFactASize{\footnotesize}
        \setlength\TEightSecondColWidth{\TableWidth-\TEightFirstColWidth-4\tabcolsep}
        \setlength{\TEightInterTitle}{-1ex plus 1ex minus 1ex}
        \setlength{\TEightInterTitleAfter}{-2ex plus 1ex minus 1ex}
        \setlength{\TNineColOne}{12.35cm}
        \renewcommand\TNineSeriesFontSize{\fontsize{8pt}{9.5pt}\selectfont}
        \setlength{\TTenLineThreeColSpace}{1ex}
        \setlength{\TTenLineThreeHeigth}{9cm}
        \renewcommand\TTenCramerFontSize{\small}
        \renewcommand\TTenSeriesFontSize{\small}
        \renewcommand\TTenMagicSquareFontSize{\scriptsize}
    \else %If the TeX is 8bits, the font lmodern is used instead
      \LModernDimentions
    \fi
  \or
	%CM Unicode (the standard fonts of TeX put in Unicode but with
    %no math font, one has to use LM Math for a math font).
    \LModernDimentions
  \or
  %DejaVuSans
    \renewcommand{\TOneFontSize}{\small}
    \setlength{\TOneColOne}{2.35cm}
    \setlength{\TOneColTwo}{4.5cm}
    \setlength{\TOneSepareBlockFormulae}{-1ex plus .1ex minus .3ex}
    \setlength{\BaseLineSkipFormulae}{29pt}
    \setlength{\TOneSeriesTitleSpace}{-1.6\baselineskip}
    \renewcommand{\TTwoFontSize}{\small}
    \renewcommand{\TTwoFormulaeFontSize}{\fontsize{8.6pt}{10.4pt}\selectfont}
    \setlength{\TTwoColumnTree}{3.6cm}
    \setlength{\TTwoColumnFormulae}{\TableWidth-\TTwoColumnTree-\tabcolsep-10pt}
    \setlength{\TTwoColumnOne}{6cm}
    \setlength{\TTwoColumnTwo}{6.075cm}
    \renewcommand\TThreeFontSize{\fontsize{9pt}{11pt}\selectfont}
    \setlength{\TThreeDisplaySpace}{0ex plus .5ex minus .1ex}
    \setlength{\TThreeDisplayShortSpace}{0ex plus .5ex minus .1ex}
    \setlength{\TThreeInterTitle}{1ex plus .5ex minus .5ex}
    \setlength{\TThreeMoveGeneral}{0pt}
    \setlength{\TThreeColumnFour}{6.1cm}
    \setlength{\TThreeColumnFive}{6.7cm}
    \setlength{\TThreeStrutRaise}{-1.5ex}
    \setlength{\TThreeAckermannEqLeftMargin}{-1cm}
    \setlength{\TThreeBinomialEqLeftMargin}{-0.8cm}
    \setlength{\TThreeEspEqLeftMargin}{0pt}
    \setlength{\TThreeProbEqLeftMargin}{-1cm}
    \setlength{\TThreeIncExcEqLeftMargin}{-.8cm}
    \setlength{\TThreeRandVarEqLeftMargin}{-.8cm}
    \setlength{\TThreeNormalGaussEqLeftMargin}{-.3cm}
    \setlength{\TFourColTwo}{.3945\TableWidth}
    \setlength{\TFourColThree}{.20\TableWidth}
    \renewcommand\TFourColOneFontSize{\small}
    \renewcommand\TFourColTwoFontSize{\small}
    \setlength{\TFourDisplaySpace}{0ex plus .1ex minus .5ex}
    \setlength{\TFourDisplayShortSpace}{0ex plus .1ex minus .5ex}
    \setlength{\TFourSkipFormulae}{18pt plus .5pt minus 1pt}
    \setlength{\TFourMoreIdentSpace}{1ex plus .8ex minus .1ex}
    \setlength{\TFourVersionWidth}{.9\TFourColOne}
    \renewcommand\TFourTrigOneScale{0.86}
    \setlength{\TFiveColOne}{6.2cm}
    \setlength{\TFiveColTwo}{6.2cm}
    \renewcommand\TFiveColOneFontSize{\fontsize{8.6pt}{11pt}\selectfont}
    \renewcommand\TFiveGraphFontSize{\fontsize{8.6pt}{11pt}\selectfont}
    \renewcommand\TFiveGeomFontSize{\fontsize{8.6pt}{11pt}\selectfont}
    \setlength{\TFiveBigSpaceAroundEq}{-2ex plus .5ex minus .8ex}
    \setlength{\TFiveSmallSpaceAroundEq}{0ex plus .5ex minus .5ex}
    \setlength{\TFiveCalcEqLeftMargin}{-2em}
    \setlength{\TSixColumnOne}{7.2cm}
    \renewcommand\TSixPiSize{\small}
    \renewcommand\TSixPartialSize{\small}
    \renewcommand\TSixQuoteSize{\small}
    \renewcommand\TSixColTwoFontSize{\footnotesize}
    \renewcommand\TSevenSeriesCalculusFontSize{\small}
    \setlength{\TEightSpaceAfterFactTwo}{-2ex plus 2ex minus 2ex}
    \setlength{\TEightFirstColWidth}{12.6cm}
    \setlength{\TEightCalcEqLeftMargin}{-2.5em}
    \renewcommand\TEightSeriesCalculusSize{\footnotesize}
    \renewcommand\TEightSeriesFiniteCalculusFontSize{\footnotesize}
    \renewcommand\TEightSeriesFactASize{\footnotesize}
    \setlength\TEightSecondColWidth{\TableWidth-\TEightFirstColWidth-4\tabcolsep}
    \setlength{\TEightInterTitle}{-1ex plus 1ex minus 1ex}
    \setlength{\TEightInterTitleAfter}{-2ex plus 1ex minus 1ex}
    \setlength{\TNineColOne}{12.35cm}
    \renewcommand\TNineSeriesFontSize{\fontsize{8pt}{9.5pt}\selectfont}
    \setlength{\TTenLineThreeColSpace}{1ex}
    \setlength{\TTenLineThreeHeigth}{9cm}
    \renewcommand\TTenCramerFontSize{\small}
    \renewcommand\TTenSeriesFontSize{\small}
    \renewcommand\TTenMagicSquareFontSize{\scriptsize}
    \setlength{\TNineColOne}{12.35cm}
    \renewcommand\TNineSeriesFontSize{\small}
    \renewcommand\TTenCramerFontSize{\small}
    \renewcommand\TTenSeriesFontSize{\small}
    \renewcommand\TTenMagicSquareFontSize{\scriptsize}
    \renewcommand\TTenStieljesFontSize{\small}
    \iftutex %16bits TeX   
       \setlength{\TOneMoveSums}{4.8cm}
       \setlength{\TOneMoveFormulaeA}{5.3cm}
       \setlength{\TOneColBPar}{.2ex plus .2ex minus .1ex}
       \setlength{\TThreeStrutLength}{3.1ex}
       \setlength{\TTenLineTwoHeigth}{9.2cm}
       \setlength{\TTenLineThreeHeigth}{8.6cm}
     \else %If the TeX is 8bits, the font arev is used instead
       \setlength{\TOneMoveSums}{5.4cm}
       \setlength{\TOneMoveFormulaeA}{5.3cm}
       \setlength{\TOneColBPar}{.4ex plus .2ex minus .1ex}
       \setlength{\TThreeStrutLength}{3.7ex}
       \renewcommand\TFourScaleHeight{0.9735}
       \setlength{\TFourMoveVersion}{-2.5cm}
       \setlength{\TFourSkipFormulae}{19pt plus .5pt minus 1pt}
       \setlength{\TFourMoreIdentSpace}{.4ex plus .2ex minus .1ex}
       \setlength{\TTenLineTwoHeigth}{10.2cm}
       \setlength{\TTenLineThreeHeigth}{9cm}
     \fi
  \or
  %NeoHellenic
     \iftutex %16bits TeX   
         %Nothing to do since the default dimentions have been defined for the
         %NeoHellenic font.
         \relax
     \else %If the TeX is 8bits, the font lmodern is used instead
       \LModernDimentions
     \fi
\else
  %The default is similar to Latin Modern which is the default fonts
  %(at least for the 8bits TeX)
  \LModernDimentions
\fi