Search found 6 matches

by jkh107
Wed Sep 12, 2007 12:19 pm
Forum: General
Topic: Plain text output?
Replies: 3
Views: 8918

Re: Plain text output?

A similar but related question just occurred to me. Is it possible to use Bibtex without using Latex, for example, to generate a bibliography for a text file or an RTF file?
by jkh107
Wed Sep 12, 2007 10:29 am
Forum: General
Topic: Plain text output?
Replies: 3
Views: 8918

Plain text output?

This is going to sound like a strange request, but does anybody know if there is a way of generating plain text output from Latex? Obviously, the input is in plain text but this includes a lot of markup. I would still like my section headings and lists numbered, and my bibliography generated at the ...
by jkh107
Fri Jul 06, 2007 4:06 pm
Forum: General
Topic: Using LaTeX equations in other programs
Replies: 2
Views: 3033

Using LaTeX equations in other programs

Is there a way of exporting LaTeX equations as pictures for use in other programs (like those not-so-nice WYSIWYG) word processors?
by jkh107
Mon Jun 25, 2007 1:00 pm
Forum: General
Topic: No indent for following paragraph
Replies: 4
Views: 13628

Re: No indent for following paragraph

That's a really simple solution - I really should of thought of that myself! Thanks, that really helped.
by jkh107
Sun Jun 24, 2007 8:00 pm
Forum: General
Topic: No indent for following paragraph
Replies: 4
Views: 13628

No indent for following paragraph

The example you gave does not indent the following paragraph, but the following slight modification does:
\documentclass{article}
\def\x{text text text text text text text text }
\def\text{\x\x\x\x\x\x\x\x\x\x\x}
\newcommand{\starspace}{%
\begin{center}%
* \hspace{1em} * \hspace{1em} *% math mode ...
by jkh107
Thu Jun 21, 2007 11:08 pm
Forum: General
Topic: No indent for following paragraph
Replies: 4
Views: 13628

No indent for following paragraph

I'm trying to make a command that adds a small space with three asterisks in to divide parts of a long document up without using section headings. So far, I have come up with:
\newcommand{\starspace}{%
\begin{center}%
* $qquad$ * $qquad *%
\end{center}%
}
which produces the correct spacing and ...