Manual: separate adjacent verbatim code blocks (#6307)
This commit is contained in:
parent
6baacb51bb
commit
3e52c402d0
1 changed files with 24 additions and 12 deletions
36
MANUAL.txt
36
MANUAL.txt
|
@ -3857,30 +3857,42 @@ output.) The block may contain just a title, a title and an author,
|
|||
or all three elements. If you want to include an author but no
|
||||
title, or a title and a date but no author, you need a blank line:
|
||||
|
||||
%
|
||||
% Author
|
||||
```
|
||||
%
|
||||
% Author
|
||||
```
|
||||
|
||||
% My title
|
||||
%
|
||||
% June 15, 2006
|
||||
```
|
||||
% My title
|
||||
%
|
||||
% June 15, 2006
|
||||
```
|
||||
|
||||
The title may occupy multiple lines, but continuation lines must
|
||||
begin with leading space, thus:
|
||||
|
||||
% My title
|
||||
on multiple lines
|
||||
```
|
||||
% My title
|
||||
on multiple lines
|
||||
```
|
||||
|
||||
If a document has multiple authors, the authors may be put on
|
||||
separate lines with leading space, or separated by semicolons, or
|
||||
both. So, all of the following are equivalent:
|
||||
|
||||
% Author One
|
||||
Author Two
|
||||
```
|
||||
% Author One
|
||||
Author Two
|
||||
```
|
||||
|
||||
% Author One; Author Two
|
||||
```
|
||||
% Author One; Author Two
|
||||
```
|
||||
|
||||
% Author One;
|
||||
Author Two
|
||||
```
|
||||
% Author One;
|
||||
Author Two
|
||||
```
|
||||
|
||||
The date must fit on one line.
|
||||
|
||||
|
|
Loading…
Reference in a new issue