column

Questions about XML that are not covered by the other forums should go here.
julie
Posts: 61
Joined: Fri Jun 06, 2008 7:09 am

column

Post by julie »

Hi

I have to create two columns without column grids. Each column has links that appears in rows. Is there any option in DITA to create columns without grids?

Regards
Julie
Radu
Posts: 9059
Joined: Fri Jul 09, 2004 5:18 pm

Re: column

Post by Radu »

Hi Julie,

I do not entirely understand your question.
Do you want to output a table without the borders? In HTML or PDF?
Can you post as XML the part of your topic in which you are trying to accomplish this?

Regards,
Radu
Radu Coravu
<oXygen/> XML Editor
http://www.oxygenxml.com
julie
Posts: 61
Joined: Fri Jun 06, 2008 7:09 am

Re: column

Post by julie »

Hi
I want to divide the page into three sections. First section should be a single column for the introduction. Second section of the page should appear in two columns for the items to be listed in two columns. Third section of the page should again display as a single column for the conclusion. The output is XHTML. Let me know whether DITA allows me to do the column.

Regards
Julie
Radu
Posts: 9059
Joined: Fri Jul 09, 2004 5:18 pm

Re: column

Post by Radu »

Hi Julie,

Can you send me a picture with the layout you have in mind?
http://www.oxygenxml.com/techSupport.html
Is this close to what you intend to do?

Code: Select all


<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE topic PUBLIC "-//OASIS//DTD DITA Topic//EN" "http://docs.oasis-open.org/dita/v1.1/OS/dtd/topic.dtd">
<topic id="topic-1">
<title>Topic title</title>
<body>
<simpletable>
<strow>
<stentry>
<p>Introduction body</p>
</stentry>
<stentry>
<p>Items first col body</p>
</stentry>
<stentry>
<p>Items second col body</p>
</stentry>
<stentry>
<p>Conclusions body</p>
</stentry>
</strow>
</simpletable>
</body>
</topic>
Regards,
Radu
Radu Coravu
<oXygen/> XML Editor
http://www.oxygenxml.com
Post Reply