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
|
\input texinfo @c -*-texinfo-*-
@setfilename test_refs.info
@node Top
@top Test refs
@menu
* other nodes::
@end menu
@subheading Testing distant nodes
@verb{: a node :} @ref{ a node ,,, manual}@*
@example
mono : manual.html#a-node
split: ../manual/a-node.html#a-node
@end example
@verb{;:;} @ref{:,,,manual}
@example
mono : manual.html#_003a
split: ../manual/_003a.html#_003a
@end example
@verb{:Top:} @ref{ top ,,, manual}@*
@example
mono : manual.html#Top
split: ../manual/index.html#Top
@end example
@subheading Testing manual name
@verb{:../manual/doc.texi:} @ref{node,,, ../manual/doc.texi}@*
@example
mono : doc.html#node
split: ../doc/node.html#node
@end example
@subheading Testing local nodes
@verb{:!_"#$%&'()*+-./;<=>?[\]^_`|~:} @ref{!_"#$%&'()*+-./;<=>?[\]^_`|~}@*
@example
target: #_0021_005f_0022_0023_0024_0025_0026_0027_0028_0029_002a_002b_002d_002e_002f_003b_003c_003d_003e_003f_005b_005c_005d_005e_005f_0060_007c_007e
@end example
@verb{:Top:} @ref{ Top}
@example
target: #Top
@end example
@verb{: local node:} @ref{ local node}
@example
target: #local-node
@end example
@node other nodes, !_"#$%&'()*+-./;<=>?[\]^_`|~, Top, Top
@chapter Chapter with nodes
@example
id: other-nodes
@end example
@verb{:Top:} @ref{ Top}
@example
target: #Top
@end example
@menu
* !_"#$%&'()*+-./;<=>?[\]^_`|~::
* local node::
@end menu
@node !_"#$%&'()*+-./;<=>?[\]^_`|~,local node,other nodes, other nodes
@example
id: _0021_005f_0022_0023_0024_0025_0026_0027_0028_0029_002a_002b_002d_002e_002f_003b_003c_003d_003e_003f_005b_005c_005d_005e_005f_0060_007c_007e
@end example
@node local node,,!_"#$%&'()*+-./;<=>?[\]^_`|~,other nodes
@example
id: local-node
@end example
@bye
|