aboutsummaryrefslogtreecommitdiffstats
path: root/doc/info/reusable/macros.texinfo
diff options
context:
space:
mode:
authorMattias Andrée <maandree@member.fsf.org>2015-12-08 12:22:45 +0100
committerMattias Andrée <maandree@member.fsf.org>2015-12-08 12:22:45 +0100
commit028adf5cefe3344317a39dcde5d73cc530007a12 (patch)
treebd2264194de60485c3d80bbdf24befe87f02c2fe /doc/info/reusable/macros.texinfo
parenttouch .po files when update, incase .pot is newer but without updates (diff)
downloadscrotty-028adf5cefe3344317a39dcde5d73cc530007a12.tar.gz
scrotty-028adf5cefe3344317a39dcde5d73cc530007a12.tar.bz2
scrotty-028adf5cefe3344317a39dcde5d73cc530007a12.tar.xz
structural improvements to the texinfo manual
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to 'doc/info/reusable/macros.texinfo')
-rw-r--r--doc/info/reusable/macros.texinfo48
1 files changed, 48 insertions, 0 deletions
diff --git a/doc/info/reusable/macros.texinfo b/doc/info/reusable/macros.texinfo
new file mode 100644
index 0000000..8d95983
--- /dev/null
+++ b/doc/info/reusable/macros.texinfo
@@ -0,0 +1,48 @@
+@c GENERAL ADVICE.
+@c Because of an previous regression bug in Texinfo
+@c it is a good idea to use @w around lines using
+@c macros.
+
+
+@c Use this comment to get a good looking e-mail
+@c address in both the info output and the TeX
+@c processed output.
+@iftex
+@macro e{a}
+(@email{\a\})
+@end macro
+@end iftex
+@ifnottex
+@macro e{a}
+@email{\a\}
+@end macro
+@end ifnottex
+
+@c This is intented do be used inside @example.
+@c At the beginning of non-code text in a source
+@c code comment, use this macro to make it look
+@c good in TeX processed output. End with @xtt.
+@iftex
+@macro xrm{}
+@rm{}
+@end macro
+@end iftex
+@ifnottex
+@macro xrm{}
+@end macro
+@end ifnottex
+
+@c This is intented do be used inside @example.
+@c At the end of non-code text in a source code
+@c comment, use this macro to make it look
+@c good in TeX processed output.
+@iftex
+@macro xtt{}
+@tt{}
+@end macro
+@end iftex
+@ifnottex
+@macro xtt{}
+@end macro
+@end ifnottex
+