Word Count: Difference between revisions

From Librivox wiki
Jump to navigationJump to search
m (→‎Gutencount (word counter): improved accuracy of word count)
(→‎Document Editors: add info to Microsoft Word Count)
Line 91: Line 91:
* Microsoft Word
* Microsoft Word
** '''Review → Word Count'''
** '''Review → Word Count'''
** MS Word will also automatically display the word count on the bottom status bar, unless this feature has been disabled. To re-enable it, right-click on the bottom status bar and tick the Word Count option.
** MS Word will also automatically display the word count on the bottom status bar, unless this feature has been disabled. To re-enable it, right-click on the bottom status bar and tick the Word Count option. Just highlight the words you want counted, either part or all of the text.  Wait a moment and the word count will display (lower left corner)
* LibreOffice Writer
* LibreOffice Writer
** '''Tools → Word Count'''
** '''Tools → Word Count'''

Revision as of 18:19, 12 April 2023

LibriVox member peegee has written a script for web browsers which may make the BC's job of compiling word counts for the Magic Window a little easier.

How it Works

The script runs against the HTML ebooks on Project Gutenberg.

  1. you click the paragraph where you want to start the count,
  2. it asks you the target number of words,
  3. it quickly goes through every paragraph from that point onwards and counts the words and the running total
  4. it stops when it reaches the target, or the end of the chapter if before
  5. the page is temporarily changed to display the word counts right there at the end of each paragraph
  6. you can repeat this as many times as you like, each time you click a paragraph the temporary page changes are removed

Screenshots

Here are a few screenshots to illustrate the process:

Installing the Script

The method of installation depends on the browser (Firefox and Chrome may need to be re-started after installation, Opera does not):

Firefox

  1. Greasemonkey You will first need the GreaseMonkey add-on for Firefox which is available from this link.
  2. Firefox Install Once you have GreaseMonkey installed, go here and click on the Install button

Google Chrome

  1. TamperMonkey First you'll need to install TamperMonkey from the Chrome store.
  2. WordCount Then, you'll be able to install the word count extension from here.

Opera

  1. To enable User JavaScript, use Tools > Preferences > Advanced > Content > JavaScript options, and select the directory where you will put your User JavaScript files (probably best if its a new folder with nothing else in it).
  2. the script then go to the script
  3. click the Install button to get the script in a new tab in Opera.
  4. from the Opera menu click File > Save As to save it into the folder you chose in the first step (probably best to just keep the suggested file-name - whatever name you choose it MUST end in .user.js )

Limitations

The script only works on the Gutenberg online HTML books, not the text or zipped HTML, or other formats.

Support

If you have any problems installing or using this script you can either post a message in this forum thread or send a Private Message to peegee.

Other Alternatives

Web Browser Bookmarklets

Gutencount (word counter)

