Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

50%
+0 −0
Q&A Is it discouraged to format a list of items vertically?

It depends on the context. In technical writing, using the list format is generally preferred. In a novel, you would always keep the list inline. In popular non-fiction you will find both styles us...

posted 6y ago by Mark Baker‭  ·  last activity 4y ago by System‭

Answer
#4: Attribution notice removed by user avatar System‭ · 2020-01-03T20:41:57Z (over 4 years ago)
Source: https://writers.stackexchange.com/a/34151
License name: CC BY-SA 3.0
License URL: https://creativecommons.org/licenses/by-sa/3.0/
#3: Attribution notice added by user avatar System‭ · 2019-12-08T08:14:38Z (over 4 years ago)
Source: https://writers.stackexchange.com/a/34151
License name: CC BY-SA 3.0
License URL: https://creativecommons.org/licenses/by-sa/3.0/
#2: Initial revision by user avatar System‭ · 2019-12-08T08:14:38Z (over 4 years ago)
It depends on the context. In technical writing, using the list format is generally preferred. In a novel, you would always keep the list inline. In popular non-fiction you will find both styles used.

There are some markup language that will allow you to enter a list as a substructure within a paragraph.

    <p>The school has a vegetable garden in which the children grow
    <ul>
    <li>cabbages,</li>
    <li>onions,</li>
    <li>potatoes, and</li>
    <li>carrots</li>
    </ul>
    during their free time.</p>

Lightweight markup languages like Markdown, however, don't have an easy way to represent the difference between a list being inside as opposed to after a paragraph. The distinction is a sufficiently subtle one that most authors are probably not going to do it consistently anyway, so might want to avoid formatting that depends on it, or else avoid writing the paragraph in a way that puts the list in the middle. It is usually pretty easy to recast things so that the list comes at the end:

    <p>The school has a vegetable garden in which 
    the children can spend their free time growing:
    <ul>
    <li>cabbages,</li>
    <li>onions,</li>
    <li>potatoes, and</li>
    <li>carrots</li>
    </ul>
    </p>

And once you recast it like this, the difference between the list being in or under the paragraph becomes moot and you can just as easily do this:

    <p>The school has a vegetable garden in which 
    the children can spend their free time growing:</p>
    <ul>
    <li>cabbages,</li>
    <li>onions,</li>
    <li>potatoes, and</li>
    <li>carrots</li>
    </ul>

BTW, when it comes to lists, it is common practice not to carry sentence punctuation over into the list. Think of the list as an alternate form of punctuation. Therefore you should drop the commas and the 'and'.

    <p>The school has a vegetable garden in which 
    the children can spend their free time growing:</p>
    <ul>
    <li>cabbages</li>
    <li>onions</li>
    <li>potatoes</li>
    <li>carrots</li>
    </ul>

#1: Imported from external source by user avatar System‭ · 2018-03-09T20:28:51Z (about 6 years ago)
Original score: 2