single and double column on same single page

2003-02-03 Thread H. krishna
Hi everybody,

i need the single and double column on same single
page. It is possible in fop-0.20.5.

immediate replay is highly appreciated.

regards,
bala

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: single and double column on same single page

2003-02-04 Thread H. krishna
Dear Oleg,

Thanks for your mail. now my problem is solved. once
again thanks for you.

Regards,

H. Balakrishnan


--- Oleg Tkachenko [EMAIL PROTECTED] wrote:
 H. krishna wrote:
 
  i need the single and double column on same single
  page. It is possible in fop-0.20.5.
 You can use span=all to force a block to span over
 all columns, see 
 docs/examples/region_body/simplecol.fo example.
 
 -- 
 Oleg Tkachenko
 Multiconn Technologies, Israel
 
 

-
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]
 


__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Page numbering

2003-02-09 Thread H. krishna
Dear Patrick Rusk,

Thanks all of your comments. 

now, the pagenumber is not displayed in the first
page. 

But, i need the page number start with 2 page is left
alignment and 3 page is right alignment.


Immediate replay is highly appreciated.

Regards,

Balakrishnan



--- Patrick Dean Rusk [EMAIL PROTECTED] wrote:
 The key is in having a different header (or footer)
 on the first page versus
 the others.  The steps to do this are:
 
 1) Have a separate page master for the first page
 versus the rest of the
 pages.
 
 2) Add different region-names to the header (or
 footer) regions on those
 pages.
 
 3) Use the repeatable-page-master-alternatives
 feature to invoke the proper
 page masters for the first versus the other pages.
 
 4) In your actual page sequence, define the contents
 of the header (or
 footer) regions to include the page number on in the
 other pages header
 region.
 
 Here's a fragmentary example:
 
 fo:layout-master-set
 
   fo:simple-page-master master-name=firstPage
   fo:region-before region-name=firstPage-before/
   fo:region-body/
   /fo:simple-page-master
 
   fo:simple-page-master master-name=otherPage
   fo:region-before region-name=otherPage-before/
   fo:region-body/
   /fo:simple-page-master
 
   fo:page-sequence-master master-name=contents
   fo:repeatable-page-master-alternatives
   fo:conditional-page-master-reference
   master-reference=firstPage
   page-position=first/
   fo:conditional-page-master-reference
   master-reference=otherPage
   page-position=any/
   /fo:repeatable-page-master-alternatives
   /fo:page-sequence-master
 
 /fo:layout-master-set
 
 fo:page-sequence master-reference=contents
 
   fo:static-content flow-name=firstPage-before
   fo:block
   Look!  No page number here.
   /fo:block
   /fo:static-content
 
   fo:static-content flow-name=otherPage-before
   fo:block
   The page number is fo:page-number/
   /fo:block
   /fo:static-content
 
   fo:flow flow-name=xsl-region-body
   fo:block
   Body text.
   /fo:block
   /fo:flow
 
 /fo:page-sequence
 
   Hope this helps.
 
 Patrick Rusk
 
 
 -Original Message-
 From: H. krishna
 [mailto:[EMAIL PROTECTED]
 Sent: Saturday, February 08, 2003 5:43 AM
 To: [EMAIL PROTECTED]
 Subject: Page numbering
 
 
 Hai,
 
 
 i don't need the page number in the first page only.
 but, want to second page start like 2.
 
 Immediate response is highly appreciated.
 
 

-
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]
 


__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



SVG

2003-02-09 Thread H. krishna
Dear all,

sorry, my poor english.

i am convert mathml to svg format using custard.
then linked the svg files in the fo file. the
following error is display on the compilation stage
(FOP-0.20.5):

[ERROR] : Could not load external SVG: null
[ERROR] : Error while creating area : No ImageReader
for this type of image (file: m002.svg)

But in the FOP-0.20.4 the same fo file is work fine.

Regards,

H. Balakrishnan

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Page numbering

2003-02-10 Thread H. krishna
thanks all.


Regards,

