Where is Outline Numbering in RH7?

We are converting projects from RH 5 to RH 7. All our documents have to be be formatted with "legal" numbering (e.g., 1.1, 1.2.1, 1.2.1.1, etc.) In RH 5, there were 3 tabs under Bullets and Numbering, as I recall. You had Bullets, Numbering, and Outline. Now the Outline tab or option appears to no longer exist. We have had to reformat our documents manually when adding or deleting sections.
Does anyone know a way around this? And failing that, is there a way to add tab stops at least, so that lines that wrap will indent to the text position, not at the start of the line? In other words, we want the lines to be consistently indented and aligned without having to use spaces and nudge the lines, so sort of like this:
1.1  For example, this is a level one sentence.
1.1.1  This is a level two sentence and if you imagine it wrapped,
  it would exactly left justify on the second line with the first word of the first line (e.g., 'This"), and not the number 1.1.1.
Any ideas or creative suggestions would be greatly appreciated!

Hi Leon
I know it seems a bit on the strange side. And being a new feature, it could well be buggy. Or, it could simply be working as the developers intended but they failed to anticipate how we would want to use it.
All of it ultimately ends up in the CSS. Did you have a play with adjusting values in the CSS?
Note that I wasn't suggesting it would be the ultimate end all solution here. I only suggested the eval be tried to see.
Cheers... Rick
Click here for Adobe Authorized Captivate and RoboHelp HTML Training
Click here for the SorcerStone Blog
Click here for RoboHelp and Captivate eBooks

Similar Messages

  • How to continue outline numbering across pages

    Using InDesign CS4 on Mac...  Sorry for the newb question, but I've got a section on the right-hand side of my document that has outline numbering across a couple pages.  I've used separate text boxes for each page.  Is it possible to continue this numbering so that 1-5 show up on page 1 and 6-10 show up on page 2?  Thanks!

    As janine4gg mentions, the link she gives is one to a multi-part series in that blog that helps with all different numbering tasks. I recommend looking at the the first in that series: http://blogs.adobe.com/indesigndocs/2009/04/numbered_lists_part_i_outlines.html.
    Using defined paragraph styles that include a numbering style and using a defined numbered list, there should be no issues about where or which side numbered items fall on for numbering to continue correctly.
    If you mean that you have a text frame that you use to contain an outline and you need it to break in a certain place, you would put a text frame break in. Type > Insert Break Character > Frame Break. Link the text frame with the break to the text frame you want the text to flow into.

  • How can I customize Microsoft Word Outline Numbered List Templates with AppleScript?

    I wrote an applescript to set up a word document with the appropriate styles to give the document an academic setup, much like what Xelatex produces. This is a work in progress and I have a problem.
    I have successfully applied the style changes to each Header and I have applied the desired outline numbered list template "list template 5 of list gallery 3", however I would like to add tab stops to each one in order to make each header look slick like in Latex.
    To do what I want manually in Microsoft Word 2011 mac I would click Bullets and Numbering, customize, under text position i would check the tab stop box and put in some value (1 cm, for example)
    The following is an approximation of the result of running this script on a document with headings 1-9 applied consequently to each line, respectively. Note how they are not even. I think this is an issue with the template, but I want to be able to run this script on any mac without extra template files.
    1    Heading 1
    1.1    Heading 2
    1.1.1    Heading 3
    1.1.1.1    Heading 4
    1.1.1.1.1    Heading 5
    1.1.1.1.1.1 Heading 6
    1.1.1.1.1.1.1        Heading 7
    1.1.1.1.1.1.1.1Heading 8
    1.1.1.1.1.1.1.1.1 Heading 9
    Here is the script so far:
    Academic Paper Setup
    Copyright © 2012 macmadness86
    Just kidding there is no copyright. Open Source rules!
    You may use this code however you like. It would be nice
    if you made reference to the original code when sharing.
    THINGS TO DO:
    find a fix for changing font color of headings without hardcoding it.
    fix headings 4-9
    (*<Properties to be set by the user*)
    --number suffix corresponds to heading 1, heading 2, etc.
    --NOTE: To change the coloring of headings, it must be hardcoded. must find a fix.
    property fontName1 : "CMU Serif Roman"
    property fontName2 : "CMU Serif Roman"
    property fontName3 : "CMU Serif Roman"
    property fontName4 : "CMU Serif Roman"
    property fontName5 : "CMU Serif Roman"
    property fontName6 : "CMU Serif Roman"
    property fontName7 : "CMU Serif Roman"
    property fontName8 : "CMU Serif Roman"
    property fontName9 : "CMU Serif Roman"
    property fontSize1 : 15
    property fontSize2 : 14
    property fontSize3 : 13
    property fontSize4 : 12
    property fontSize5 : 12
    property fontSize6 : 12
    property fontSize7 : 12
    property fontSize8 : 12
    property fontSize9 : 12
    property boldTF : true
    property italicTF : false
    property highlightTF : false
    (*Properties to be set by the user>*)
    tell application "Microsoft Word"
        tell active document
            (*<normal code BLOCK*)
            set name of font object of Word style style normal to "CMU Serif Roman"
            set font size of font object of Word style style normal to 12
            set bold of font object of Word style style normal to false
            set italic of font object of Word style style normal to false
            set color index of font object of Word style style normal to black
            (*normal code BLOCK>*)
            (*<heading 1 code BLOCK*)
            set name of font object of Word style style heading1 to fontName1
            set font size of font object of Word style style heading1 to fontSize1
            set bold of font object of Word style style heading1 to boldTF
            set italic of font object of Word style style heading1 to italicTF
            set color index of font object of Word style style heading1 to black
            --set paragraph format left indent of paragraph format of Word style style heading1 to (centimeters to points centimeters 0) --indent sections relative to margin
            --set tab stop position of tab stop of Word style style heading1 to (centimeters to points centimeters 1)
            --set tab hanging indent of paragraph format of Word style style heading1 to count 1
            (*heading 1 code BLOCK>*)
            (*<heading 2 code BLOCK*)
            set name of font object of Word style style heading2 to fontName2
            set font size of font object of Word style style heading2 to fontSize2
            set bold of font object of Word style style heading2 to boldTF
            set italic of font object of Word style style heading2 to italicTF
            set color index of font object of Word style style heading2 to black
            (*heading 2 code BLOCK>*)
            (*<heading 3 code BLOCK*)
            set name of font object of Word style style heading3 to fontName3
            set font size of font object of Word style style heading3 to fontSize3
            set bold of font object of Word style style heading3 to boldTF
            set italic of font object of Word style style heading3 to italicTF
            set color index of font object of Word style style heading3 to black
            (*heading 3 code BLOCK>*)
            (*<heading 4 code BLOCK*)
            set name of font object of Word style style heading4 to fontName4
            set font size of font object of Word style style heading4 to fontSize4
            set bold of font object of Word style style heading4 to boldTF
            set italic of font object of Word style style heading4 to italicTF
            set color index of font object of Word style style heading4 to black
            (*heading 4 code BLOCK>*)
            (*<heading 5 code BLOCK*)
            set name of font object of Word style style heading5 to fontName5
            set font size of font object of Word style style heading5 to fontSize5
            set bold of font object of Word style style heading5 to boldTF
            set italic of font object of Word style style heading5 to italicTF
            set color index of font object of Word style style heading5 to black
            (*heading 5 code BLOCK>*)
            (*<heading 6 code BLOCK*)
            set name of font object of Word style style heading6 to fontName6
            set font size of font object of Word style style heading6 to fontSize6
            set bold of font object of Word style style heading6 to boldTF
            set italic of font object of Word style style heading6 to italicTF
            set color index of font object of Word style style heading6 to black
            (*heading 6 code BLOCK>*)
            (*<heading 7 code BLOCK*)
            set name of font object of Word style style heading7 to fontName7
            set font size of font object of Word style style heading7 to fontSize7
            set bold of font object of Word style style heading7 to boldTF
            set italic of font object of Word style style heading7 to italicTF
            set color index of font object of Word style style heading7 to black
            (*heading 7 code BLOCK>*)
            (*<heading 8 code BLOCK*)
            set name of font object of Word style style heading8 to fontName8
            set font size of font object of Word style style heading8 to fontSize8
            set bold of font object of Word style style heading8 to boldTF
            set italic of font object of Word style style heading8 to italicTF
            set color index of font object of Word style style heading8 to black
            (*heading 8 code BLOCK>*)
            (*<heading 9 code BLOCK*)
            set name of font object of Word style style heading9 to fontName9
            set font size of font object of Word style style heading9 to fontSize9
            set bold of font object of Word style style heading9 to boldTF
            set italic of font object of Word style style heading9 to italicTF
            set color index of font object of Word style style heading9 to black
            (*heading 9 code BLOCK>*)
        end tell
        (*<apply numbering to the sections code BLOCK*)
        set selFind to find object of selection --selects text of execute find command
        clear formatting selFind --reset selFind just to make sure
        set style of selFind to style heading1 --set style we are looking for
        execute find selFind find text "" wrap find find continue with find format and match forward
        if found of selFind is true then
            --display dialog (get content of text object of selection) --for debugging only
            (*<code BLOCK word__set paragraph style*)
            --I apply the formatting to the previously found text
            set myLT to list template 5 of list gallery 3 of active document
            apply list format template (list format of text object of selection) ¬
                list template myLT
        end if
        (*Apply numbering to the sections code BLOCK>*)
    end tell

    I figured it out . Just in case anyone else wants to know the script is below:
    tell application "Microsoft Word"
        set myTable to table 1 of selection
        convert to text myTable separator separate by tabs
    end tell

  • Outline Numbering in Numbers '09

    I want to create a five-level outline numbering in Numbers, but each entry has a 1. Surely I don't have to manually change each entry? it's 300 rows! The data has been copied and pasted from a website, then formatted in Numbers. Can outline numbering be applied, or does Numbers assume you're always creating your Tiered numbers list from scratch?

    BMcRaeC wrote:
    Seems like a no-brainer to me… why WOULDN'T you want to create a tabular outline heirarchy? Excel has had this function for a very long time.
    I don't understand your statement.
    Numbers isn't supposed to be a clone of Excel. The delivered features are selected in Cupertino, not in Redmont.
    Defining these features is based upon :
    ++-+-+-+-+-+-+-+-++
    Apple Human Interface Guidelines:
    Apply the 80 Percent Solution
    During the design process, if you discover problems with your product design, you might consider applying the 80 percent solution‚ that is, designing your software to meet the needs of at least 80 percent of your users. This type of design typically favors simpler, more elegant approaches to problems.
    If you try to design for the 20 percent of your target audience who are power users, your design may not be usable by the other 80 percent of users. Even though that smaller group of power users is likely to have good ideas for features, the majority of your user base may not think in the same way. Involving a broad range of users in your design process can help you find the 80 percent solution.
    +-+-+-+-+-+-+-+-+
    Yvan KOENIG (VALLAURIS, France) 10 mai 2011 22:28:08

  • Display Outline Numbering in a Hierarchical Query (Report)

    I have a requirement to show outline numbering of a Financial report.
    We hava a hierarchical query for displaying the report so you will see the report is indented.
    But what i want is to automatically number the items like this:
    1
       1.1
       1.2
       1.3
            1.3.1
            1.3.2
       1.4
    2.
        2.1
    3..
    ....Can we utilize Microsoft Word's Outline Numbering / Indents feature? or someone had succesffully implemented this?
    Thanks,
    Anton
    Edited by: anton on Jul 6, 2010 1:37 AM

    Is this numbering in your TOC or inside for-each group?

  • Just installed 10.6. Unable to print word document with outline numbering

    Just installed 10.6.8. Can't print Word document with outline numbering.

    You mean USB HUBs, correct? Not routers.
    Yes remove the HUBs and try the drives connected directly to the computer.

  • Outline Numbered Format in Textbox

    Is there a way to have lines in a textbox automatically be numbered like the Outline Numbered feature in Word? I want to create a dynamic form that formats like an outline when typed into a textbox. I am currently using Lifecycle Designer 8.
    example:
    1. xxxxxx
    1.1 xxxxxxxx
    1.2 xxxxxxxx
    2. xxxxxx
    Thnx-
    Alex R. Ruiz

    First, you don't provide the content that precedes this
    sample (you open with a LI tag), but there's way more code than
    necessary here.
    The main thing in lists is to simply select paragraph
    elements and click either the bullet or number toolbar icon. When
    you select paragraphs within the list for child formatting, simply
    click the increase indent icon. RH tends to end lists and resume
    them (as in your example), so you need to manually redo this, such
    as:
    OL
    LI [1. ...]
    LI [2. ...]
    /OL
    OL
    LI [a. ...]
    LI [b. ...]
    /OL
    OL start=3
    LI [3. ...]
    /OL
    should be:
    OL
    LI [1. ...]
    LI [2. ...]
    OL
    LI [a. ...]
    LI [b. ...]
    /OL
    LI [3. ...]
    /OL
    This results in a truly nested for of list/sublist elements,
    which translates very nicely to Word.
    Peter Grainge covers this in more depth on
    his
    site.
    Good luck,
    Leon

  • Outline numbered headings possible?

    I'd love to use Pages instead of Word for the briefs I have to write for law school. However, there's one formatting issue I can't figure out and is crucial. Is there a way to do outline numbered headings? For instance, I want to have headings throughout the text that look like this:
    I. This is a first level heading.
    A. A Second Level
    1) Third Level
    2) Third Level
    B. Another Second Level
    II. Heading level one again
    A. A Second Level
    B. And another
    I tried setting this up by applying numbering to the Heading and Sub-Heading styles -- and creating a Sub-sub-heading -- but the numbering doesn't reset. So the second level headings under (II) start at C and then D, instead of A and B.
    Am I missing something? Thank you.

    More about numbered headings and TOCs...
    To gather headings numbered using the list format into a TOC, you DO have to create separate styles for each heading level, or Pages will gather the headings into one TOC level. You then have to edit the TOC styles to match your heading levels. Once the TOC is built, you have to indent the sub-heading TOC entries manually. You will probably also have to go to the first heading style in the document body and set it to begin number at 1. I've done it. It works. It just requires some planning ... and leaving the TOC until the absolute last thing you do. If there was a way to attach documents to this message, I'd attach my test file.

  • Outline Numbering HTML

    Hi All,
    Has anyone tried to get outline numbering to work with HTML
    or dreamweaver? I'm not even sure if this feature is supported?
    I've done the usual trawl around google but only found a
    couple of very convoluted methods. I get the feeling that it is not
    supported and would rather get some feedback from people who have
    tried it.
    thanks
    Craig

    On 26 Sep 2006 in macromedia.dreamweaver, CraigCC wrote:
    > Has anyone tried to get outline numbering to work with
    HTML or
    > dreamweaver? I'm not even sure if this feature is
    supported?
    >
    > I've done the usual trawl around google but only found a
    couple of
    > very convoluted methods. I get the feeling that it is
    not supported
    > and would rather get some feedback from people who have
    tried it.
    See code below. Works in FF; doesn't in IE. I haven't tried
    it in
    other browsers. The code comes direct from the w3c (note the
    tagnames
    in uppercase):
    http://www.w3.org/TR/REC-CSS2/generate.html#scope
    <style type="text/css">
    OL { counter-reset: item }
    LI { display: block }
    ol LI:before { content: counters(item, ".");
    counter-increment: item
    </style>
    </head>
    <body>
    <OL> <!-- (set item[0] to 0 -->
    <LI>item <!-- increment item[0] (= 1) -->
    <LI>item <!-- increment item[0] (= 2) -->
    <OL> <!-- (set item[1] to 0 -->
    <LI>item <!-- increment item[1] (= 1) -->
    <LI>item <!-- increment item[1] (= 2) -->
    <LI>item <!-- increment item[1] (= 3) -->
    <OL> <!-- (set item[2] to 0 -->
    <LI>item <!-- increment item[2] (= 1) -->
    </OL> <!-- ) -->
    <OL> <!-- (set item[3] to 0 -->
    <LI> <!-- increment item[3] (= 1) -->
    </OL> <!-- ) -->
    <LI>item <!-- increment item[1] (= 4) -->
    </OL> <!-- ) -->
    <LI>item <!-- increment item[0] (= 3) -->
    <LI>item <!-- increment item[0] (= 4) -->
    </OL> <!-- ) -->
    <OL> <!-- (reset item[4] to 0 -->
    <LI>item <!-- increment item[4] (= 1) -->
    <LI>item <!-- increment item[4] (= 2) -->
    </OL>
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/email.php

  • Can I show outline numbering in a table of contents?

    I am using an outline to put together a reference book.  This is hte format I'm using:
    A. Law and Justice
         1. Law of the Land
              a. Example
              b. Example
         2. Law Publication
              a. Example
              b. Example
    B. Government and Civil Officers
         1. Requirements for Civil Leaders
    However, the table of contents shows, "Law and Justice" instead of "A Law and Justice"  It also does not show the second level number.  For example, it shows "Law of the Land" instead of "1. Law of the Land".  Does anyone know how I can force the table of contents to show the numbering?
    Thanks!

    Pages T.O.C. does not include any List numbering and no you can not force it to.
    If you want numbering, you'll have to type it manually.
    Or use alternative software. Pages (whatever version you are using) is not compulsory.
    Peter

  • Where to find Numbers 2.3

    I want to have the older version of numbers to work with, because it has several features that I use regularly that are lacking in Numbers 3.0. Where can I find the older version? I purchased it back in December 2011.
    Clyde Stauffer

    Hi Jason,
    And here are two documents open at the same time, Numbers 3.0.1 on top, Numbers 2.3 below:
    Come on in, the water's fine!
    Regards,
    Ian.

  • Outline numbering between cells

    I am tying to create a tiered numbering system. I have got to work perfectly within one  cell.  However I want each number increment to have its own cell and I can't get the automatic numering to work if I jump to a new cell.  Please help.

    Hi Tom,
    I typed your tiered numbering into cells A1 to F1. The cells are all formatted as Text (because 1.2.1 and 1.2.2 are not numbers)
    Question: how do you tell Numbers how to increment each column? How does Numbers know that you want 1.2.1 in Column D, instead of 1.3? How does Numbers know to increment from 1.22 in Column E to 1.3 in Column F?
    I can't follow (and neither will Numbers, unless you tell it how).
    Perhaps you need another table where you show how Levels 1, 2 and 3 will vary.
    You can use the function CONCATENATE to add elements to a string. However, to make it automatic, Numbers will need some rules to follow.
    Regards,
    Ian.

  • How do I create a chart where the lower numbers are at the top?

    I'm charting data that shows a ranking, where the rank can be a number anywhere from 1 to 1000. 1 is the highest. When I create a chart, 1 is at the bottom. How do I flip the chart so 1 is at the top and 1000 at the bottom?

    Philip,
    I think Bad Units suggestion is similar and better.  Rather than simply inverting the sign to that with an offset:
    I suggested
    0  - n
    Bad Unit suggested:
    100 - n
    (assuming there are 100 ranks)  if there are A ranks then I suggest (like Bad Unit):
    A - n
    This can be accomplished by moving the current data to another column, then performing the calculation in the column where the chart takes its' data.
    move the data over to an adjacent column
    Now enter the formula to adjust the rankings:
    B2=100-C2
    select B2 and fill down as needed.  To do this for a large data set select, and copy, B2.  Then select B2 and scroll to the end of the colunm using the scroll bar then shift-click the last cel in the column, then paste.

  • Where is the Numbers demo download?

    I'd like to try it before I buy it. I've searched the downloads for iWork Demo and Numbers Demo... nothing. I've also checked out both http://www.apple.com/iwork/ and http://www.apple.com/support/iwork/... nothing. What am I missing here?

    iWork '08 trial - almost 500MB

  • Where did the numbers expense sheet template disappear to?

    The expense sheet template has disappeared from the various forms.  Where can I get one?  I will be doing some traveling and need to record my expenses.
    Dom

    All of Auditions presets are stored in an Audition's settings folder. In Win 7 it is  C:\Users\"username"\AppData\Roaming\Adobe\Audition\7.0" for the latest version of Audition. Not sure if it is the same path in Win 8.
    In there you should find various .xml files for Favorites, Effects Presets and others. If you rename those files by, for instance changing the .xml to .bak then when Audition next opens it won't be able to find them and will automatically reinstall the default files. Hopefully this will cure your problem. However if you had any custom changes saved they won't re-appear.

Maybe you are looking for

  • Solaris 8 compiled binaries on solaris 10 box

    Hi all, I have a plain C code which compiles and runs fine on my solaris 8 box. I have to deploy the compiled binaries (on soalris 8) on a different machine which has solaris 10 installed. My application uses libqt-ms.so.3, libqutil.so.1.0.0, libjpeg

  • Photo Library Indexes

    When I got started in IPhoto, I imported photos from an external drive. I then discovered the only way I could view the pictures was to make sure that drive was connected - which was fine (in my mind) because it took up less space on the internal HD.

  • Cant seem to edit iMovie09 project

    My 9 year old son is putting together a party invitation for his friends and is using iMovie09. We are very new to Apple and are just learning, but we are having trouble with his project. He has managed to create a project with a number of pictures f

  • Multiple Item selection in comboBox

    Can combo box be used to selected multiple items at a time?

  • Purchased iPhone on O2 today without realising not out of TMobile contract!

    Hi there Today I purchased an iphone 3GS at Carphone Warehouse in Central London. I am currently on TMobile and they went through all relevant checks to get me onto O2 etc. However although CPW told me I needed to get a PAC code from TMobile they omi