Dynamic Table of Content (For specific String)

Dear Experts,
I want to table of content ( Index page).
Create index page at beginning of page or at last of the page with only three contents.
1. Record Number
2. Title
3. Page No.
For Example,
No.                   Title                         PageNo
1                    Technical Specs             2
2                    Technical Details            4
3                    Types of Machine           7
4                    Price of Machine            8
Here all Title is in different  Group Header, Sub Report-Group Header, Details and Footer as a TEXT OBJECT.
So How Can I can prepare Index Page?
i hope you understand all my requirements.
Thanks & Regards,
Nishit Makadia

Sheri,
This isn't possible at the moment. Pages for iPad can only handle external links.

Similar Messages

  • How do I make a table of contents for a collection of six short stories that is after the legal page and NOT in the front on an unnumbered page?

    How do I make a table of contents for a collection of six short stories that is after the legal page and NOT in the front on an unnumbered page?
    When I first started I made a title page and then pasted in my first story from a .TXT file. After cleaning up I went back to the front a couple of empty lines ahead of the story and typed in the story title.  Unlarged the font size and centered it, then

    You can't do that. This is what the Pages User Guide, downloadable from your Pages Help menu, says:
    Creating and Updating a Table of Contents
    Each table of contents (TOC) you create using a Word Processing template lists only the content that follows it, up until the next table of contents. If you want a master table of contents for the entire document, it must be the only table of contents, and it must be at the beginning of the document.
    You can do it manually though.

  • Can you create a table of contents for the documents within a PDF Portfolio?

    If I create a pdf portfolio that contains multiple documents (e.g. Word, multiple PDFs and Excel documents), is there a way to create a table of contents at the beginning of the portfolio to help navigate to the individual documents?

    Hi,
    The Files list displays a list of files, so the user can quickly see all the files in the portfolio with any information you want to share; title, description, file type, size etc.
    Or, you can also use a different layout, for example, the Linear and use the space next to each file to describe it.
    Hope this helps.......
    JGaf

  • Help generate dynamic table in xslt for apache FOP

    down vote favorite
    For the following xml file, i need to generate an xsl-fo file to be converted into pdf.
    I am new to style sheets and struggling to create dynamic table. Please help.
    Also, the width for each column varies,based on the column.How would i include this into the code?
    The Column Headers and Column Values are dynamically populated in the xml file. Below is a sample.
    Can anybody please help in generating xsl-fo or xslt code?
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <ReportData>
    <ColumnHeaders>
    <ColumnHeader>
    <Name>Col-Header1</Name>
    <Width>5</Length>
    </ColumnHeader>
    <ColumnHeader>
    <Name>Col-Header2</Name>
    <Width>10</Length>
    </ColumnHeader>
    <ColumnHeader>
    <Name>Col-Header3</Name>
    <Width>8</Length>
    </ColumnHeader>
    </ColumnHeaders>
    <Rows>
    <Row>
    <Column>Row1-Col1</Column>
    <Column>Row1-Col2</Column>
    <Column>Row1-Col3</Column>
    </Row>
    <Row>
    <Column>Row2-Col1</Column>
    <Column>Row2-Col2</Column>
    <Column>Row2-Col3</Column>
    </Row>
    </Rows>
    </ReportData>

    I did some xsl-fo a few years ago for a project.
    It was an invoice generator spawning multiple PDFs out of single XML document generated from the database. Pretty cool stuff but very resource-consuming.
    I'm a bit rusty but here's a basic example for a single table, based on your sample data :
    XSLT stylesheet :
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
      <xsl:output indent="yes"/>
      <xsl:template match="/ReportData">
        <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
          <fo:layout-master-set>
            <fo:simple-page-master master-name="Main" margin="8mm"
              page-width="250mm"
              page-height="100mm">
              <fo:region-body />
            </fo:simple-page-master>
          </fo:layout-master-set>
          <fo:page-sequence master-reference="Main">
            <fo:flow flow-name="xsl-region-body">
              <fo:block>
                <fo:table table-layout="fixed" border-style="solid">
                  <xsl:apply-templates select="ColumnHeaders/ColumnHeader" mode="column"/>
                  <xsl:apply-templates select="ColumnHeaders"/>
                  <fo:table-body>
                       <xsl:apply-templates select="Rows/Row"/>
                  </fo:table-body>
                </fo:table>     
              </fo:block>
            </fo:flow>
          </fo:page-sequence>
        </fo:root>
      </xsl:template>
      <xsl:template match="ColumnHeaders">
        <fo:table-header>
             <fo:table-row background-color="rgb(200,200,200)">
                  <xsl:apply-templates select="ColumnHeader" mode="header"/>
             </fo:table-row>
        </fo:table-header>
      </xsl:template>
      <xsl:template match="ColumnHeader" mode="column">
        <fo:table-column column-width="{concat(Width*10,'mm')}"/>
      </xsl:template>
      <xsl:template match="ColumnHeader" mode="header">
        <fo:table-cell border-style="solid">
          <fo:block font-weight="bold"><xsl:value-of select="Name"/></fo:block>
        </fo:table-cell>
      </xsl:template>
      <xsl:template match="Row">
           <fo:table-row>
          <xsl:apply-templates select="Column"/>
        </fo:table-row>
      </xsl:template>
      <xsl:template match="Column">
        <fo:table-cell border-style="solid">
          <fo:block><xsl:value-of select="."/></fo:block>
        </fo:table-cell>
      </xsl:template>
    </xsl:stylesheet>
    {code}
    Calling the XSLT engine and FOP :
    {code}
    D:\XSLT>gen_pdf_otn.bat
    D:\XSLT>java -jar saxon9he.jar -s:in/reportdata.xml -xsl:testfo.xsl -o:out/testfo.xml  2>errors.log
    D:\XSLT>java -jar fop.jar org.apache.fop.cli.Main -fo out/testfo.xml -pdf out/testfo.pdf -c morefontsconfig.xml  2>errors.log
    D:\XSLT>pause
    Appuyez sur une touche pour continuer...
    {code}
    Ouput :
    - The intermediate XSL-FO document :
    {code:xml}
    <?xml version="1.0" encoding="UTF-8"?>
    <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
       <fo:layout-master-set>
          <fo:simple-page-master master-name="Main" margin="8mm" page-width="250mm" page-height="100mm">
             <fo:region-body/>
          </fo:simple-page-master>
       </fo:layout-master-set>
       <fo:page-sequence master-reference="Main">
          <fo:flow flow-name="xsl-region-body">
             <fo:block>
                <fo:table table-layout="fixed" border-style="solid">
                   <fo:table-column column-width="50mm"/>
                   <fo:table-column column-width="100mm"/>
                   <fo:table-column column-width="80mm"/>
                   <fo:table-header>
                      <fo:table-row background-color="rgb(200,200,200)">
                         <fo:table-cell border-style="solid">
                            <fo:block font-weight="bold">Col-Header1</fo:block>
                         </fo:table-cell>
                         <fo:table-cell border-style="solid">
                            <fo:block font-weight="bold">Col-Header2</fo:block>
                         </fo:table-cell>
                         <fo:table-cell border-style="solid">
                            <fo:block font-weight="bold">Col-Header3</fo:block>
                         </fo:table-cell>
                      </fo:table-row>
                   </fo:table-header>
                   <fo:table-body>
                      <fo:table-row>
                         <fo:table-cell border-style="solid">
                            <fo:block>Row1-Col1</fo:block>
                         </fo:table-cell>
                         <fo:table-cell border-style="solid">
                            <fo:block>Row1-Col2</fo:block>
                         </fo:table-cell>
                         <fo:table-cell border-style="solid">
                            <fo:block>Row1-Col3</fo:block>
                         </fo:table-cell>
                      </fo:table-row>
                      <fo:table-row>
                         <fo:table-cell border-style="solid">
                            <fo:block>Row2-Col1</fo:block>
                         </fo:table-cell>
                         <fo:table-cell border-style="solid">
                            <fo:block>Row2-Col2</fo:block>
                         </fo:table-cell>
                         <fo:table-cell border-style="solid">
                            <fo:block>Row2-Col3</fo:block>
                         </fo:table-cell>
                      </fo:table-row>
                   </fo:table-body>
                </fo:table>
             </fo:block>
          </fo:flow>
       </fo:page-sequence>
    </fo:root>
    {code}
    - and the PDF document :
    http://mbperso.pagesperso-orange.fr/oracle/testfo.pdf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Can anyone explain how to make a clickable table of content for my cookbook

    I want a table of contents at the front of the book, then folks can click the recipe that they want to make and will automatically be paged forward to that exact recipe.

    Sheri,
    This isn't possible at the moment. Pages for iPad can only handle external links.

  • Table of Contents for a hymnal

    I am using Indesign CC (Creative Cloud).  We are putting together a hymnal supplement for a church hymnal. Instead of page numbers, there is a reference number for each hymn. This eases confusion with the congregant not having to decide if the number that is announced is a  hymn number or a page number.
    I set up the hymn titles with 2 paragraphs: one is the hymn reference number (e.g., 2001, 2002, 2003, …); the 2nd paragraph is the hymn title. The hymn reference number paragraph style has the alignment of "Away from spine" so that the hymn references are left-most on left-hand (even) pages and right-most on right-hand pages. Note: There can be more than one hymn or sung acclamation on a given page.
    Now I want to create a Table of Contents that has both the reference number and the hymn title. I find that I cannot do this because I am using 2 paragraph styles. However, if I combine both the hymn reference number and the hymn title into one paragraph, then I cannot use the alignment of "Away from spine".
    What I want the pages to look like are are something like:
    Page 2 (even page):
         2001     Hymn title 1
         2002     Hymn title 2
    Page 3 (odd page):
         Hymn title 3     2003
         Hymn title 4     2004
         Hymn title 5     2005
    Then, this is what I would like the Table of Contents to look like:
         2001     Hymn title 1
         2002     Hymn title 2
         2003     Hymn title 3
         2004     Hymn title 4
         2005     Hymn title 5
    I already looked at the forum entry for:
         http://forums.adobe.com/message/5947413#5947413
    In a book how can I combine two lines of a chapter title into one TOC entry?
    Any ideas on how I could procede?

    Thank you for your quick response. I have been trying several methods over the last few days.
    Method 1: I created anchored text objects (with an attribute on non-printing), which I use to place notes in the outside margins of the text frames. I then type the hymn number and the hymn title into the note, with a tab character betweeen the two of them. Each object is anchored at the end of the text, just before the paragraph mark. I have the following paragraph styles in my Table of Contents:
         Mass settings          (major header)               Heading level 1
         Hymn information     (intermediate header)     Heading level 2
    When I generate the table of contents, the problem is that the ordering is wrong. This is because anchored objects have a ordering  that is established when one creates the object. However, I could not find how I could re-order the order of the objects. From some other forum items I read, I discovered that this ordering is not the same at that of the objects in the the layers palette.
    How can one change the ordering of the anchored objects, so that they occur in the correct order in the Table of Contents.
    Method 2: How does one use an "automatic text variable" to select a portion of the text from a preceding paragraph? I would like to try this method when I get a chance.

  • Editable Table of Contents for PDF in Preview

    I am creating my own PDF document and I want it to have the convienent Table of Contents feature in Preview. But how can I edit my PDF document so it will have such a feature?

    I want to create said table. I am creating the PDF document, I want to be able to create the Table of Contents myself. Any idea how?

  • How to set url in .jhm file to open specific table of content for javaHelp

    Hi,
    I need help on to set the url for mapping JavaHelp
    Inside my JavaHelp content, i used to have a main topic and sub topic, for example:
    1.0 Mathematics
    1.2.1 Algebra
    in map.jhm file. how can i try to link direct to 1.2.1 Algebra?
    example link in my map.jhm
    <mapID target="MATHS" url="MATH/MATHEMATICS.html#1.2.1. ALGEBRA" />
    but cannot directly point to the MATHEMATICS.html#1.2.1. ALGEBRA. it go straight to MATHEMATICS.html
    really appreciate any help on this
    Thanks
    Regards
    Aznimah

    No, you can't use this for pagination on a desktop device.
    Check out http://andrejusb.blogspot.de/2011/05/oracle-adf-11g-custom-table-pagination.html
    Timo

  • Generating a PDF Table of Contents Using DDX - DDX puts the string "cover" in all caps

    When using DDX to generate a table of contents for a PDF, I discovered that DDX puts the string "cover" in all caps. For example, the item:
    <PDF source="something" bookmarkTitle="Hard Drive Recovery"/>
    will result in the table of contents entry "Hard Drive ReCOVERy".
    Does anyone know of a way to prevent or work around this?
    Thanks,
    -- Matt

    I am curious about this, mainly because, for me, the 'bookmarkTitle' attribute causes an error when the DDX is assembled.
    I have CF9.0.1 running on Windows 7 but this also happened on CF9.0
    and you ?

  • How do I create a Table of Contents in InDesign CS6 for print that easily converts to epub?

    How do I create a Table of Contents in InDesign CS6 for a print book that easily converts to epub? 
    Can anyone point me to a link for a step-by-step (not a video) on setting up all the elements of a print book properly (pages, table of contents and index) so they will convert and reflow perfectly from print to epub in InDesign CS6. This is not about building an ebook from ground up, but taking 50 backlisted print books (converted from old versions of Quark to InDesign) that now need to be converted to epub formats.
    OR could someone point me to the link in the Adobe InDesign CS6 support that explains how to create a Table of Contents for a print book (5.5" x 8.5", 288 pages), one that will convert when the file is converted to ePub (for MAC OSX)?
    Just downloaded the 706 page inDesign CS6 reference manual from Adobe <http://helpx.adobe.com/pdf/indesign_reference.pdf>  but there's not even a search feature on the pdf file.
    Up until this week, we have only done print books, creating the TOC the old fashioned way, as a fixed page, comprised of two columns: page numbers and chapters/subject. The files I have created are taken by our printer and printed beautifully.
    However, when I convert the same book to epub in CS6, the character and paragraph styles converted beautifully - but everything else is all over the place! The table of contents is on different pages, the columns split apart. That goes for the page contents as well - everything is all over the place. when it's converted to a pdf -- total perfection. Never any problems converting with perfection to pdf format and reading those on the various readers.
    (Thank you so much in advance for any help).

    <http://helpx.adobe.com/pdf/indesign_reference.pdf> Adobe Digital Reader does have a search feature for reading pdfs. Found the TOC instructions on page 176 of 706 pages. 

  • Is there any way to generate table of contents in adobe for a report output

    Hi All,
    I need to display the output of a report in an PDF and layout needs to be developed in Adobe Print Forms. I want to know if there is a way to generate a table of contents for the output in adobe form on a particular page.
    Thanks...

    Hi,
    Thanks for the reply. I am new to the adobe and to the javascript.
    I would appreciate if you can guide me as to where can I get the online help on javascript related to Adobe Print and Interactive Forms.

  • Table of Contents Broken Links

    I am using Framemaker 7.1 and have created a Table of Contents for a book. When I open the PDF created for this book the links in the TOC go to the corresponding pages for the first few chapters but nothing after those works. In Framemaker when I use ALT+CTRL to try to test the link I get an error saying that it cannot find the files for the links that do not work. Does anyone know what causes this error? The files are in the folder and at the location it is looking for them. This has me stumped.

    blitza4life,
    You didn't mention whether any conditional text may exist in the document. However, I have seen this happen when conditional text was used in a book and pages got edited with the conditional text hidden. If this is the culprit, the cause would be a bit of text or end-of-paragraph marker adjacent to a heading that has a condition tag applied that is set to hide at when the book is generated. If you want to rule this out, here's how:
    Open all files in the book.
    Set all conditions to show with indicators.
    Update the book.
    Save all files.
    Save all files as MIF. (yes, in addition to...)
    Close the book and all its files.
    Open the book.mif file, save as .book;  and then open all the MIF files associated, then save those back to FM.
    Check the TOC links to see if they work. If they do, when you land on the linked text you'll be able to see and either remove the condition tags or delete the tagged text. Then, update the book again and the TOC should be accurate.
    Another potential root cause of this problem could be text insets, but that's more complicated and less frequently the issue. Please update this string when you find a solution.
    Thanks

  • Hide multiple rows in a dynamic table based on the row value.

    Hi,
    I need to hide multiple rows in a dynamic table based on the specific value of that row.
    I cant find the right expression to do that.
    please help

    Go to the Row Properties, and in the Visibility tab, you have "Show or hide based on an expression". You can use this to write an expression that resolves to true if the row should be hidden, false otherwise.
    Additionally, in the Matrix properties you should take a look at the filters section, perhaps you can achieve what you wish to achieve through there by removing the unnecessary rows instead of just hiding them.
    It's only so much I can help you with the limited information. If you require further help, please provide us with more information such as what data are you displaying, what's the criteria to hiding rows, etc...
    Regards
    Andrew Borg Cardona

  • How do I add a table of contents to a PDF document created through iBooks?

    I've been working on a iBook for a while for work and it functions great on an iPad. However, when I publish it as a PDF there is no table of contents. Is there a way to have the table of contents displayed automatically for the book? I dont mind if it's just a table of contents list like in a Word document, but the PDF file is very difficult if it's over 800 pages with no table of contents.

    Update on what I did:
    So instead of having an automatically generated template, I created a table of contents for each section on the chapter title slide. This table has 3 columns, Section, Topic and Page and then I use that as a reference guide for users who only use the PDF version of the document. There is no way to have interactive reference links in table elements in iBook but it suits the purpose well.

  • How to Create a Table of Contents From an Imported PDF File?

    I have imported a 150 page PDF file into inDesign 5. I want to create a Table of Contents for my document, but there are no paragraph or heading styles in the document. If I built the document in inDesign, I would have labeled each chapter "Heading 1" and then instructed inDesign to collect up all the Heading 1s and make a TOC automatically.
    But I didn't create this PDF, it has no formatting at all. Its just been placed in the inDesign document space.
    Anyone have any tips of how I can pick out all the Chapter headings.....they are in a distinctive format (14 point bold) from the rest of the document text.
    Anyone?

    InDesign cannot read *anything* out of a PDF file.
    Open in Acrobat, copy heading, paste in InDesign. Repeat until done.

Maybe you are looking for