diff options
author | Galin Simeonov <gts@volconst.com> | 2021-05-16 11:47:01 +0300 |
---|---|---|
committer | Galin Simeonov <gts@volconst.com> | 2021-05-19 12:07:48 +0300 |
commit | 3836c5f29c044b22426c18f4929a28800b3f0ec6 (patch) | |
tree | 847f140e7d0e8fb78ff9163069c51a5a6b308b19 | |
parent | 6bf87b5fcfcc1766a4a000fc1c0c4ac2f5d7ded4 (diff) | |
download | mg-3836c5f29c044b22426c18f4929a28800b3f0ec6.tar.gz |
added left right and center macros
-rw-r--r-- | g.tmac | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -27,7 +27,7 @@ .nr header_horizontal_line 1 .nr header_horizontal_line_thickness 0.5p \######################################################################### -.nr indentation_is_by_how_much 0.5i +.nr indentation_is_by_how_much 4u \######################################################################### \######################################################################### \######################################################################### @@ -334,8 +334,20 @@ \######################################################################### .de right .br -.if '\\$1'end' .in -\\n[indentation_is_by_how_much] -.el .in \\n[indentation_is_by_how_much] +.ie '\\$1'end' .in -\\n[indentation_is_by_how_much] +.el .in +\\n[indentation_is_by_how_much] +.. +\######################################################################### +.de left +.br +.ie '\\$1'end' .in +\\n[indentation_is_by_how_much] +.el .in -\\n[indentation_is_by_how_much] +.. +\######################################################################### +.de center +.br +.ie '\\$1'end' .ad l +.el .ad c .. \######################################################################### .als newpage bp |