|
From: Matteo C. <ma...@si...> - 2002-03-14 08:50:00
|
Hi Markus, > I'm new to sql-ledger and to this list. SL is a convincing bookkeeping > tool for my needs and the only missing function is in release 1.83: > printing. > i'm new as well to SQL-Ledger, so i cannot help on sql-ledger internals but i have a little experience with LaTeX ;) > Version 1.83 gives me the choice to print on PS or PDF format. > Unfortunately both options produce a latex error. SL explaines the > error on a *.err document, which is printed besides an *.aux, *.log, > *.tex document. I do not understand latex, but I think the error means > that there are some elements missing in the document definition. Is that > right? having examined your log file, it seems that a first error resides on the fact that you have used a name (H_KomS) with an underscore that TeX considers a special mathematical character (used to write subscripts) and so complains for missing $ (the math switching character). I you want to get an underscore you have to escape that character using \_ I'm not sure, but probably there's a further problem in the subsequent tabular environment that points to wrong number of columns, so maybe wrong number of elements. Can you send me the original LaTeX file you compiled (if it's available)? HTH. Ciao, -m |