This is a "universal" word counter bookmarklet. The code below will, with a single click, return the word count for the body of a Gutenberg book.

  • It counts the ebook text, excluding the Gutenberg disclaimer and legalese (everything between "*** START OF _____ ***" and "*** END OF ____ ***"). This will work whether you are on the main page, the HTML page (or as-submitted), or on the plain text page.
    • Slight discrepancies may be present due to extra text (Transcriber's notes, Book summary, subtitles, etc) in some formats that are not present in the others.
  • BONUS: On the Gutenberg search results page, it will append the word count to all search results! (So, if you're looking for a short short story, you don't have to go counting every book that comes up in search.)
  • BONUS: On a normal webpage, it will count all the text on the page.
  • BONUS: If any text is highlighted, it will count the words in the selection.
javascript:(function(){let b=document['location']['toString'](),c=window['getSelection']()+'';function d(g,h,i=''){return e(g['match'](/(?<=\*{3} START.*?\*{3}).*(?=\*{3} END.*?\*{3})/s)[0x0]['trim'](),h,i);}function e(g,h,i=''){let j=g['trim']()['split'](/--|[\s\*—]+/)['length'];if(i)return j;alert(j+'\x20words,\x20'+g['length']+'\x20chars\x0ain\x20'+h);}function f(g,h){fetch(g)['then'](i=>i['text']())['then'](i=>{let j=d(i,'ebook',h);h&&(h['innerHTML']+='wc:'+j);})['catch'](i=>{});}if(c['length']>0x0)e(c,'selection');else{if(b['match'](/gutenberg.org\/(files|cache\/epub)\/\d+/))d(document['body']['innerText'],'ebook');else{if(b['match'](/gutenberg.org\/ebooks\/(\d+)/))f(b+'.txt.utf-8',document['querySelector']('#cover'));else{if(b['match'](/gutenberg.org\/ebooks\/(subject|search)/))for(const g of document['querySelectorAll']('.booklink>a>span:nth-child(2)')){f(g['parentElement']['href']+'.txt.utf-8',g);}else e(document['body']['innerText'],'webpage');}}}}());;

Chapter Counter (beta)

This script will (attempt to) count the number of words in indexed chapters of a Gutenberg book. Navigate to the HTML or the plain text page, and activate the script.

Current Limitations:

  • The Table of contents (TOC) must be present, and labeled Contents.
  • TOC should not include any sections that appear before the contents list (eg, Preface).
  • Does not work if chapter headings do not match the TOC (eg, TOC lists Chapter IV, but chapter headings appear as IV).
  • Does not work if the TOC is formatted strangely (eg page numbers or other text interspersed between the chapter titles).
javascript:(function(){if(document.location.toString().match(/gutenberg.org\/(files|cache\/epub)\/\d+/)){let i=document.body.innerText.match(/(?<=\*{3} START.*?\*{3}).*(?=\*{3} END.*?\*{3})/s)[0].trim().split(/\n+/),o=[],c="",r="",d={};for(var t of i)if((t=t.trim())&&0!=t.length)if(c||!t.match(/^contents.?$/i)){if("contents"==c)o.length>0&&n(o[0],t)?(c="body",d[r=o[0]]=""):o.push(t);else if("body"==c){if(void 0!==o[o.indexOf(r)+1]&&n(t,o[o.indexOf(r)+1])){d[r=o[o.indexOf(r)+1]]="";continue}d[r]+=t+" "}}else c="contents";var e=document.getElementById("xcount")||document.createElement("div");e.id="xcount",e.style="position:fixed;top:0;right:0;width:20em;height:20em;overflow-y:scroll;background:#333c;color:#fff;",e.innerHTML="",document.body.appendChild(e);for(const t in d)e.innerHTML+=t+": "+d[t].trim().match(/[\*\S]+/g).length+" words<br/><br/>"}function n(t,e){return!(!t||!e)&&(t==e||(!(!t.match(/^chapter.*\./i)||t.match(/^chapter.*\./i)[0]!=e.match(/^chapter.*\./i)[0])||void 0))}})();


For questions or issues with either of the above scripts, please post in this forum thread, or send a Private Message to quartertone.

Note: The scripts above have been minified. To view the scripts in a human-readable format, please visit vox.quartertone.net.


Websites

Various websites provide an interface to count the number of words in copy-pasted text. Below are some sites that provide accurate word counts:


Document Editors

Most document editors (Microsoft Word, Google Docs, LibreOffice, etc) and some basic text editors have a built-in word counting feature. Copy and paste your text into a document, select the text you want to count.

  • Microsoft Word
    • Review → Word Count
    • MS Word will also automatically display the word count on the bottom status bar, unless this feature has been disabled. To re-enable it, right-click on the bottom status bar and tick the Word Count option. Just highlight the words you want counted, either part or all of the text. Wait a moment and the word count will display (lower left corner)
  • LibreOffice Writer
    • Tools → Word Count
    • A running word count is displayed on the bottom status bar. The status bar cannot be modified but the entire bar may be toggled hidden or displayed by selecting View → Status Bar
  • Google Docs
    • Tools → Word count
    • Keyboard shortcut: Ctrl + Shift + C