Re: [Haskell-cafe] lhs2tex and line numbers

2011-02-14 Thread Andres Loeh
Hi.

 How could I convince lhs2tex to add in poly mode line numbers before
 each code line in code block?

A long time ago, I've written some experimental code that achieves
line numbering in lhs2tex. I've committed the files to the github
repository, so you can have a look at the .fmt file and the demo
document in

https://github.com/kosmikus/lhs2tex/tree/master/ExtLibrary/lineno

HTH,
  Andres

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] lhs2tex and line numbers

2011-02-14 Thread Mitar
Hi!

On Mon, Feb 14, 2011 at 12:23 PM, Andres Loeh
andres.l...@googlemail.com wrote:
 A long time ago, I've written some experimental code that achieves
 line numbering in lhs2tex. I've committed the files to the github
 repository, so you can have a look at the .fmt file and the demo
 document in

Great! Super! This is exactly what I needed. Thanks really a lot! I
especially like having the numbers on the right.


Mitar

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


[Haskell-cafe] lhs2tex and line numbers

2011-02-12 Thread Mitar
Hi!

How could I convince lhs2tex to add in poly mode line numbers before
each code line in code block?


Mitar

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


[Haskell-cafe] lhs2TeX and line numbers in error messages produced by LaTeX

2005-05-02 Thread Stefan Wehr (formerly Heimann)
Hi!

I use lhs2TeX for typesetting literate haskell code. The problem is that LaTeX 
uses the line numbers from the .tex file generated by lhs2TeX and not the 
line number from the original .lhs file when producing error messages.

Does anyone have a solution for this problem?

Cheers,
  Stefan 

-- 
Stefan Wehr (formerly Heimann)
Web:  http://www.stefanwehr.de
PGP:  Key is available from pgp.mit.edu, ID 0B9F5CE4
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] lhs2TeX and line numbers in error messages produced by LaTeX

2005-05-02 Thread Andres Loeh
 I use lhs2TeX for typesetting literate haskell code. The problem is that 
 LaTeX 
 uses the line numbers from the .tex file generated by lhs2TeX and not the 
 line number from the original .lhs file when producing error messages.
 
 Does anyone have a solution for this problem?

Sorry, I don't. I think it's very much work to change lhs2TeX so
that the generated .tex file will have the same line numbers than
the original (%include would have to be mapped to \input statements
and each code block would have to produce exactly as many lines as
the input was etc.), and AFAIK LaTeX does not have any such thing as
LINE pragmas.

I usually look at the generated file to find what LaTeX complains
about and map this to the original location mentally.
I could make lhs2TeX generate line hints as LaTeX comments, to
facilitate this process, but this would still require to read the
generated file, because the hints wouldn't be interpreted by LaTeX
automatically.

Cheers,
  Andres
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe