I have been trying to learn how to use the rules editor and made a couple of style rules others may find of interest. As you can see from this Blog post Oxford Languages | The Home of Language Data
While not technically wrong, except in rare circumstances, (for example dramatic effect,) it is usually considered to be sloppy writing if ‘And’ and ‘But’ are used to start a sentence. Anyway, I wrote a couple of rules to detect their misuse. They are more or less identical and between the two I have tested them extensively, with excellent results.
According to the directions on the rules editor page, this seems to be the easiest way to offer them for inclusion in LangaugeTool and pasting the output directly without any added formatting:
The ‘And’ rule:
<rule id="ID" name="Start sentence with 'And'"> <pattern> <token postag='SENT_START'></token> <token>And</token> </pattern> <message>Technical not exactly wrong, but stylistically <suggestion>and</suggestion> should only be used to start a sentence for dramatic effect and even then rarely.</message> <url>http://blog.oxforddictionaries.com/2012/01/can-i-start-a-sentence-with-a-conjunction/</url> <short>Technical not exactly wrong, but stylistically 'and' should only be used to start a sentence for dramatic effect and even then rarely.</short> <example type='incorrect'><marker>And</marker> to help him forward, I sent him a letter and got a reply immediately. And it was not a good feeing and I got nervous. And yes, it is stylistically wrong to start a sentence with and.</example> <example type='correct'>To help him forward, I sent him a letter and got a reply immediately.</example> <example type='incorrect'>And it was not a good feeing and I got nervous.</example> <example type='correct'>It was not a good feeling and I got nervous.</example> <example type='incorrect'>And yes, it is stylistically wrong to start a sentence with and.</example> <example type='correct'>Yes, it is stylistically wrong to start a sentence with and.</example> </rule>
The ‘But’ rule:
<rule id="ID" name="Start sentence with 'But'"> <pattern> <token postag='SENT_START'></token> <token>But</token> </pattern> <message>Technical not exactly wrong, but stylistically <suggestion>but</suggestion> should only be used to start a sentence for dramatic effect and even then rarely.</message> <url>http://blog.oxforddictionaries.com/2012/01/can-i-start-a-sentence-with-a-conjunction/</url> <short>Technical not exactly wrong, but stylistically 'but' should only be used to start a sentence for dramatic effect and even then rarely.</short> <example type='incorrect'><marker>But</marker> it is not a great writing style to start a sentence with but. But I like starting a sentence with but, it makes me feel good. But, why can't I use but to start a sentence? But it is stylisticaly wrong to start to start a sentence with but, but sometimes convenient for dramatic effect.</example> <example type='correct'>It is not a great writing style to start a sentence with but.</example> <example type='incorrect'>But I like starting a sentence with but, it makes me feel good.</example> <example type='correct'>I like starting a sentence with but, it makes me feel good.</example> <example type='incorrect'>But, why can't I use but to start a sentence?</example> <example type='correct'>Why can't I use but to start a sentence?</example> <example type='incorrect'>But it is stylistically wrong to start to start a sentence with but, but sometimes convenient for dramatic effect.</example> <example type='correct'>It is stylistically wrong to start to start a sentence with but, but sometimes convenient for dramatic effect.</example> </rule>
It is a shame about the lack of formatting, but I’m just following the instructions. I hope you find this useful.
Irvine