Inline figure and fixed-location figure numbering

I would like to move some of the anchored figures in a story to captioned
frames, so that text will flow around them. I'm encountering two problems in doing this:
1. Figures in the fixed graphics are numbered separately from figures in the main story--their numbering starts at the end of the numbers in the main story.
2. Footnotes in the fixed figures, go to the bottom of the figure frame instead the bottom of the page.
Have I missed something? Or do I have to do a bunch of manual numbering?

randolph549 wrote:
I would like to move some of the anchored figures in a story to captioned
frames, so that text will flow around them. I'm encountering two problems in doing this:
1. Figures in the fixed graphics are numbered separately from figures in the main story--their numbering starts at the end of the numbers in the main story.
2. Footnotes in the fixed figures, go to the bottom of the figure frame instead the bottom of the page.
Have I missed something? Or do I have to do a bunch of manual numbering?
1. The numbered list that affects your caption paragraph style has the option Continue Numbers Across Stories ON. This causes the paragraphs numbered with the style that uses a numbered list to number sequentially in a given story, then across other stories on the page. A stand-alone frame that contains a caption that uses the style continues the numbering after the last number in the preceding story.
You can fix this by using anchored frames in the main text (story)  for all your graphics container frames. You can adjust the text flow around the anchored frames with Text Wrap.
2. Footnotes always go to the bottom of the frame their text is in.
Incorporating all the graphics in anchored frames will collect all the footnote texts at the bottom of the single frame that contains them all.
Read about inline anchored frames, custom anchored frames, numbered lists, and footnotes in Help.
HTH
Regards,
Peter
Peter Gold
KnowHow ProServices

