Convert XML to PDF using XSLT with out xls-fo

2019-08-12 17:21发布

I need to convert the XML to PDF using XSLT only without third party dll. Please find the following XML.

<xml>
  <Roll No> 60246</Roll No>
  <Document No> 60246</Document No>
  <Name>Satheesh</Name>
  <Class>III</Class>
  <Section>B</Section>
  <Contact No>9876543210</Contact No>
 <Exams>
    <Exam> Quaterly </Exam>
    <Tamil> 75 </Tamil>
    <English> 80 </English>
    <Maths> 80 </Maths>
    <Total> 480 </Total>
 </Exams>
 <Exams>
   <Exam> Half yearly </Exam>
   <Tamil> 100</Tamil>
   <English> 100 </English>
   <Maths> 100 </Maths>
  <Total>480 </Total>
 </Exams>
</xml>

I need the below out format using XSLT only.

标签: pdf xslt
0条回答
登录 后发表回答