This is the mail archive of the docbook@lists.oasis-open.org mailing list for the DocBook project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [docbook] How to do "nowrap" in docbook


Le mar 23/12/2003 à 06:24, jim kraai a écrit :
> from:
>   http://www.sagehill.net/docbookxsl/UsingCSS.html#CustomClass
> 
> in your docbook file:
>   <entry role="nowrap">PCDATA</entry>
> 
> in an <entry> element (also emphasis, para, and phrase), the docbook xsl is 
> supposed to copy whatever's in the role atribute to the corresponding HTML 
> element's class attribute.  So the above should produce:
>     <td class="nowrap">PCDATA</td>
> 
> Next, the browser needs to be told what to do with that class.  In 
> your CSS file, add the following:
>   .nowrap {
>     white-space: nowrap;
>   }
> 
> 
> 
> --- Harobed <mailing@harobed.org> wrote:
> > Hi,
> > 
> > I would like to do as <td nowrap> in html.
> > 
> > How to do this in docbook ?
> > 
> > Thanks

I do this : 

<table><title></title>
<tgroup cols="2" align="left" colsep="1" rowsep="1">
<tbody>
<row>
	<entry role="nowrap">si A = LF</entry>
	<entry>B est évalué lors du premier traitement</entry>
</row>
<row>
	<entry role="nowrap">si A = LM</entry>
	<entry>B est évalué pour chaque traitement, y compris le premier mais
il seraalors évalué
	 après celui de LF, et avant celui de LL</entry>
</row>
<row>
	<entry role="nowrap">si A = LR</entry>
	<entry>B est évalué lors du premier traitement, comme LF, mais LM n'est
pas évalué pour ce même traitement,
	et on passe directement au suivant</entry>
</row>
</tbody>
</tgroup>
</table>

And role="nowrap" do nothing !
why this ?

Info : I'm on debian. A use docbook2html to generate my html file.


-- 
Stéphane KLEIN
Home page : http://www.harobed.org
Jabber : harobed@myjabber.net


To unsubscribe from this list, send a post to docbook-unsubscribe@lists.oasis-open.org, or visit http://www.oasis-open.org/mlmanage/.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]