Grammar errors in Producing an Ebook guide

This commit is contained in:
Dillonn241 2023-12-27 11:35:50 -08:00 committed by Alex Cabal
parent b126153a7b
commit dc59380f65

View file

@ -598,7 +598,7 @@ proceed to seal up my confession, I bring the life of that unhappy Henry Jekyll
</ul> </ul>
<p>There are some things that you dont have to worry much about when proofreading:</p> <p>There are some things that you dont have to worry much about when proofreading:</p>
<ul> <ul>
<li><p><b>Spelling errors.</b> Actual spelling errors are very rare. If a word appears to be misspelled, its worth it to check the page scans, but such cases are often done on purpose by the author, or using a older spelling, or are spelled differently in en-US vs. en-GB.</p></li> <li><p><b>Spelling errors.</b> Actual spelling errors are very rare. If a word appears to be misspelled, its worth it to check the page scans, but such cases are often done on purpose by the author, or using an older spelling, or are spelled differently in en-US vs. en-GB.</p></li>
<li><p><b>Changing from en-GB to en-US or vice versa.</b> Spelling differences between the continents were not yet settled then, so its common for books to be set in a blend of spellings. We dont convert from one style to the other, or try to ensure perfect consistency between styles. This includes en-GB differences like using “an” in front of a word starting in “h, like “an hundred.</p></li> <li><p><b>Changing from en-GB to en-US or vice versa.</b> Spelling differences between the continents were not yet settled then, so its common for books to be set in a blend of spellings. We dont convert from one style to the other, or try to ensure perfect consistency between styles. This includes en-GB differences like using “an” in front of a word starting in “h, like “an hundred.</p></li>
<li><p><b>Keeping a 100% faithful representation of a print page layout.</b> Sometimes books have complicated page layouts in print. But ebooks are not the same as print books, with the most important distinction being that there is no “page” to align items to. So, were not so concerned with maintaining a pixel-perfect reproduction of print layouts; rather, we wish to <em>adapt</em> print layouts as best we can to the ebook medium.</p></li> <li><p><b>Keeping a 100% faithful representation of a print page layout.</b> Sometimes books have complicated page layouts in print. But ebooks are not the same as print books, with the most important distinction being that there is no “page” to align items to. So, were not so concerned with maintaining a pixel-perfect reproduction of print layouts; rather, we wish to <em>adapt</em> print layouts as best we can to the ebook medium.</p></li>
</ul> </ul>
@ -683,7 +683,7 @@ proceed to seal up my confession, I bring the life of that unhappy Henry Jekyll
<p>Its a good idea to run <code class="bash"><b>se</b> typogrify</code> and <code class="bash"><b>se</b> clean</code> one more time before running these final checks. Make sure to review the changes with <code class="bash"><b>git</b> difftool</code> before accepting them—<code class="bash"><b>se</b> typogrify</code> is usually right, but not always!</p> <p>Its a good idea to run <code class="bash"><b>se</b> typogrify</code> and <code class="bash"><b>se</b> clean</code> one more time before running these final checks. Make sure to review the changes with <code class="bash"><b>git</b> difftool</code> before accepting them—<code class="bash"><b>se</b> typogrify</code> is usually right, but not always!</p>
<p>Now that our ebook is complete, lets verify that there are no errors at the <abbr>S.E.</abbr> style level:</p> <p>Now that our ebook is complete, lets verify that there are no errors at the <abbr>S.E.</abbr> style level:</p>
<code class="terminal"><span><b>se</b> lint <u>.</u></span></code> <code class="terminal"><span><b>se</b> lint <u>.</u></span></code>
<p>Once <code class="bash"><b>se</b> lint</code> completes without errors, were ready to confirm that there are no errors at the epub level. We do this by invoking <code class="bash"><b>se</b> build</code> with the <code class="bash">--check-only</code> flag, which will run <code class="bash"><b>epubcheck</b></code> to verify that our final epub has no errors, but wont output an ebook files, since we dont need them right now.</p> <p>Once <code class="bash"><b>se</b> lint</code> completes without errors, were ready to confirm that there are no errors at the epub level. We do this by invoking <code class="bash"><b>se</b> build</code> with the <code class="bash">--check-only</code> flag, which will run <code class="bash"><b>epubcheck</b></code> to verify that our final epub has no errors, but wont output ebook files, since we dont need them right now.</p>
<code class="terminal"><span><b>se</b> build --check-only <u>.</u></span></code> <code class="terminal"><span><b>se</b> build --check-only <u>.</u></span></code>
<p>Once that completes without errors, were ready to move on to the final step!</p> <p>Once that completes without errors, were ready to move on to the final step!</p>
</li> </li>