Heres a great list from GOV.UK of the kind of words to avoid when using Plain English: https://www.gov.uk/guidance/style-guide/a-to-z-of-gov-uk-sty...
someone could write a simple grammar checker that looks for words in that list, passive voices, sentence length and whatnot and suggests alternatives. It wouldn't work without human oversight but then again, no automated checker really does.
How to Write in Plain English
41–50 of 327 posts
Re: How to Write in Plain English
#42This article explains how, but it doesn’t explain why: you should do this because it’s an accessibility issue. NHS Digital came up with a good example of this problem: https://digital.nhs.uk/blog/transformation-blog/2019/pee-and...
Saying the reason is “accessibility” suggests that it only helps people with poor literacy. There are two things to note: 1. Most people writing content will assume that their readers are like themselves or their social circle and will therefore have good literacy skills. However the actual proportion of people with poor (or even just not high) literacy skills is much higher than you might estimate from your social c…
Re: How to Write in Plain English
#43Writing clearly is like playing Tetris. Sentences should be presented with clauses that drop down and slot together efficiently. At the earliest available opportunity you drop in a block that completes the line and points are won/made. This can also make for rather dull writing and I appreciate the irony in this paragraph: > However, at first you may still find yourself writing the odd long sentence, especially when…
Starting a paragraph with However doesn't seem right. It ties the paragraph too intimately to the previous one, from which it should stand apart. Similarly, sometimes it may be ok to begin a sentence with But, but in this instance it doesn't read quite right. I'd have preferred:
> At first you may still find yourself writing the odd long sentence, especially when trying to explain a complicated point. Fortunately, most long sentences can be broken up in some way.
Something the article does but doesn't mention, is to use short paragraphs. I do this instinctively on Hacker News/Stack Overflow/email, I think it improves readability, although it might not be appropriate for more formal writing (papers, books).
Re: How to Write in Plain English
#44Writing clearly is like playing Tetris. Sentences should be presented with clauses that drop down and slot together efficiently. At the earliest available opportunity you drop in a block that completes the line and points are won/made. This can also make for rather dull writing and I appreciate the irony in this paragraph: > However, at first you may still find yourself writing the odd long sentence, especially when…
Don't make your readers hold parts of the sentence in their head. Reorder or split sentences until it can be avoided. In other words, use a really small buffer. "You must fill form 331 unless you are over 60 years old, in which case you must fill form 445." "You must fill form 331. If you are over 60 years old, you must fill 445 instead." "If you are over 60 years old, you must fill form 445. Otherwise, you must fill…
“Complete form 445 if you are over 60 years old. Complete form 331 if you are 60 years old or younger.”
Re: How to Write in Plain English
#45Interesting. I thought the use of "thanks to" as a preposition indicating a causal relationship with negative consequences was generally discouraged, because, by its very nature, it's a metaphor. But I can't find any style guide that would support this.
Re: How to Write in Plain English
#46Writing clearly is like playing Tetris. Sentences should be presented with clauses that drop down and slot together efficiently. At the earliest available opportunity you drop in a block that completes the line and points are won/made. This can also make for rather dull writing and I appreciate the irony in this paragraph: > However, at first you may still find yourself writing the odd long sentence, especially when…
Don't make your readers hold parts of the sentence in their head. Reorder or split sentences until it can be avoided. In other words, use a really small buffer. "You must fill form 331 unless you are over 60 years old, in which case you must fill form 445." "You must fill form 331. If you are over 60 years old, you must fill 445 instead." "If you are over 60 years old, you must fill form 445. Otherwise, you must fill…
This resplendent sentence in the Vulkan spec did it to me the other day:
The layout of subresources of images on other logical devices that are bound to VkDeviceMemory objects associated with the same underlying memory resources as external memory objects on the lost device becomes VK_IMAGE_LAYOUT_UNDEFINED.
I got about half way through and suddenly discovered I didn't know where I was, what year it was or my name.
Re: How to Write in Plain English
#47I'm curious. Is there a specific reason why the trend for our use of the English language went towards this direction, when in the past, a lot of the historical material I read seemed intentionally verbose? Sure, it's all for ensuring we are understood better among ourselves, but I wonder if writing this way makes us cognitively simpler.
Re: How to Write in Plain English
#48"Over the years, the European institutions have developed a vocabulary that differs from that of any recognised form of English. It includes words that do not exist or are relatively unknown to native English speakers outside the EU institutions and often even to standard spellcheckers/grammar checkers (‘planification’, ‘to precise’ or ‘telematics’ for example) and words that are used with a meaning, often derived from other languages, that is not usually found in English dictionaries (‘coherent’ being a case in point). Some words are used with more or less the correct meaning, but in contexts where they would not be used by native speakers (‘homogenise’, for example)."
[0] https://www.eca.europa.eu/Other%20publications/EN_TERMINOLOG...
Re: How to Write in Plain English
#49"a mistake was made" as a good use of passive? Is that a joke?
Re: How to Write in Plain English
#50Earlier quoted context omitted.
Don't make your readers hold parts of the sentence in their head. Reorder or split sentences until it can be avoided. In other words, use a really small buffer. "You must fill form 331 unless you are over 60 years old, in which case you must fill form 445." "You must fill form 331. If you are over 60 years old, you must fill 445 instead." "If you are over 60 years old, you must fill form 445. Otherwise, you must fill…
Your last one requires keeping the first clause of the first sentence in your head; just because you've split sentences doesn't mean you've avoided that, because “otherwise” imports the conditional in the previous sentence by reference and then inverts it. To actually avoid requiring the reader to keep sentence parts in their head, use if-then or do-if constructs, but not if-then-else constructs. “Complete form 445 i…
In other words, it's not really an if-else block, but just an if statement before the default scenario. Almost everyone has to fill form 331.
I think the sentence structure you suggest would quickly make a longer text tedious to read. I have experimented with that sentence format, and it added a lot of text, but not a lot of clarity.
I also think that putting the if statement at the end makes little sense, just like when reading code.