Word Count and Footnotes

Hello,
I have looked at some of the posts on word count but I need to do a word count that automatically includes footnotes. MS Word supports this. Does Pages and, if so, how?
Many thanks.

Stephen1965 wrote:
Thanks for the prompt reply. I should clarify:
The automatic word count does indeed include footnotes, but if you use the inspector and a selection of text there is no option to include a word count of any footnotes attached to that selection.
I need to be able to select sections of the document and get a word count that includes the footnotes that belong to that section.
Feature unavailable but available.
Select the block of text in the main text layer.
Grab the word count.
Select the footnotes.
Grab the word count.
Make an addition and you will know the wanted word count.
_Go to "Provide Pages Feedback" in the "Pages" menu_, describe what you wish.
Then, cross your fingers, and wait _at least_ for iWork'10
Yvan KOENIG (VALLAURIS, France) mardi 29 septembre 2009 17:24:31
Thanks again.

Similar Messages

  • Where, if any, Word Count and Word Frequency tools on Apple Works or MS Wrd

    5/26/2008. Is there a "word count" and/or "word frequency" tool(s) on Apple Works word document and/or Microsoft Word for Mac word document, and how does one use or activate it, or find such for it on the web?? Many thanks. C. Yopst, Chicago

    Hi C,
    In an AppleWorks WP document, go Edit > Writing Tools > Word count. This will give you a count of characters, words, lines and paragraphs in the document or, if you have selected a portion of the document, in the selection.
    To my knowledge, there's no tool to give a word frequency figure, although that could be done with some fairly easy manipulation involving a spreadsheet.
    For MS Word questions, I'd suggest checking the Word section of Microsoft's Mactopia site. Try searching "count words".
    Regards,
    Barry

  • Word count and my ActionPerformed

    I am having a little trouble with my program and was wondering if anyone could spot the mistake... I am trying to make a simple application that will count the number of words in a text field via click of a button and display the results.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class WordCount extends JFrame implements ActionListener
    // added JTextPane, JScrollPane, JPanel JTextField, and JButton
        public static void main(String[] args)
         // layout
        public WordCount()
              super();
              Container cp = getContentPane();
              wordCount.setEditable(false);
              south.setLayout(new FlowLayout(FlowLayout.CENTER));
              south.add(jbtCount);
                   jbtCount.addActionListener (this);
              south.add(new JLabel("  Word Count: "));
              south.add(wordCount);
              cp.add(BorderLayout.CENTER,jsPane);
              cp.add(BorderLayout.SOUTH,south);
         public void actionPerformed(ActionEvent e)
              //if(e.getSource() == jbtCount)   // user clicks Count Words Button
              Object s = e.getSource();
             if ( s instanceof Button )
                  jtPane.setDocument(new DefaultStyledDocument() {
                        public void insertString(int offset, String str, AttributeSet as) throws BadLocationException
                           super.insertString(offset,str,as);
                           String text = jtPane.getText();
                           String[] tokens = text.split(" ");
                           wordCount.setText("" + countValid(tokens));
                         public void remove(int offset, int len) throws BadLocationException
                           super.remove(offset,len);
                           String text = jtPane.getText();
                           String[] tokens = text.split(" ");
                             wordCount.setText("" + countValid(tokens));
                  else{}
         } // end actionPerformed
         private int countValid(String[] tokens)
              int count = 0;
             for (int i = 0; i < tokens.length; i++)
                    if (tokens.trim().length() != 0)
              count++;
         return count;
    } // end public class WordCount

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class WordCount extends JFrame implements ActionListener
         JTextPane jtPane = new JTextPane();
         JScrollPane jsPane = new JScrollPane(jtPane);
         JPanel south = new JPanel();
         JTextField wordCount = new JTextField(20);
         JButton jbtCount = new JButton("Count Words");
        public static void main(String[] args)
              int width = 700;
              int height = 300;
               WordCount f = new WordCount();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             f.setSize(width, height);
             f.setTitle("Word Counter");
             f.setLocation(200, 200);
             f.setVisible(true);
        public WordCount()
              super();
              Container cp = getContentPane();
              wordCount.setEditable(false);
              south.setLayout(new FlowLayout(FlowLayout.CENTER));
              south.add(jbtCount);
                   jbtCount.addActionListener (this);
              south.add(new JLabel("  Word Count: "));
              south.add(wordCount);
              cp.add(BorderLayout.CENTER,jsPane);
              cp.add(BorderLayout.SOUTH,south);
         public void actionPerformed(ActionEvent e)
              //if(e.getSource() == jbtCount)   // user clicks Count Words Button
              Object s = e.getSource();
                  // *** process Button actions
            if ( s instanceof Button )
                  jtPane.setDocument(new DefaultStyledDocument() {
                        public void insertString(int offset, String str, AttributeSet as) throws BadLocationException
                           super.insertString(offset,str,as);
                           String text = jtPane.getText();
                           String[] tokens = text.split(" ");
                           wordCount.setText("" + countValid(tokens));
                         public void remove(int offset, int len) throws BadLocationException
                           super.remove(offset,len);
                           String text = jtPane.getText();
                           String[] tokens = text.split(" ");
                             wordCount.setText("" + countValid(tokens));
                  else{}
         }// end actionPerformed
         private int countValid(String[] tokens)
              int count = 0;
             for (int i = 0; i < tokens.length; i++)
                    if (tokens.trim().length() != 0)
              count++;
         return count;
    } // end public class WordCount

  • What happened to page count, word count and the toolbar at the top?

    Is there any way to edit the toolbar so that when I want to switch fonts I don't have to keep opening the toolbar on the side? (Is there anyway I can get the toolbar from the previous version back?)
    Also, is there a way for the page count and word count to show up and stay there for future documents? I had the word count appear and tried to save that as a template but when trying to open up new documents I have to go back and make it so the word count shows up again.

    What Peter said.
    Is there any way to edit the toolbar so that when I want to switch fonts I don't have to keep opening the toolbar on the side?
    Yes. Menu > View > Customize Toolbar... drag/drop the Fonts icon adjacent to the Comments icon on the Toolbar. The Fonts icon now becomes a toggle to show/hide the Fonts toolbox, which you could also produce with a command+T.
    (Is there anyway I can get the toolbar from the previous version back?
    No.
    Also, is there a way for the page count and word count to show up and stay there for future documents
    No. Available via Menu > View > Show Word Count. This produces a floating box at the bottom of your document. When you roll over it with your mouse, you have a selection of words, characters, and paragraphs. The word count excludes spaces.

  • Word counts and character counts

    Hi,
    I'm using Pages '06. I would like to be able to count the number of words and characters in a paragraph in Pages. I know that if i go to the Document Inspector and click info, it gives me word and character counts for the entire document. Is there a way to do this for individual paragraphs?
    Many thanks.
    Joe.

    After you install WordService (see link in Dennis' post), you can access several new services in the Pages menu. You may have to restart Pages &/or your Mac.
    WordService & CalcService add their functions to any OS X program that has been programed to utilize Services. I've been using them since shortly after I got iWork '05.

  • Word counting and sorting

    hi i am trying to write a program for a uni project that will -
    choose a file of text
    displays the number of occurrences of each word in the file (together with the word itself),
    then sorts it so that the commonest word is at the top of the list.
    A word to be any sequence of letters and apostrophes.
    All other characters should be treated as separators between words. Lower and upper case letters should be treated as equivalent, so that for example �the� and �The� will not be treated as two different words.
    any help or examples for this would be apprichated a lot
    Jez

    hi, well basically i need help with it all!
    programming isnt my strongest point and i really need
    to do this project well so i can try and come out
    with a 1st, is there anyway that you could write an
    example of this project? i am struggling quite a lot
    with it and you seem like you know what your doing!The easiest way to do the project well is to learn to program well. The easiest way to learn programming is to do it. So for your sake, I won't post complete examples. But here are some links that might help, in addition to the links for maps:
    http://java.sun.com/docs/books/tutorial/essential/io/index.html - I/O tutorial
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html - contains methods for converting between case
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Character.html - contains methods for checking the type of a character
    http://java.sun.com/j2se/1.5.0/docs/api/java/util/StringTokenizer.html - if you can define a set of word delimiters, this could help in chopping the text to words
    Try some things yourself, and we'll try to help you if you run into trouble

  • Appleworks: word count, footnotes and text frames.

    Hi there!
    Does anybody know if footnotes and text boxes are automatically included in a word processing document word count? If they are, is there a way of excluding these from the word count? Am writing a 12,000 word dissertation, and footnotes and illustration references (which I have put in separate text frames)don't count towards this figure, but some of mine are huge so I'm worried about them distorting the word count.
    Thanks
    ibook G4   Mac OS X (10.4.3)  

    AppleWorks offers an option to Count Selection in the Word Count dialogue. Click in the main body of the text, then press command-A to select all. Then go Edit > Writing tools... > Word count... In the dialogue, click the Count Selection checkbox, and you'll notice the count goes down.
    Unfortunately, this eliminates only the words contained in Text frames, which, as objects, aren't selected along with the text. Footnotes are included in the text selection, and are included in the count.
    To eliminate footnotes (and text in frames) from the count do this:
    •Click in the body text and Select All (command-A)\
    •Copy (command-C)
    •Open a new (temporary) word processor document
    •Paste (command-V)
    •Find/Change (command-F)
    --in Find, enter "\f" (without the quotes) (\f is the marker for a footnote)
    --leave Change empty
    --Click Change All, then OK the warning and the alert telling you how many changes were made.
    •Go Edit > Writing tools...> Word Count.
    •Close the temporary document without saving.
    The process copies the main text and footnotes to a new document, then removes all of the footnotes before you do the word count.
    Regards,
    Barry

  • Putting Word Count in Pages Document

    Is there a way to insert a document's current word count directly into the body of the document? In other words, is there a way to do the equivalent of "Insert Page Number" or "Insert Page Count" for word count?

    PeterBreis0807 wrote:
    See *How to Insert Current Weather and Word Count into Your Document* p307 in the Pages09_UserGuide.pdf downloadable from under the Help menu.
    Peter
    It's dificult to read page 307 in a guide containing 266 pages.
    On page 37 I may read how to view word count and other document statistics but,
    - I saw nothing about current weather
    - I saw nothing about a way to insert the word count in the document as it was asked by the OP
    As far as I know,
    we may insert page num, page count, date time, file name
    but we only
    may display word count.
    Yvan KOENIG (from FRANCE mercredi 27 mai 2009 18:21:12)

  • Insert word count

    Is there a way to insert word count? I have some professors that want a word count and I wanted to know if there was an "insert word count" somewhere?

    No, there isn't. Can't you write it by hand?
    Remember that Pages counts different to how MS Word does.
    _http://discussions.apple.com/thread.jspa?messageID=10937776_
    And read this thread _http://discussions.apple.com/thread.jspa?messageID=10877817_

  • Word Count Funtion?

    Can you select part of a document for a word count and can you determine word count from an entire pages document?

    Yes,
    Click on the Document inspector > Info. That'll give you the word count for the entire doc. Or just select some text for a partial word count.
    -Dennis

  • Is there a way to exclude text from word count?

    Hi,
    I'm writing a research project at the moment and it's about 12000 words. I have to state the word count at the start and it is supposed to exclude everything which comes in reference brackets, eg (Ames, 2009, p.103)
    I want to check the word count at the moment so want to exclude all references from the word count, but I dont want to simply delete them all because I still need to work on the doucment!
    Is there a way to do that?!

    Hi Brigit,
    It can be done (or at least estimated closely) using only tools included in Pages, Here's the process:
    Record the word count at the bottom left of the document window.
    Press command-F to open the Find/Replace dialogue.
    Enter an opening parenthesis character ( "("  without the quotes ) into the Find box.
    Enter the same character into the Replace with box.
    Click Replace all.
    Note the count of items replaced below the Replace box (one in the example, your post above):
    If all in text references are similar to the sample one provided, each contains four 'words'. Multiply the count by four, subtract the result from the document's word count, and you'll have the result you're looking for.
    If your references are of different lengths (eg. (Ames and Smith, 2003, pp.301-303) has a word count of 7), you'll need to adjust the multiplier.
    Note that if you have parentheses in your document that are NOT enclosing references, these will be included in the count.
    Regards,
    Barry

  • Journal app that tracks word count?

    I'd like an app that is able to track daily word count and graph it over time frames so I can see progress.  I want to write X words per day and would like to track this.
    I'd like to group writings as well so it isn't just one long journal and have the ability to track word count per count plus overall (all groups). Does anyone know of an app like this?

    Hi,
    going further, through the selection, modify this alike:
    var
         curDoc = app.activeDocument,
         mySel = app.selection,
         len = mySel.length,
         cStyle = curDoc.characterStyles.item("wordcount"),
         mySelWords, mString, curSel;
    if (!cStyle.isValid)
        cStyle = curDoc.characterStyles.add({name: "wordcount", fontStyle: "Bold"});
         while (len-->0) {
              curSel = mySel[len];
              if (curSel.hasOwnProperty ("insertionPoints") ) {
                   mySelWords = curSel.texts.everyItem().words.length,
                   mString = mySelWords + " Words. ";
                   curSel.insertionPoints[0].appliedCharacterStyle = cStyle;
                   curSel.insertionPoints[0].contents = mString;
    Notice that textFrame.words count is the ones visible only, so overflown part of text is excluded.
    If some answers were helpful - mark it (them ), pls ==> this is a good flag for other searchers..., and some points for me.., mlask.
    Jarek

  • HELP: Excluding footnotes from the word count

    Hello!,
    I'm a post-grad student, currently writing my dissertation, and I am hoping one of you might be able to help:
    Q: Is there any way to exclude footnotes from the total word count?
    I've tried it via Inspector > Document > Info, but all I get to see is the total word count including all footnotes and there's no checkbox to switch it of (like in MS-Word)
    Footnotes are not included in the total word limit for my dissertation (20.000 words), and if I cant work out how to have Pages counting both footnotes and document text individually, I need to revert back to MS-Word and can't use Pages08 at all (major pain, not only as I then just wasted $79)
    Any help & support would be greatly appreciated!
    Thanks!

    Unfortunately, no version of Pages has this fine-grained control over document components and their word count, so the answer is no, regarding user changeable settings.
    Programmatically, I just told AppleScript to count the words of body text in a currently opened Pages v5.2 document. The count matched the Pages word count for the document. So, no solution there either.

  • Does anyone know how to exclude footnotes from the word count in the Pages for iPad app?

    If I create a doc on pages for ipad, then view it on the iMac, the word count is lower.  I figured out that this is because Pages counts all the words in the footnotes.  Does anyone know how to make it exclude footnotes from the word count? 

    I see the exact same behavior on my IPAD(s) and IPHONE(s). This isn't the loss of titles already identified in other posts. Every movie that wasn't purchased from iTunes, meaning all my movies of my kids, shows it sync in iTunes, but doesn't show up anywhere on the devices.
    Help Apple! Please un-break the feature that was functional before.

  • Is there a way to exclude title, heading and bibliography text from the word count in pages?

    I've just got the newest version of pages.
    The word count includes everything, from titles to endnotes - including the numbers in my sub-headings.
    I used to use open office where you could select a style i.e. 'body tex't, and get a word count that didn't include every single word in a document.
    Is there a way of doing something similar, or reseting the word count to only 'body text' so I know exactly how long my essays are?
    Thanks.

    Unfortunately, no version of Pages has this fine-grained control over document components and their word count, so the answer is no, regarding user changeable settings.
    Programmatically, I just told AppleScript to count the words of body text in a currently opened Pages v5.2 document. The count matched the Pages word count for the document. So, no solution there either.

Maybe you are looking for

  • Wireless keeps disconnect​ing

    I have an old Portege M200 tablet laptop using Windows XP that has the intel(R) pro/wireless 2200BG wireless connection that was communicating fine with my old Linksys wireless-g router. I recently replaced the wireless router to a NetGear WNR1000v2

  • Crystal Reports 8.5 - Windows 7

    Hi, I'm currently using version 8.5 of Crystal Reports tio develop several financial reports. I use the Report Distribution Expert to distribute the reports and the end users install on their machines by running the 'setup.exe' file. However, since s

  • Embed a Youtube clip in Golive

    I would like to embed a YouTube clip in my website, in a way that you can see the clip in the site, and only have to click on it to start it working.

  • Sequence with leading zeros

    Hi, I have a column SRL_NUM with datatype varchar2(4 char).I have 3000 records in this table and want to make SRL_NUM like 0001,0002,0003 etc.It should increment but entire 4 characters should be filled.How do i do this? Thanks.

  • Adobe Flash for Windows 8

    Any idea if/when Adobe Flash ActiveX updates for Windows 8 Clients, acquired from Adobe for Enterprise deployment; will no longer be required, since Flash will be integrated into Internet Explorer? I'm assuming at some point, any updates may somehow