Quote:
Originally Posted by abraum
Is there something like a "grammer check" that can find missing Punctuation?
|
No. But there are some ways to speed this along.
Quote:
Originally Posted by abraum
i have created an ebook from a scanned book. The OCR was done with FineReader and converted into ePub. After that i use Calibre Editor. I have noticed that a lot of Punctuation at the end of the sentences are missing.
|
The best way is to go back to Finereader and visually see exactly what was in the original. It's the only way you'd be able to tell what the missing character
actually is, instead of blindly guessing.
If you recognize some sort of basic pattern, like:
- vol 1 -> vol. 1
- pp 123–130 -> pp. 123–130
- From 19992002 -> From 1999–2002
then you can always create Regular Expressions to deal with that.
If you are talking punctuation always missing at the end of lines/paragraphs:
Code:
<p>This is an example paragraph</p>
<p>This is another sentence</p>
<p>And this one has a correct period.</p>
then again, you can use Regular Expressions for that. See my recent posts in:
If you have missing punctuation in the middle of paragraphs:
- This is an example And a second sentence And a third sentence.
sometimes grammarcheckers can catch this.
Antidote is the best one I've run across to catch this type, but this will only catch a very small subset of all the missing punctuation.
For more info on that, see my posts:
- - -
Nothing beats going back to the original and figuring it out.
And it's impossible to come up with a general solution, because every single book is going to have different patterns of "missing punctuation".