Help for this page

Select Code to Download


  1. or download this
    my $line = encode("utf8",$lineo);
    open(TEK,">:utf8","temp.tex");
    print TEK $line;
    
  2. or download this
    my $line = encode("utf8",$lineo);
    open(TEK,">","temp.tex");
    print TEK $line;
    
  3. or download this
    my $line = $lineo;
    open(TEK,">:utf8","temp.tex");
    print TEK $line;