I want to change the order the caption according to their citation present in the text.
For example:
After changing the XML should look like this:
Please guide me how to do this
Thanks
Sam
For example:
Code:
<book> <chapter> <title/> <p>1 Some text goes here <xref rid="F1">Figure 1</xref></p> <p>2 Some text goes here <xref rid="F2">Figure 2</xref></p> <p>3 Some text goes here <xref rid="F4">Figure 4</xref></p> <p>3 Some text goes here <xref rid="F3">Figure 3</xref></p> <p>4 Some text goes here</p> <p>5 Some text goes here <xref rid="F5">Figure 5</xref></p> <p>6 Some text goes here <xref rid="F7">Figure 7</xref></p> <p>7 Some text goes here</p> <p></p> <floats> <figure id="F1">Figure 1. Figure one text goes here</figure> <figure id="F2">Figure 2. Figure one text goes here</figure> <figure id="F3">Figure 3. Figure one text goes here</figure> <figure id="F4">Figure 4. Figure one text goes here</figure> <figure id="F5">Figure 5. Figure one text goes here</figure> <figure id="F6">Figure 6. Figure one text goes here</figure> <figure id="F7">Figure 7. Figure one text goes here</figure> </floats> </chapter> </book>
Code:
<book> <chapter> <title/> <p>1 Some text goes here <xref rid="F1">Figure 1</xref> <figure id="F1">Figure 1. Figure one text goes here</figure> </p> <p>2 Some text goes here <xref rid="F2">Figure 2</xref> <figure id="F2">Figure 2. Figure one text goes here</figure> </p> <p>3 Some text goes here <xref rid="F4">Figure 4</xref></p> <p>3 Some text goes here <xref rid="F3">Figure 3</xref> <figure id="F3">Figure 3. Figure one text goes here</figure> <figure id="F4">Figure 4. Figure one text goes here</figure> </p> <p>4 Some text goes here</p> <p>5 Some text goes here <xref rid="F5">Figure 5</xref> <figure id="F5">Figure 5. Figure one text goes here</figure> </p> <p>6 Some text goes here <xref rid="F7">Figure 7</xref> <figure id="F6">Figure 6. Figure one text goes here</figure> <figure id="F7">Figure 7. Figure one text goes here</figure> </p> <p>7 Some text goes here</p> <p></p> <floats> </floats> </chapter> </book>
Thanks
Sam
Comment