H. Balakrishnan


--- Patrick Dean Rusk [EMAIL PROTECTED] wrote:
   now, the pagenumber is not displayed in the
 first
   page.
  
   But, i need the page number start with 2 page is
 left
   alignment and 3 page is right alignment.
 
  The same way, create different page masters for
 even and odd pages.
 
   That's right.  Extend my example to have page
 masters for firstPage,
 otherPageEven, otherPageOdd.  Changed the named
 header regions to
 firstPage-before, otherPageEven-before, and
 otherPageOdd-before.  Then use
 the odd-or-even in the
 conditional-page-master-reference element to
 distinguish them.
 
 Here's an updated fragmentary example:
 
 fo:layout-master-set
 
   fo:simple-page-master master-name=firstPage
   fo:region-before region-name=firstPage-before/
   fo:region-body/
   /fo:simple-page-master
 
   fo:simple-page-master master-name=otherPageOdd
   fo:region-before
 region-name=otherPageOdd-before/
   fo:region-body/
   /fo:simple-page-master
 
   fo:simple-page-master master-name=otherPageEven
   fo:region-before
 region-name=otherPageEven-before/
   fo:region-body/
   /fo:simple-page-master
 
   fo:page-sequence-master master-name=contents
   fo:repeatable-page-master-alternatives
   fo:conditional-page-master-reference
   master-reference=firstPage
   page-position=first/
   fo:conditional-page-master-reference
   master-reference=otherPageOdd
   odd-or-even=odd
   page-position=any/
   fo:conditional-page-master-reference
   master-reference=otherPageEven
   odd-or-even=even
   page-position=any/
   /fo:repeatable-page-master-alternatives
   /fo:page-sequence-master
 
 /fo:layout-master-set
 
 fo:page-sequence master-reference=contents
 
   fo:static-content flow-name=firstPage-before
   fo:block
   Look!  No page number here.
   /fo:block
   /fo:static-content
 
   fo:static-content flow-name=otherPageOdd-before
   fo:block text-align=right
   p. fo:page-number/
   /fo:block
   /fo:static-content
 
   fo:static-content
 flow-name=otherPageEven-before
   fo:block text-align=left
   p. fo:page-number/
   /fo:block
   /fo:static-content
 
   fo:flow flow-name=xsl-region-body
   fo:block
   Body text.
   /fo:block
   /fo:flow
 
 /fo:page-sequence
 
 
 Pat
 
 

-
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]
 


__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: SVG

2003-02-11 Thread H. krishna
Dear Jeremias Maerki,

my fop bat file is :

java -Xmx250m -cp %LOCALCLASSPATH%
org.apache.fop.apps.Fop %1 %2 %3 %4 %5 %6 %7 %8 -d -c
conf\userconfig.xml 

my svg is:

fo:external-graphic alignment-baseline=baseline 
src=m001.svg/

Immediate replay is highly appreciated.

Regards,

H. Balakrishnan



--- Jeremias Maerki [EMAIL PROTECTED] wrote:
 Could you provide a little snippet of your FO file
 where you reference
 the SVG file? And can you please run the
 transformation using the -d
 option when callong fop.bat/fop.sh? That way you
 will get a stacktrace
 which lets us help tracking down what's going wrong.
 
 On 09.02.2003 11:08:24 H. krishna wrote:
  i am convert mathml to svg format using custard.
  then linked the svg files in the fo file. the
  following error is display on the compilation
 stage
  (FOP-0.20.5):
  
  [ERROR] : Could not load external SVG: null
  [ERROR] : Error while creating area : No
 ImageReader
  for this type of image (file: m002.svg)
  
  But in the FOP-0.20.4 the same fo file is work
 fine.
 
 
 
 Jeremias Maerki
 
 

-
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]
 


__
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine's Day
http://shopping.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



symbol font SVG not display

2003-02-22 Thread H. krishna
hai everybody,

Sorry, my poor english.

