Search found 5 matches

by DragonMaster
Wed Sep 17, 2008 11:30 am
Forum: General
Topic: Definition style list
Replies: 5
Views: 8501

Re: Definition style list

I will also look into tabularx as an alternative (as suggested by Stefan_K) - I have played with tabular and longtable so far... ;-)
by DragonMaster
Wed Sep 17, 2008 11:29 am
Forum: General
Topic: pdflatex return values
Replies: 0
Views: 1260

pdflatex return values

I am looking to incorporate pdflatex calls into a php script, but could do with identifying whether the call was successful (return value). Looking through the man page, and searching the web I haven't found any details - have I missed something obvious, or do I need to parse the progress data from ...
by DragonMaster
Wed Sep 17, 2008 11:24 am
Forum: General
Topic: Definition style list
Replies: 5
Views: 8501

Re: Definition style list

Thanks Juanjo, this certainly fixed the issue - I will now go through it carefully to ascertain exactly what each bit does... :D
by DragonMaster
Tue Sep 16, 2008 5:00 pm
Forum: General
Topic: Definition style list
Replies: 5
Views: 8501

Definition style list

Believe it or not, I came up with a solution... :oops: Don't use a list... I have generated a simple table as follows:
\begin{tabular}{r p{14cm}}
\textbf{new Document} & The inital call to create the object. This will generate the preamble, and a basic title.\\
\textbf{SetTitle} & Sets the title to ...
by DragonMaster
Tue Sep 16, 2008 4:34 pm
Forum: General
Topic: Definition style list
Replies: 5
Views: 8501

Definition style list

Hi All, I have been "playing" with latex for a while now, and I am now trying to create a list where the definition item is right justified and the list text is left justified. I have sort-of got it working with the following:
\newcommand{\litem}[1]{\item[\raggedleft\textbf{#1}]}
\begin{enumerate ...