http://www.perlmonks.org?node_id=933312


in reply to Re: errors in printing latex template output
in thread errors in printing latex template output

hi, I tried as you Said like this

open($file, 'formal.xml'); { local $/; my $xml= <$file>; }
it given two errors like $xml and $file requires explicit package and I cleared those errors like this
my $file; my $xml; open($file, 'formal.xml'); { local $/; $xml= <$file>; }
but it doesn't produce any output its just blank pdf with author name. I tried using data dumper to print $xml_hash. but it doesn't contain any student word it number and regarding information in hash.then I think how it will recognize student. and also I tried to print address elements as you said
[%st.address.house_number%]
its also not working. its also printing as before I posted.