i am using symbol font. But, in the PDF file the
charcter is displayed # symbol.
And one another thing is, i am create new font as per
fop guidelines. but, same result is shown on the fop
compilation error.

The Error is:

unknown font symbol,normal,normal so defaulted font to
any


SVG:

The following errors is displayed on fop running.

Could not load external SVG: null
Error while creating area: No ImageReader for this
type of image (file://d:/fop/fop-0.20.5rc2/e001.svg)

Anybody help is greatly appreciated.

Regards,
H. Balakrishnan

__
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: symbol font SVG not display

2003-02-24 Thread H. krishna
Dear J.Pietschmann,

Thank for your replay mail.
 
 Trz Symbol, with an upper case S.

Now, My symbol font problem is solved.

 1. Check whether the SVG can be displayed with
 Batik.

Yes, My SVG file is displayed on batik.

 2. Run the FOP CLI with the -d switch, if you get a
 stack
 trace, post it.

I don't understood, what the meaning of CLI. Please
replay me.

Regards,
H. Balakrishnan


__
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: symbol font SVG not display

2003-02-24 Thread H. krishna
Dear Myriam Delperier,

 i think you should put -d  (like debug) option in
 fop.bat
 it would be something like this
 java -cp %LOCALCLASSPATH% org.apache.fop.apps.Fop -d
 %1 %2 %3 %4 %5 %6 %7 %8
 java -Xmx250m -cp
%LOCALCLASSPATH%org.apache.fop.apps.Fop  -d -c
conf\userconfig.xml %1 %2 %3 %4 %5 %6 %7 %8

Yes, see My fop.bat file:
java -Xmx250m -cp %LOCALCLASSPATH%
org.apache.fop.apps.Fop  -d -c conf\userconfig.xml %1
%2 %3 %4 %5 %6 %7 %8

But, i am not get a stack trace. what is meant by
stack trace?

  Regards,
  H. Balakrishnan


__
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



FIGURE TABLE PLACEMENT

2003-02-28 Thread H. krishna
Hai Everybody,

I need the Figure  table placement in top of page
only. how do indicate in the FO file.

Immediate replay is highly appreciated.

Regards,

H. Balakrishnan

__
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: FIGURE TOP PAGE PLACEMENT

2003-03-04 Thread H. krishna
Dear Jeremias Maerki,

Thanks for your mail. i am used
linefeed-treatment=preserve this is correct (or)
not.


 I'm not sure I get you right, but you can specify 
 
 fo:block break-before=page
   [..my stuff on top of the page..]
 
 This tells FOP to start a new page and new content
 is started from the
 top.

But the content and figure is goes to next page. I
need the placement of figure only. Not the content.
This is possible.

Sorry, my language.

Regards,
H. Balakrishnan


__
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: FIGURE TOP PAGE PLACEMENT

2003-03-04 Thread H. krishna
Dear Jeremias Maerki,

I am attached my fo file. I like my pdf file is:

Page 1:
Paragraph 1
Paragraph 2
Paragraph 3
Paragraph 4 Not finished

Page 2:
Figure 1
Paragraph 4 continued text
Paragraph 5
Paragraph 6
Paragraph 7
Paragraph 8

Page 3:
Figure 2
Paragraph 9
Paragraph 10
Paragraph 11
Paragraph 12


Regards,

H. Balakrishnan





--- Jeremias Maerki [EMAIL PROTECTED] wrote:
 
 On 04.03.2003 15:30:33 H. krishna wrote:
  Thanks for your mail. i am used
  linefeed-treatment=preserve this is correct (or)
  not.
 
 Depends on your input XML. If there are linefeeds in
 there, these could
 be responsible for the linefeed. Try experimenting a
 bit. Change
 linefeed-treatment etc.
 
   I'm not sure I get you right, but you can
 specify 
   
   fo:block break-before=page
 [..my stuff on top of the page..]
   
   This tells FOP to start a new page and new
 content
   is started from the
   top.
  
  But the content and figure is goes to next page. I
  need the placement of figure only. Not the
 content.
  This is possible.
 
 I'm still not sure I know what you want to do. Maybe
 fo:block-container
 with absolute positioning could help.
 
 
 Jeremias Maerki
 

-
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]
 


