2
votes
What is a good PDF report generator tool for python?
Take a look at Sphinx. A lot of Python projects are starting to use Sphinx, including Python itself. You type your documentation in reStructure …
23
votes
How does one insert a backslash or a tilde into LaTeX?
The Comprehensive LaTeX Symbol List is your friend. \textbackslash and \tex …
3
votes
Latex styles - what do you use and where to find them
Memoir is a more flexible document class than the default ones, and its …
2
votes
2
votes
Can TeX code be safely executed from untrusted sources?
If your TeX distribution uses the Kpathsea library (it probably does), see the Security section in its documentati …
1
vote
Why does my LaTeX subfigure not work with an a0poster?
The following TeX file works just fine for me in PDFLaTeX. You need to describe your problem in more detail, perhaps by trying to prune it down to a minimal example.
\documentclass[ …
1
vote
LaTeX with ASP.NET
Matplotlib has a TeX-like math typesetting engine suitable for single formulas. Its prerequisites include …
0
votes
How do I determine file encoding in OSX?
The @ sign means the file has extended attributes. xattr file shows what attributes it has, …
2
votes
How do I get emacs to fill sentences, but not paragraphs?
If you put a comment marker at the end of each sentence, Emacs knows not to move the next line inside the comment:
chat chat chat.%
A new sentence
with goofed up wrapping that needs …
2
votes
How to customize an existing LaTeX environment without interfering with other environments
This is a FAQ. It does not make sense to put a figure (or any other "float" which can move elsewhere in the outpu …
0
votes
create pdf with long lines, fit to pagewidth without wordwrap
This works with pdflatex:
\documentclass{article}
\pdfpagewidth 200cm
\pdfpageheight 200cm
\textwidth 190cm
\def\lorem{Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed …
1
vote
Special characters in LaTeX table caption
Apparently your real problem was that TeX's fancy error correction mechanism prevented you from knowing that there was a syntax error in the document. Back in 1982 or so, running TeX on a …
3
votes
LaTeX, tildes and verbatim mode
If there are some characters that do not occur in your input, you can use fancyvrb and its commandchars option to insert TeX commands within verbatim text:
\documentclass{article}
\ …
2
votes
Latex \hline spacing
If you are concerned about output from some other program than TeX, the right approach would be to define a higher-level command or environment to do what you want, use whatever dirty hacks inside …
1
vote
Three columns frame in a big document and renaming stuff in latex
Table design in LaTeX has not been made very easy. I would use tabbing rather than tabular and draw the lines manually to keep things simple. A downside is that you don't …