Similar Messages

  • How  use non cumulative key figure and noncumulative key figure screenshot

    how  use non cumulative key figure and noncumulative key figure screenshot

    Hello,
    Please see this docs for Non-Cumulative and Snapshot scenario,
    [How to Handle Inventory Management Scenarios in BW (NW2004)|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328]
    [Non-Cumulative Values / Stock Handling|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0b8dfe6-fe1c-2a10-e8bd-c7acc921f366]
    Thanks
    Chandran

  • "new selection", restricted key figure and basic key figure

    Hi,
    I have a test report and i have a basic keyfigure "ZRevenue" and "restricted key figure"(its defined over "ZRevenue") and
    a "new selection"(its defined over "ZRevenue").
    Now that i have "material number" and "material color" and "request id" in the rows. ("Material color" is a navigational attribute of material number).
    In the column level i have a basic key figure  "ZRevenue" and "restricted key figure"(its defined over "ZRevenue")  and
    a "new selection"(its defined over "ZRevenue") .
    In a "restricted key figure" or "new selection", we can include a basic key figure or new formula or calculated key figure or an already restricted key figure into it, then we restrict it, with one or more characteristic values. In the report output we get KF values only for those characteristic values, with which it has been restricted. Please correct me if my understanding is wrong.
    Initially i restricted the "new selection" (with material number 1 to 3) and "restricted key figure" (with material number 1 to 4).
    In the cube i have material numbers 1 to 11. Now all the values were displayed from 1 to 11, but for the
    "new selection" (with material number 1 to 3) and "restricted key figure" (with material number 1 to 4) i got values only for 1 to 3 and values for 1 to 4 respectively. This is as expected and is working fine.
    Now i tried to restrict the basic keyfigure  "ZRevenue" with material number 1, the output was only until the material number 4 (this is the greatest value of the material number defined over the "restricted key figure").
    Then i tried to restrict the "new selection" (with material number 1 to 9) , then the output was from 1 to 9 material numbers.
    If i remove the restriction over the basic keyfigure  "ZRevenue" , then i get all the material numbers from 1 to 11, for "new selection" i get values for the material number 1 to 9 and for "restricted key figure" i get values for the material numbers 1 to 4.
    Can some one explain me why this behavior?
    Edited by: sapbi enthusiastic on Jan 31, 2012 11:48 AM

    Hi,
    This is where set theory comes in handy
    So what you have is a basic KF (BKF), a selection (SEL), and an RKF.
    When producing an output, BEx seems to be looking for the union of all the restrictions you place on these. So when your BKF is not restricted, the union comes out to everything in the underlying DSO. When you restrict the BKF for material number 1, this is how the restrictions might have been processed internally
    BKF: Restriction on material 1
    RKF: Restriction on material 1-4
    SEL: Restriction on 1-3
    Union of these three: 1-4
    When you remove the BKF restriction and make SEL restricted to 9, this is how it plays out
    BKF: NO Restriction on material
    SEL: Restriction on material 1-9
    RKF: Restriction on 1-4
    Union of these three: everything.
    As the union ends up giving you everything, you get 11 records. However, as SEL is restricted for 1-9, the SEL will have values for the materials 1-9. Likewise for RKF, you'll get values only for materials 1-4. Hope this clears things up!
    Regards,
    Suhas

  • Opening and closing stock figure

    Hi Experts,
    How can i get the opening stock figure and closing stock figure for one month in SAP Buiness one 8.8?

    Hi,
    I found this on the forum; try this:
    DECLARE @FromDate DateTime
    DECLARE @ToDate DateTime
    /* SELECT T0.DocDate FROM OINM T0 where T0.DocDate >=[%0] */
    SET @FromDate = [%0]
    /* SELECT T0.DocDate FROM OINM T0 where T0.DocDate <=[%0] */
    SET @ToDate = [%1]
    Select X.DocDate, X.ItemCode,
    ((Select isnull(sum(InQty-OutQty),'0')From OINM T0 Where T0.ItemCode=X.ItemCode And
    (T0.DataSource='I' or T0.DataSource='N') And T0.DocDate < X.DocDate)) As 'OpeningStock',
    IsNull(max(X.price),0) as 'OpeningUnitPrice',
    ((Select isnull(sum(InQty-OutQty),'0')From OINM T0 Where T0.ItemCode=X.ItemCode And
    (T0.DataSource='I' or T0.DataSource='N') And T0.DocDate < X.DocDate)) *
    IsNull(max(X.price),0) AS 'OPENING VALUE',
    IsNull(sum(X.InQty),0) As 'Received Qty',
    IsNull(max(X.price),0) as 'Purchase  Unit Price',
    IsNull(sum(X.InQty),0) *
    IsNull(max(X.price),0) as 'PURCHASE VALUE',
    IsNull(sum(X.OutQty),0) As 'Consumed Qty',
    IsNull(max(X.price),0) as 'Sale Unit Price',
    IsNull(sum(X.OutQty),0) *
    IsNull(max(X.price),0) AS 'SALE VALUE',
    ((Select isnull(sum(InQty-OutQty),'0') From OINM T0 Where T0.ItemCode=X.ItemCode And
    (T0.DataSource='I' or T0.DataSource='N') And T0.DocDate < X.DocDate)+
    (Select isNULL(sum(T0.InQty),'0') From OINM T0 Where T0.ItemCode=X.ItemCode And T0.DocDate<=X.DocDate And
    (T0.DataSource='I' or T0.DataSource='N') And T0.DocDate = X.DocDate)-
    (Select isNULL(sum(T0.OutQty),'0') From OINM T0 Where T0.ItemCode=X.ItemCode And T0.DocDate<=X.DocDate And
    (T0.DataSource='I' or T0.DataSource='N') And T0.DocDate = X.DocDate)) As 'ClosingStock',
    ((((Select isnull(sum(InQty-OutQty),'0')From OINM T0 Where T0.ItemCode=X.ItemCode And
    (T0.DataSource='I' or T0.DataSource='N') And T0.DocDate < X.DocDate)) *
    IsNull(max(X.price),0)) + (IsNull(sum(X.InQty),0) * IsNull(max(X.price),0)) - (IsNull(sum(X.OutQty),0) *
    IsNull(max(X.price),0))) as 'Final Balance Value'
    FROM OINM X Where ItemCode=X.ItemCode And
    (X.DataSource='I' or X.DataSource='N')
    Group by X.DocDate,X.ItemCode
    Order by X.DocDate
    Hope this helps.
    Thanks,
    Joseph

  • Selection Key Figures and Key Figures

    I am building a query and I need to combine Key Figures and Selected Key Figures so that they appear on the same row.  However, when I try to do this I get a message that you cannot put the elements in the same structure.  However, if I put in different structures they will not be aligned.  How can I overcome? Thanks

    if i undertd your issue correctly..u have one KF struxture and one characteristic structure.In characteristic structure,u r having restricted characteristics and u r tyring to have a KF in char structure???if so,it is not possible..where exactly u r getting error?it will not allow you to drag and drop Kefigure into Query deisgner except into KF structure..
    in char structure,if u r gng with new selection,u will not have option to select any KFs.
    it could be better if u provide an example rather than explaining theoritically.
    please note that u cant have a KF in characteristic structure .u can have a char in KF strcucture with a KF combination i.e. Restricted KF.
    Message was edited by: Murali

  • I am trying to pair my cell phone and tablet using Messages   App,  but only MMS messages will come through on my tablet.   I've tried pairing and unpaired,  reinstalling app on my tablet,  and can't figure it out.   Any idea how to fix this?

    I am trying to pair my cell phone and tablet using Messages   App,  but only MMS messages will come through on my tablet.   I've tried pairing and unpaired,  reinstalling app on my tablet,  and can't figure it out.   Any idea how to fix this?
    Thanks

    I Shared my most ridiculous situation but didn t log under your problem.
    sorry, I gave you your answer under sunshine99 or Dianna. I want out and you want in.
    if you not find just email me at [removed]
    thanks
    Personal information removed as required by the Verizon Wireless Terms of Service
    Message was edited by: Admin Moderator

  • I recently got an Ipod touch model A1213 and I cannot figure out how to get apps on it. I have tried everything and when I try to update software, it says Im already up to date, but my software version is only 1.1.5. How do i fix it?

    I recent recieved and Ipod touch model A1213 and i cannot figure out how to get apps on it. I have tried everything i can think of and when i try to update my ipod software it tells me that its already up to date. even though its only 1.1.5. How do i fix it?

    You have a 1st generation iPod Touch.
    It can be updated to 3.1.3 by purchase. See here Purchasing iOS 3.1 Software Update for iPod touch (1st generation)

  • Numbered captions for figures and tables

    Can anyone tell me how to create captions for figures and tables such that they are automatically numbers (ex. Figure 1, Figure 2, ...) so that when I remove or add a new figure in the middle of the document I don't have to manually re-number everything. If it still is not possible in Pages ver. 4, I hope that someone can write an applescript that will post process a document to prefix captions preceding tables with Table # and any captions following images with Figure # or "Some custom phrase" followed by #.

    Writing that here is perfectly useless.
    _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 (from FRANCE samedi 7 mars 2009 23:16:42)

  • Cant find method? and i cant figure out how to round a decimal....

    when i compile this it says "getAverage not found in class AverageGradeUser" - look at actionPeformed() to find where its used at....how do i fix this, i had it working but somehow messed it up and when the new average is figured and put in the results textfield, how can u round it off to the nearest tenth (0.1)..ive tried using NumberFormat and related things but couldnt get it to work
    please help me
    thanks
    p.s. keep in mind i am a rookie-rookie-rookie in java programming
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class AverageGradeUser extends Applet implements ActionListener
    /****InstanceVariables****/
    public TextField input;
    /*****InitMethod****/
    public void init()
    Label directions = new Label("Enter a grade percent: ");
    input = new TextField(10);
    Label results = new Label("Your new average is: ");
    TextField output = new TextField(10);
    add(directions);
    add(input);
    add(results);
    add(output);
    output.setEditable(false);
    input.addActionListener(this);
    } // init()
    public void actionPerformed(ActionEvent e)
    double grade = Double.parseDouble(input.getText());
    if (e.getSource() == input)
    getAverage(grade);
    } // actionPerformed()
    } // AverageGradeUser class
    ============================================================
    (the classes are in separate files but both are in the project)
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class AverageGrade
    /****InstanceVariables****/
    private double total = 0;
    private double counter = 0;
    private double average = 0;
    private TextField input;
    private TextField output;
    /****ConstructorMethod****/
    public AverageGrade()
    /****AccessMethod****/
    public void getAverage(double g)
    total += g;
    counter ++;
    average = total / counter;
    output.setText(average + " " + getLetterGrade(average));
    input.setText("");
    } // getAverage()
    private String getLetterGrade(double avg)
    if (avg >= 90)
    return "A";
    else if (avg >= 80)
    return "B";
    else if (avg >= 70)
    return "C";
    else if (avg >= 60)
    return "D";
    else if (avg < 60)
    return "F";
    else
    return "error";
    } // getLetterGrade()
    } // AverageGrade class

    According to the code you have posted, method "getAverage()" is defined in class "AverageGrade" -- and not in class "AverageGradeUser". Therefore, you have two choices (in my opinion):
    1. Add the definition of method "getAverage()" to class "AverageGradeUser"
    2. Change the "actionPerformed()" method:
    Replace the line:
    getAverage(grade)with
    new AverageGrade().getAverage(grade)Hope this helps you.
    Good Luck,
    Avi.

  • Pretend I know nothing about this topic, because I DON'T, and help me figure out how to format bullets in 'Pages' for IPad. I turned them on somehow, and now can't turn them off, and they are popping up in all the wrong places

    I think I effectively proved my point about knowing nothing about this, by posting my whole question in the title. To review, I have a 1 year old iPad, and have Pages on it for a word processing program. I somehow turned on bullets on one of my documents and can't figure out how to stop it, and they are in all the wrong places. How do I turn it off?

    1-800-676-2775  apple support   tech support 1 800 275 2273
    If your computer is on one minute before it freezes, than you have one minute to secure your serial number.
    click the apple----->click about this Mac ------> click on version----> until you see the serial number.  You may have to do this a couple of times if it freezes before you have all the numbers.  A camera might help.
    Good Luck

  • Setting up Figure and Table Titles for Translation Import and Export?

    Hi,
    I use InDesign to write User Manuals. Once the manual complete, I use SDL World Server to translate the document which works wonderful. The way it works is the document is parsed by the xml data and when you export the document from SDL, the translated data replaces the English data, it’s pretty slick! The problem that I have is that my Figure and Table numbers are hard coded with the word "Figure" and "Table” as part of the numbering system and will not translate nor export (see screenshot below). Is there A.) A way I can make the code become a reference to a text box in the document that then can be translated? B.) A common or different way to handle this?
    If you need any more info, just let me know. Thank you for your help!

    The problem that I have is that my Figure and Table numbers are hard coded with the word "Figure" and "Table” as part of the numbering system and will not translate nor export (see screenshot below). Is there A.) A way I can make the code become a reference to a text box in the document that then can be translated? B.) A common or different way to handle this?
    I've always avoided that auto-figure-naming stuff, in any application, for the sole reason that it often doesn't localize well. I'm not a WorldServer user, but a SDL Trados Studio user, so I don't know exactly what to tell you. If you're the kind of person to pop your IDML open in a text editor, you'll find that the actual "Figure" text appears in Styles.xml, and I doubt that SDL's IDML filters look there for text for translation. I don't actually know for sure, and I do know you're using an SDL product with which I have no familiarity whatsoever.
    A different, somewhat kludgy way to handle this would be to use auto-numbering to create an invisible paragraph number (color of Paper, size of 0.1 pts, glyph width of 1%, or something along those lines), and then have the phrase "Figure" in your live text, followed by a cross-reference to the paragraph number.
    A common way to handle this would be to ask SDL to update their IDML filter to pick up terms used in auto-numbered lists.

  • Help I have a G5 and I need to dowload or upgrade to mac osx 10.5 and i cant figure out how

    Help I have a G5 and I need to dowload or upgrade to mac osx 10.5 and i cant figure out how

    Mac OS X 10.5 Leopard installation system requirements
    http://support.apple.com/kb/TA24950
    Leopard is no longer available at the Apple Store but may be available by calling Apple Phone Sales @ 1-800-MY-APPLE (1-800-692-7753).
    If you can't obtain a retail install DVD from Apple, look on eBay or Google the installer part numbers to possibly find at an on-line store. Here's what to look for:
    MB427Z/A  Leopard 10.5.1 install DVD
    MB576Z/A  Leopard 10.5.4 install DVD
    MB021Z/A  Leopard 10.5.6 install DVD (single user)
    MB022Z/A  Leopard 10.5.6 install DVD (5-user family pack)
    Installing Mac OS X 10.5 Leopard
    http://support.apple.com/kb/HT1544
    Mac OS X 10.5 Leopard Installation and Setup Guide
    http://manuals.info.apple.com/en/leopard_install-setup.pdf
    After you install the base 10.5, download & install the 10.5.8 combo update at http://support.apple.com/downloads/Mac_OS_X_10_5_8_Combo_Update
    The DVD should look like this
    Caution - Leopard does not support classic mode. So, if you currently open OS 9 apps in classic mode, you won't be able to do this if you upgrade to Leopard.
     Cheers, Tom

  • How to include in table of contents the list of figures and list of tables?

    How to include in table of content the "Table of contents", "List of figures" and "List of tables"? All are generated with function Table of contents, but they will not appear in generated table of contents even if they have proper style of headings - Heading 1, as other chapter.
    I get this in generated Table of contentes of my dissertaion thesis:
    Table of contents
    Preface
    Table of contents <- missing
    List of tables <- missing
    List of figures <- missing
    Introduction
    Main
    Conclusion
    Is it ok, that generated lists are not included in table of contents?

    You've just confused me.
    My understanding of how this is set up is that either:
    This is a book, and there is a master TOC that includes all book documents and a document-specific TOC in each component file, or
    This is a single file and there is one master TOC that includes all sections and a section-specific TOC that includes only the individual section.
    In the first case, I think you would want two TOC styles set up, one that includes the chapter heads (if I understood how you said this worked) for the for the master, and you would include all docs in the book when you generate it, and a second style for the individual chapters, with the subheadings you want to include.
    In the second case, it would be similar, but instead of only one style to cover the section TOCS, I think you would need to create a unique set of pargraph styles for the headings in each section (they can all be the same format, based one section, just with unique names), and then make a TOC style for each section that includes only the styles from that section.
    OK,  wait a sec. I just reread what you said: "Another thing: when the numbers are "linked" and updating well, they  display indide a little box. Not a text box, but a kind of little frame  around the numbers. That frame makes it imposible to delete just one  number: when the TOC says that Section 6.1 is in page 135, for example,  you cannot delete just the 5, it deletes, not just the 3 numbers, but  also the doted tab."
    I think these are NOT normal TOCs created by using Layout > TOC (but you could replace them with ones that are, if you set up your styles properly and the text you want to include is appearing on the pages). Those little boxes you mention sound like cross-references, which should update automatically without any intervention at all. Unfortunately, cross-refs can be flakey, especially if they point to another document. I'd open the cross-refs panel and see if you need to recreate a bunch of links.

  • Does Fixing Key figure be part of Planning area?

    Hi,
          I saw the post by David and this question popped from there. The answer may be simple but I just want to confirm it.
    If I am fixing a key figure A and storing the fixing information in another key figure B. I specify the Key Figure B in Key figure A definition (RSD1) as the fixing key figure.
    I also know that both key figures A and B are APO key figures.
    Now the question is: Do we need to include both A and B in the planning area and planning book even though I need only key figure A?
    Thanks.

    We can wait for more people to respond, however here is my view.
    Fixed TS Key Figures actually maintains the fixed component of the primary key figure. It can have its own disagg logic and in most business cases, it will be same as the primary key figure. It needs to be intialized for the same time zone as that of the primary keyfigure which is only possible if both the keyfigures co-exist in a planning area. Figuratively take the Fixed Key Figure as a twin of the primary Key Figure which holds only a certain portion of the primary determined as fixed. The fixing logic will not work correctly if its configuration is not similar to the one of primary.

  • How to move elements (figures and tables) to float

    Hi all,
    We have created an XSLT for the XML-IN in Indesign, its working fine and all the styles are applied automatically and figures and tables were placed as inline.
    Now we need to move the INLINE elements to FLOATING.
    How to move the INLINE elements such as figures and tables to Floating. This is for automation purpose.
    We are stuck up, please suggest.
    Our requirement is need to move the "figures" from "Inline" to "float" for auto pagination purpose.
    Please give us a route to end with proper result. We are at learning stage of Java Script.
    We use Indesign CS3 with JavaScript, I am not asking the full code, just give us an idea, how to pick from the XML tree and make it as float.
    Kavya

    Use one of the selection tools, e.g. selection brush, lasso tool, to select the object, then place it on its own layer.
    In your example, you would select the moon. You will see "marching ants" surrounding the selection, delineating  the boundary of the selection and that it is active.
    To place the object on its own layer, go to Layer menu>new> layer via copy, or CTRL+J. You will see the object surrounded by transparency (checkerboard pattern).
    Use the move tool to position the moon object wherever you want
    Place a blank layer below the layer created in step #2, then fill it with your new background.
    You can select multiple objects and place them this way to suit. Again, back to your hypothetical of.10 objects on 10 layers, you can link these layers by pressing CTRL+left clicking on each of the 10 layers in the layers palette.
    If you use the move tool, you will see that they move as a block. If you are unhappy with one of the layers as you go along, simply delete it, and replace it with a new one.
    As for naming the layers, right click on a layer, and from the menu select "rename" layer to bring up the layers properties, then rename it to something meaningful.
    Good luck with your project.

Maybe you are looking for

  • Upgrade to iLife 09

    I just purchased iLife 08 about two weeks ago, now I see iLife 09 is out. Is there anyway of getting a free update since so short of time passed? Also, I only bought the one copy since my wife's Mac Pro was the only Mac in the house. After setting up

  • Bricked unlocked iphone 5

    i got a brand new unlocked iphone 5... i opened, turned it on, set up everything but i didnt connect the phone to itunes, so... the phone was NOT activated... i put the sim card then it couldnt get any signal... so i decided to restore the phone usin

  • LOV with custom popup in af:query

    Hi, We have a use case where we need to display an LOV field in Search Panel (af:query). But, the LOV in Search Panel should be displayed with a custom popup. Is it possible display a field in Search Panel as input LOV with custom popup ?

  • Table is multiplying itself

    I set up a table in a new file and find that it's repeating itself. Although I should have at most 2 pages, I have 18. How can I get rid of the 16 repeat pages and keep from making this mistake again? TIA

  • Setup of PRE & PSE V12 fails repeatedly even after reboot

    I have a working installation of Lightromm 5.3 Photoshop Elements V11 Premiere Elements V11 on a Windows 7 SP1 PC. After purchasing a new licenes of PSE&PRE V12 succesfully downloaded and unpacked all files. but Setup process fails even after reboot