__
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/?xml version=1.0 encoding=iso-8859-1?
!DOCTYPE root [
!ENTITY nl '#x2028;'
]

fo:root xmlns:fo=http://www.w3.org/1999/XSL/Format; xmlns:xlink=http://www.w3.org/1999/xlink; xmlns:svg=http://www.w3.org/2000/svg;
fo:layout-master-set

	fo:simple-page-master master-name=firstPage
		page-height=9.44in
		page-width=6.31in
		margin-top=0.40in
		margin-bottom=.5in
		margin-left=0.8in
		margin-right=0.8in
		fo:region-before extent=10mm region-name=firstPage-before/
		fo:region-body margin-bottom=20mm margin-top=10mm/
		fo:region-after extent=10mm region-name=xsl-region-after/
	/fo:simple-page-master

	fo:simple-page-master master-name=otherPageOdd
		page-height=9.44in
		page-width=6.31in
		margin-top=0.67in
		margin-bottom=1in
		margin-left=0.8in
		margin-right=0.8in
		fo:region-before extent=10mm region-name=otherPageOdd-before/
		fo:region-body margin-bottom=20mm margin-top=10mm/
		fo:region-after extent=10mm region-name=xsl-region-after/
	/fo:simple-page-master

	fo:simple-page-master master-name=otherPageEven
		page-height=9.44in
		page-width=6.31in
		margin-top=0.67in
		margin-bottom=1in
		margin-left=0.8in
		margin-right=0.8in
		fo:region-before extent=10mm region-name=otherPageEven-before/
		fo:region-body margin-bottom=20mm margin-top=10mm/
		fo:region-after extent=10mm region-name=xsl-region-after/
	/fo:simple-page-master

	fo:page-sequence-master master-name=contents
		fo:repeatable-page-master-alternatives
			fo:conditional-page-master-reference
master-reference=firstPage
page-position=first/
			fo:conditional-page-master-reference
master-reference=otherPageOdd
odd-or-even=odd
page-position=any/
			fo:conditional-page-master-reference
master-reference=otherPageEven
odd-or-even=even
page-position=any/
		/fo:repeatable-page-master-alternatives
	/fo:page-sequence-master
/fo:layout-master-set

fo:page-sequence master-reference=contents
		fo:static-content flow-name=xsl-region-after
			fo:block text-align=center
		font-size=8pt
		font-family=serif
		line-height=10pt 
			/fo:block
		/fo:static-content

	fo:static-content flow-name=otherPageOdd-before
		fo:block text-align=right
			fo:page-number font-size=8pt font-family=serif line-height=10pt/
		/fo:block
	/fo:static-content

	fo:static-content flow-name=otherPageEven-before
			fo:block text-align=left
			fo:page-number font-size=8pt font-family=serif line-height=10pt/
		/fo:block
	/fo:static-content
	fo:flow flow-name=xsl-region-body
fo:block linefeed-treatment=preserve language=en country=GB hyphenate=true hyphenation-push-character-count=2 hyphenation-remain-character-count=2 white-space-treatment=preserve font-size=10pt font-family=serif line-height=12pt text-align=justifyIn Europe there are two main areas of particular biological value for sweet chestnut (fo:inline font-style=italicCastanea sativa/fo:inline Mill.) genetic resources, Turkey and Iberian Peninsula, each of them showing peculiar characteristics (Villani et al. 1999). These two areas, together with Italy, are the leading European chestnut producers and collectively account for 55.3% of the 24 tons world's annual production. In Portugal, chestnut has a relevant place at the socioeconomic level, reaching an annual fruit production of 2 tons (INE 1997)./fo:block
fo:block language=en country=GB hyphenate=true hyphenation-push-character-count=2 hyphenation-remain-character-count=2 white-space-treatment=preserve text-indent=12pt font-size=10pt font-family=serif line-height=12pt text-align