LEFT | RIGHT |
(no file at all) | |
1 %%%% This file is part of LilyPond, the GNU music typesetter. | 1 %%%% This file is part of LilyPond, the GNU music typesetter. |
2 %%%% | 2 %%%% |
3 %%%% Copyright (C) 1996--2012 Han-Wen Nienhuys <hanwen@xs4all.nl> | 3 %%%% Copyright (C) 1996--2012 Han-Wen Nienhuys <hanwen@xs4all.nl> |
4 %%%% Jan Nieuwenhuizen <janneke@gnu.org> | 4 %%%% Jan Nieuwenhuizen <janneke@gnu.org> |
5 %%%% | 5 %%%% |
6 %%%% LilyPond is free software: you can redistribute it and/or modify | 6 %%%% LilyPond is free software: you can redistribute it and/or modify |
7 %%%% it under the terms of the GNU General Public License as published by | 7 %%%% it under the terms of the GNU General Public License as published by |
8 %%%% the Free Software Foundation, either version 3 of the License, or | 8 %%%% the Free Software Foundation, either version 3 of the License, or |
9 %%%% (at your option) any later version. | 9 %%%% (at your option) any later version. |
10 %%%% | 10 %%%% |
(...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 %% at initialization time by calling the functions in | 626 %% at initialization time by calling the functions in |
627 %% scm/time-signature-settings.scm | 627 %% scm/time-signature-settings.scm |
628 | 628 |
629 timeSignatureSettings = #default-time-signature-settings | 629 timeSignatureSettings = #default-time-signature-settings |
630 timeSignatureFraction = 4/4 | 630 timeSignatureFraction = 4/4 |
631 | 631 |
632 beamHalfMeasure = ##t | 632 beamHalfMeasure = ##t |
633 | 633 |
634 autoBeaming = ##t | 634 autoBeaming = ##t |
635 autoBeamCheck = #default-auto-beam-check | 635 autoBeamCheck = #default-auto-beam-check |
| 636 |
| 637 completionFactor = #ly:duration-scale |
636 | 638 |
637 scriptDefinitions = #default-script-alist | 639 scriptDefinitions = #default-script-alist |
638 | 640 |
639 pedalSustainStrings = #'("Ped." "*Ped." "*") | 641 pedalSustainStrings = #'("Ped." "*Ped." "*") |
640 pedalSustainStyle = #'text | 642 pedalSustainStyle = #'text |
641 pedalUnaCordaStrings = #'("una corda" "" "tre corde") | 643 pedalUnaCordaStrings = #'("una corda" "" "tre corde") |
642 pedalUnaCordaStyle = #'text | 644 pedalUnaCordaStyle = #'text |
643 | 645 |
644 %% These are in ordinary italic font, including the *, | 646 %% These are in ordinary italic font, including the *, |
645 %% but they are unlikely to be used, | 647 %% but they are unlikely to be used, |
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1248 | 1250 |
1249 RemoveEmptyRhythmicStaffContext = \context { | 1251 RemoveEmptyRhythmicStaffContext = \context { |
1250 \RhythmicStaff | 1252 \RhythmicStaff |
1251 \RemoveEmptyStaves | 1253 \RemoveEmptyStaves |
1252 } | 1254 } |
1253 | 1255 |
1254 RemoveEmptyTabStaffContext = \context { | 1256 RemoveEmptyTabStaffContext = \context { |
1255 \TabStaff | 1257 \TabStaff |
1256 \RemoveEmptyStaves | 1258 \RemoveEmptyStaves |
1257 } | 1259 } |
LEFT | RIGHT |