[599] | 1 | @dircategory Text creation and manipulation
|
---|
| 2 | @direntry
|
---|
| 3 | * sed: (sed). Stream EDitor.
|
---|
| 4 |
|
---|
| 5 | @end direntry
|
---|
| 6 |
|
---|
| 7 | @clear PERL
|
---|
[3613] | 8 | @set SSEDEXT GNU extensions
|
---|
| 9 | @set SSED GNU @command{sed}
|
---|
| 10 |
|
---|
| 11 | @c Ugly hack to enable using new texinfo commands '@codequotebacktick'
|
---|
| 12 | @c and '@codequoteundirected' or define empty fallbacks if they are
|
---|
| 13 | @c not available.
|
---|
| 14 |
|
---|
| 15 | @ifclear txicommandconditionals
|
---|
| 16 | @c If we got here, this is a REALLY old texinfo (pre 5.0),
|
---|
| 17 | @c and '@ifcommandnotdefined' is not defined.
|
---|
| 18 | @c Assume these commands are not defined as well.
|
---|
| 19 | @macro codequotebacktick
|
---|
| 20 | @end macro
|
---|
| 21 | @macro codequoteundirected
|
---|
| 22 | @end macro
|
---|
| 23 | @end ifclear
|
---|
| 24 |
|
---|
| 25 | @ifset txicommandconditionals
|
---|
| 26 | @c if we got here, this texinfo supports checking for defined
|
---|
| 27 | @c commands. If these commands aren't available - define empty
|
---|
| 28 | @c fallbacks.
|
---|
| 29 | @ifcommandnotdefined codequotebacktick
|
---|
| 30 | @macro codequotebacktick
|
---|
| 31 | @end macro
|
---|
| 32 | @macro codequoteundirected
|
---|
| 33 | @end macro
|
---|
| 34 | @end ifcommandnotdefined
|
---|
| 35 | @end ifset
|
---|
| 36 |
|
---|
| 37 |
|
---|
| 38 | @c define variables that will render as characters
|
---|
| 39 | @c on both HTML (with @U{}) and PDF (with greek symbols).
|
---|
| 40 | @c Use with: @value{ucsigma}
|
---|
| 41 | @c
|
---|
| 42 | @c Based on:
|
---|
| 43 | @c https://lists.gnu.org/archive/html/help-texinfo/2012-06/msg00004.html
|
---|
| 44 | @iftex
|
---|
| 45 | @set ucsigma @math{@Sigma{}}
|
---|
| 46 | @end iftex
|
---|
| 47 | @ifnottex
|
---|
| 48 | @set ucsigma @U{03A3}
|
---|
| 49 | @end ifnottex
|
---|
| 50 |
|
---|
| 51 | @iftex
|
---|
| 52 | @set lcsigma @math{@sigma{}}
|
---|
| 53 | @end iftex
|
---|
| 54 | @ifnottex
|
---|
| 55 | @set lcsigma @U{03C3}
|
---|
| 56 | @end ifnottex
|
---|
| 57 |
|
---|
| 58 | @c Unicode Replacement Character (U+FFFD):
|
---|
| 59 | @c no easy/portable tex equivalent, so use another
|
---|
| 60 | @c distinct symbol (which will be rendered very differently
|
---|
| 61 | @c than ascii characters in @examples.
|
---|
| 62 | @iftex
|
---|
| 63 | @set unicodeFFFD @math{@otimes{}}
|
---|
| 64 | @end iftex
|
---|
| 65 | @ifnottex
|
---|
| 66 | @set unicodeFFFD @U{FFFD}
|
---|
| 67 | @end ifnottex
|
---|