typeset

What packages are available to typeset SQL in LaTeX?

I'm looking for a package to typeset SQL statements in LaTeX. So far I have heard of listings and lgrind, are there any other suggestions? [edit] Added requirement: I'd like the package to be able in intelligently insert page breaks, so that where possible statements do not span multiple pages. Still reading documentation, so it is poss...

To understand Typeset for PythonPath

One recommends me the following code apparently only in .zshrc without explaining its purpose clearly. typeset -U PYTHONPATH I am interested in how you can use the code in .bashrc. My Bash goes upset about the command. How can you use the command in Bash? ...

What is the korn typset option -t (tag) used for?

I was reading about the Korn typeset command and discovered the -t option adds a tag, but I can't figure out what it's used for. Does anyone have an example? -t Tags the name. Tags are user definable and have no special meaning to the shell. ...

Sentence alignment for dual-line bilingual paragraph in LaTeX

I would like to make a translation of entire paragraphs at a time for a large document, with the start of the new sentences aligning. The following is almost what I want done, though it doesn't yet do the alignment for new sentences. \documentclass{article} \usepackage[margin=1in, paperwidth=8.5in, paperheight=11in]{geometry} \usepacka...

Is there an explanation of the difference between export and typeset in combination with nested function calls in a korn shell program?

I have encountered an issue with ksh programs running differently on ksh88 & ksh93 wherein functions which call functions handle differently, variables declared with typeset and export. Here is an example program that highlights the difference: #!/bin/ksh # example.ksh: highlights differences between typeset and export on ksh93 functio...

Unknown error sourcing a script containing 'typeset -r' wrapped in command substitution

I wish to source a script, print the value of a variable this script defines, and then have this value be assigned to a variable on the command line with command substitution wrapping the source/print commands. This works on ksh88 but not on ksh93 and I am wondering why. $ cat typeset_err.ksh #!/bin/ksh unset _typeset_var typeset -i -r...