table alignment

2010-09-25 Thread Mike Martell
Hi:
I'm trying to format my table to align on decimal places.  I've figured out
how to align the table on the decimal places and use multi-column to keep
the non-numeric cells normal.  However, my last column is wider, or aligned
farther to the right than all the other columns.  Does anyone know how to
fix this?
thanks,
Mike


table alignment

2010-09-25 Thread Mike Martell
Hi:
I'm trying to format my table to align on decimal places.  I've figured out
how to align the table on the decimal places and use multi-column to keep
the non-numeric cells normal.  However, my last column is wider, or aligned
farther to the right than all the other columns.  Does anyone know how to
fix this?
thanks,
Mike


table alignment

2010-09-25 Thread Mike Martell
Hi:
I'm trying to format my table to align on decimal places.  I've figured out
how to align the table on the decimal places and use multi-column to keep
the non-numeric cells normal.  However, my last column is wider, or aligned
farther to the right than all the other columns.  Does anyone know how to
fix this?
thanks,
Mike


Re: spacing between sections changes in my dissertation

2010-06-28 Thread Mike Martell
Thanks, Richard.  This worked and now my spacing is consistent.  Thanks so
much!
Mike

On Fri, Jun 25, 2010 at 9:01 AM, Richard Heck rgh...@comcast.net wrote:

  On 6/24/10 10:37 PM, Mike Martell wrote:

 Do I place this at the top of the document?  The spacing in the document
 doesn't change.  I tried at the top and in one of the sections whose spacing
 was inconsistent.

  It has to go in the LaTeX preamble. You also have to wrap it in
 \makeatletter at the beginning and \makeatother at the end.

 The specific command I suggested won't do what you want. You'll have to
 adjust the spacing and the font commands that format the heading. But you
 should actually be able to get those values from the class file. That is, if
 you have using thesis.cls, then in that file somewhere you will find
 something like:


 \newcommand\sectio...@startsection {section}{1}...@}%
{-3.5ex \...@plus -1ex \...@minus -.2ex}%
{2.3ex \...@plus.2ex}%
{\normalfont\Large\bfseries}}

 (This is taken from article.cls.) The six arguments to \...@startsection
 (i)   set the name of the division (section)
 (ii)  set the level in the hierarchy of divisions (so chapter is 0)
 (iii) set the indent for headings (zero, in this case, using the macro
 \z@)
 (iv)  set the space above the heading
 (v)   set the space below the heading
 (vi)  declare any commands that should be used to set the heading; in
 this case, it is large and bold
 As for (iv) and (v), these are what LaTeX calls rubber lengths and the
 second means: Add 2.3 exes of space, and optionally add up to 0.2 exes, if
 necessary to fix page breaks, etc. The former means: Add 3.5 exes of space,
 optionally adding up to 1 ex and optionally subtracting up to 0.2exes; the
 minus is a hack that means: suppress the indentation of the first paragraph
 following this heading. So that is why the spacing can be inconsistent:
 LaTeX is being told it can alter the spacing before a section heading by
 almost a third.

 What I did was just copy and paste this command, making it a \renewcommnd,
 and then remove the rubber bits. You can do the same.

 Btw, if this doesn't solve the problem, then the issue probably has to do
 with float placement. But we can come back to that.

 Richard




 On Thu, Jun 24, 2010 at 9:57 PM, Richard Heck rgh...@comcast.net wrote:

  On 06/24/2010 09:22 PM, Mike Martell wrote:

 Hi:
 I'm trying to finish formatting my dissertation to submit to the library.
  I'm using a thesis class.  My output has the spacing between text and
 sections, and text and subjections, to vary throughout the dissertation.  I
 need the spacing to be consistent.  After searching the list archive and
 some tutorials, I tried inserting \raggedbottom to the top of my diss, but
 this does not fix the problem.

 Is there a way to fix this?

   This is normal. LaTeX varies the spacing as the needs of page breaking
 require, just as is done in books and articles. If you need it to be
 constant, then do something along the lines of:
\renewcommand\sectio...@startsection{section}{1}{\z@}%
{-3.5ex}{2ex}%
{\normlfont\Large\bfseries}%
 The semantics of the \...@startsection command are explained here:
http://help-csli.stanford.edu/tex/latex-sections.shtml
 and elsewhere.

 rh







Re: spacing between sections changes in my dissertation

2010-06-28 Thread Mike Martell
Now LyX is making my spacing inconsistent in places (making it single
instead of double) to keep my section spacing consistent.  Is there a way I
can fix that too?
thanks,
Mike

On Mon, Jun 28, 2010 at 8:26 PM, Mike Martell martell.m...@american.eduwrote:

 Thanks, Richard.  This worked and now my spacing is consistent.  Thanks so
 much!
 Mike


 On Fri, Jun 25, 2010 at 9:01 AM, Richard Heck rgh...@comcast.net wrote:

  On 6/24/10 10:37 PM, Mike Martell wrote:

 Do I place this at the top of the document?  The spacing in the document
 doesn't change.  I tried at the top and in one of the sections whose spacing
 was inconsistent.

  It has to go in the LaTeX preamble. You also have to wrap it in
 \makeatletter at the beginning and \makeatother at the end.

 The specific command I suggested won't do what you want. You'll have to
 adjust the spacing and the font commands that format the heading. But you
 should actually be able to get those values from the class file. That is, if
 you have using thesis.cls, then in that file somewhere you will find
 something like:


 \newcommand\sectio...@startsection {section}{1}...@}%
{-3.5ex \...@plus -1ex \...@minus -.2ex}%
{2.3ex \...@plus.2ex}%
{\normalfont\Large\bfseries}}

 (This is taken from article.cls.) The six arguments to \...@startsection
 (i)   set the name of the division (section)
 (ii)  set the level in the hierarchy of divisions (so chapter is 0)
 (iii) set the indent for headings (zero, in this case, using the macro
 \z@)
 (iv)  set the space above the heading
 (v)   set the space below the heading
 (vi)  declare any commands that should be used to set the heading; in
 this case, it is large and bold
 As for (iv) and (v), these are what LaTeX calls rubber lengths and the
 second means: Add 2.3 exes of space, and optionally add up to 0.2 exes, if
 necessary to fix page breaks, etc. The former means: Add 3.5 exes of space,
 optionally adding up to 1 ex and optionally subtracting up to 0.2exes; the
 minus is a hack that means: suppress the indentation of the first paragraph
 following this heading. So that is why the spacing can be inconsistent:
 LaTeX is being told it can alter the spacing before a section heading by
 almost a third.

 What I did was just copy and paste this command, making it a \renewcommnd,
 and then remove the rubber bits. You can do the same.

 Btw, if this doesn't solve the problem, then the issue probably has to do
 with float placement. But we can come back to that.

 Richard




 On Thu, Jun 24, 2010 at 9:57 PM, Richard Heck rgh...@comcast.net wrote:

  On 06/24/2010 09:22 PM, Mike Martell wrote:

 Hi:
 I'm trying to finish formatting my dissertation to submit to the
 library.  I'm using a thesis class.  My output has the spacing between text
 and sections, and text and subjections, to vary throughout the 
 dissertation.
  I need the spacing to be consistent.  After searching the list archive and
 some tutorials, I tried inserting \raggedbottom to the top of my diss, but
 this does not fix the problem.

 Is there a way to fix this?

   This is normal. LaTeX varies the spacing as the needs of page
 breaking require, just as is done in books and articles. If you need it to
 be constant, then do something along the lines of:
\renewcommand\sectio...@startsection{section}{1}{\z@}%
{-3.5ex}{2ex}%
{\normlfont\Large\bfseries}%
 The semantics of the \...@startsection command are explained here:
http://help-csli.stanford.edu/tex/latex-sections.shtml
 and elsewhere.

 rh








Re: spacing between sections changes in my dissertation

2010-06-28 Thread Mike Martell
Thanks, Richard.  This worked and now my spacing is consistent.  Thanks so
much!
Mike

On Fri, Jun 25, 2010 at 9:01 AM, Richard Heck rgh...@comcast.net wrote:

  On 6/24/10 10:37 PM, Mike Martell wrote:

 Do I place this at the top of the document?  The spacing in the document
 doesn't change.  I tried at the top and in one of the sections whose spacing
 was inconsistent.

  It has to go in the LaTeX preamble. You also have to wrap it in
 \makeatletter at the beginning and \makeatother at the end.

 The specific command I suggested won't do what you want. You'll have to
 adjust the spacing and the font commands that format the heading. But you
 should actually be able to get those values from the class file. That is, if
 you have using thesis.cls, then in that file somewhere you will find
 something like:


 \newcommand\sectio...@startsection {section}{1}...@}%
{-3.5ex \...@plus -1ex \...@minus -.2ex}%
{2.3ex \...@plus.2ex}%
{\normalfont\Large\bfseries}}

 (This is taken from article.cls.) The six arguments to \...@startsection
 (i)   set the name of the division (section)
 (ii)  set the level in the hierarchy of divisions (so chapter is 0)
 (iii) set the indent for headings (zero, in this case, using the macro
 \z@)
 (iv)  set the space above the heading
 (v)   set the space below the heading
 (vi)  declare any commands that should be used to set the heading; in
 this case, it is large and bold
 As for (iv) and (v), these are what LaTeX calls rubber lengths and the
 second means: Add 2.3 exes of space, and optionally add up to 0.2 exes, if
 necessary to fix page breaks, etc. The former means: Add 3.5 exes of space,
 optionally adding up to 1 ex and optionally subtracting up to 0.2exes; the
 minus is a hack that means: suppress the indentation of the first paragraph
 following this heading. So that is why the spacing can be inconsistent:
 LaTeX is being told it can alter the spacing before a section heading by
 almost a third.

 What I did was just copy and paste this command, making it a \renewcommnd,
 and then remove the rubber bits. You can do the same.

 Btw, if this doesn't solve the problem, then the issue probably has to do
 with float placement. But we can come back to that.

 Richard




 On Thu, Jun 24, 2010 at 9:57 PM, Richard Heck rgh...@comcast.net wrote:

  On 06/24/2010 09:22 PM, Mike Martell wrote:

 Hi:
 I'm trying to finish formatting my dissertation to submit to the library.
  I'm using a thesis class.  My output has the spacing between text and
 sections, and text and subjections, to vary throughout the dissertation.  I
 need the spacing to be consistent.  After searching the list archive and
 some tutorials, I tried inserting \raggedbottom to the top of my diss, but
 this does not fix the problem.

 Is there a way to fix this?

   This is normal. LaTeX varies the spacing as the needs of page breaking
 require, just as is done in books and articles. If you need it to be
 constant, then do something along the lines of:
\renewcommand\sectio...@startsection{section}{1}{\z@}%
{-3.5ex}{2ex}%
{\normlfont\Large\bfseries}%
 The semantics of the \...@startsection command are explained here:
http://help-csli.stanford.edu/tex/latex-sections.shtml
 and elsewhere.

 rh







Re: spacing between sections changes in my dissertation

2010-06-28 Thread Mike Martell
Now LyX is making my spacing inconsistent in places (making it single
instead of double) to keep my section spacing consistent.  Is there a way I
can fix that too?
thanks,
Mike

On Mon, Jun 28, 2010 at 8:26 PM, Mike Martell martell.m...@american.eduwrote:

 Thanks, Richard.  This worked and now my spacing is consistent.  Thanks so
 much!
 Mike


 On Fri, Jun 25, 2010 at 9:01 AM, Richard Heck rgh...@comcast.net wrote:

  On 6/24/10 10:37 PM, Mike Martell wrote:

 Do I place this at the top of the document?  The spacing in the document
 doesn't change.  I tried at the top and in one of the sections whose spacing
 was inconsistent.

  It has to go in the LaTeX preamble. You also have to wrap it in
 \makeatletter at the beginning and \makeatother at the end.

 The specific command I suggested won't do what you want. You'll have to
 adjust the spacing and the font commands that format the heading. But you
 should actually be able to get those values from the class file. That is, if
 you have using thesis.cls, then in that file somewhere you will find
 something like:


 \newcommand\sectio...@startsection {section}{1}...@}%
{-3.5ex \...@plus -1ex \...@minus -.2ex}%
{2.3ex \...@plus.2ex}%
{\normalfont\Large\bfseries}}

 (This is taken from article.cls.) The six arguments to \...@startsection
 (i)   set the name of the division (section)
 (ii)  set the level in the hierarchy of divisions (so chapter is 0)
 (iii) set the indent for headings (zero, in this case, using the macro
 \z@)
 (iv)  set the space above the heading
 (v)   set the space below the heading
 (vi)  declare any commands that should be used to set the heading; in
 this case, it is large and bold
 As for (iv) and (v), these are what LaTeX calls rubber lengths and the
 second means: Add 2.3 exes of space, and optionally add up to 0.2 exes, if
 necessary to fix page breaks, etc. The former means: Add 3.5 exes of space,
 optionally adding up to 1 ex and optionally subtracting up to 0.2exes; the
 minus is a hack that means: suppress the indentation of the first paragraph
 following this heading. So that is why the spacing can be inconsistent:
 LaTeX is being told it can alter the spacing before a section heading by
 almost a third.

 What I did was just copy and paste this command, making it a \renewcommnd,
 and then remove the rubber bits. You can do the same.

 Btw, if this doesn't solve the problem, then the issue probably has to do
 with float placement. But we can come back to that.

 Richard




 On Thu, Jun 24, 2010 at 9:57 PM, Richard Heck rgh...@comcast.net wrote:

  On 06/24/2010 09:22 PM, Mike Martell wrote:

 Hi:
 I'm trying to finish formatting my dissertation to submit to the
 library.  I'm using a thesis class.  My output has the spacing between text
 and sections, and text and subjections, to vary throughout the 
 dissertation.
  I need the spacing to be consistent.  After searching the list archive and
 some tutorials, I tried inserting \raggedbottom to the top of my diss, but
 this does not fix the problem.

 Is there a way to fix this?

   This is normal. LaTeX varies the spacing as the needs of page
 breaking require, just as is done in books and articles. If you need it to
 be constant, then do something along the lines of:
\renewcommand\sectio...@startsection{section}{1}{\z@}%
{-3.5ex}{2ex}%
{\normlfont\Large\bfseries}%
 The semantics of the \...@startsection command are explained here:
http://help-csli.stanford.edu/tex/latex-sections.shtml
 and elsewhere.

 rh








Re: spacing between sections changes in my dissertation

2010-06-28 Thread Mike Martell
Thanks, Richard.  This worked and now my spacing is consistent.  Thanks so
much!
Mike

On Fri, Jun 25, 2010 at 9:01 AM, Richard Heck <rgh...@comcast.net> wrote:

>  On 6/24/10 10:37 PM, Mike Martell wrote:
>
> Do I place this at the top of the document?  The spacing in the document
> doesn't change.  I tried at the top and in one of the sections whose spacing
> was inconsistent.
>
>  It has to go in the LaTeX preamble. You also have to wrap it in
> "\makeatletter" at the beginning and "\makeatother" at the end.
>
> The specific command I suggested won't do what you want. You'll have to
> adjust the spacing and the font commands that format the heading. But you
> should actually be able to get those values from the class file. That is, if
> you have using thesis.cls, then in that file somewhere you will find
> something like:
>
>
> \newcommand\sectio...@startsection {section}{1}...@}%
>{-3.5ex \...@plus -1ex \...@minus -.2ex}%
>{2.3ex \...@plus.2ex}%
>{\normalfont\Large\bfseries}}
>
> (This is taken from article.cls.) The six arguments to \...@startsection
> (i)   set the name of the division (section)
> (ii)  set the "level" in the hierarchy of divisions (so chapter is 0)
> (iii) set the indent for headings (zero, in this case, using the macro
> \z@)
> (iv)  set the space above the heading
> (v)   set the space below the heading
> (vi)  declare any commands that should be used to set the heading; in
> this case, it is large and bold
> As for (iv) and (v), these are what LaTeX calls "rubber lengths" and the
> second means: Add 2.3 exes of space, and optionally add up to 0.2 exes, if
> necessary to fix page breaks, etc. The former means: Add 3.5 exes of space,
> optionally adding up to 1 ex and optionally subtracting up to 0.2exes; the
> minus is a hack that means: suppress the indentation of the first paragraph
> following this heading. So that is why the spacing can be inconsistent:
> LaTeX is being told it can alter the spacing before a section heading by
> almost a third.
>
> What I did was just copy and paste this command, making it a \renewcommnd,
> and then remove the rubber bits. You can do the same.
>
> Btw, if this doesn't solve the problem, then the issue probably has to do
> with float placement. But we can come back to that.
>
> Richard
>
>
>
>
> On Thu, Jun 24, 2010 at 9:57 PM, Richard Heck <rgh...@comcast.net> wrote:
>
>>  On 06/24/2010 09:22 PM, Mike Martell wrote:
>>
>>> Hi:
>>> I'm trying to finish formatting my dissertation to submit to the library.
>>>  I'm using a thesis class.  My output has the spacing between text and
>>> sections, and text and subjections, to vary throughout the dissertation.  I
>>> need the spacing to be consistent.  After searching the list archive and
>>> some tutorials, I tried inserting \raggedbottom to the top of my diss, but
>>> this does not fix the problem.
>>>
>>> Is there a way to fix this?
>>>
>>>   This is normal. LaTeX varies the spacing as the needs of page breaking
>> require, just as is done in books and articles. If you need it to be
>> constant, then do something along the lines of:
>>\renewcommand\sectio...@startsection{section}{1}{\z@}%
>>{-3.5ex}{2ex}%
>>{\normlfont\Large\bfseries}%
>> The semantics of the \...@startsection command are explained here:
>>http://help-csli.stanford.edu/tex/latex-sections.shtml
>> and elsewhere.
>>
>> rh
>>
>>
>
>
>


Re: spacing between sections changes in my dissertation

2010-06-28 Thread Mike Martell
Now LyX is making my spacing inconsistent in places (making it single
instead of double) to keep my section spacing consistent.  Is there a way I
can fix that too?
thanks,
Mike

On Mon, Jun 28, 2010 at 8:26 PM, Mike Martell <martell.m...@american.edu>wrote:

> Thanks, Richard.  This worked and now my spacing is consistent.  Thanks so
> much!
> Mike
>
>
> On Fri, Jun 25, 2010 at 9:01 AM, Richard Heck <rgh...@comcast.net> wrote:
>
>>  On 6/24/10 10:37 PM, Mike Martell wrote:
>>
>> Do I place this at the top of the document?  The spacing in the document
>> doesn't change.  I tried at the top and in one of the sections whose spacing
>> was inconsistent.
>>
>>  It has to go in the LaTeX preamble. You also have to wrap it in
>> "\makeatletter" at the beginning and "\makeatother" at the end.
>>
>> The specific command I suggested won't do what you want. You'll have to
>> adjust the spacing and the font commands that format the heading. But you
>> should actually be able to get those values from the class file. That is, if
>> you have using thesis.cls, then in that file somewhere you will find
>> something like:
>>
>>
>> \newcommand\sectio...@startsection {section}{1}...@}%
>>{-3.5ex \...@plus -1ex \...@minus -.2ex}%
>>{2.3ex \...@plus.2ex}%
>>{\normalfont\Large\bfseries}}
>>
>> (This is taken from article.cls.) The six arguments to \...@startsection
>> (i)   set the name of the division (section)
>> (ii)  set the "level" in the hierarchy of divisions (so chapter is 0)
>> (iii) set the indent for headings (zero, in this case, using the macro
>> \z@)
>> (iv)  set the space above the heading
>> (v)   set the space below the heading
>> (vi)  declare any commands that should be used to set the heading; in
>> this case, it is large and bold
>> As for (iv) and (v), these are what LaTeX calls "rubber lengths" and the
>> second means: Add 2.3 exes of space, and optionally add up to 0.2 exes, if
>> necessary to fix page breaks, etc. The former means: Add 3.5 exes of space,
>> optionally adding up to 1 ex and optionally subtracting up to 0.2exes; the
>> minus is a hack that means: suppress the indentation of the first paragraph
>> following this heading. So that is why the spacing can be inconsistent:
>> LaTeX is being told it can alter the spacing before a section heading by
>> almost a third.
>>
>> What I did was just copy and paste this command, making it a \renewcommnd,
>> and then remove the rubber bits. You can do the same.
>>
>> Btw, if this doesn't solve the problem, then the issue probably has to do
>> with float placement. But we can come back to that.
>>
>> Richard
>>
>>
>>
>>
>> On Thu, Jun 24, 2010 at 9:57 PM, Richard Heck <rgh...@comcast.net> wrote:
>>
>>>  On 06/24/2010 09:22 PM, Mike Martell wrote:
>>>
>>>> Hi:
>>>> I'm trying to finish formatting my dissertation to submit to the
>>>> library.  I'm using a thesis class.  My output has the spacing between text
>>>> and sections, and text and subjections, to vary throughout the 
>>>> dissertation.
>>>>  I need the spacing to be consistent.  After searching the list archive and
>>>> some tutorials, I tried inserting \raggedbottom to the top of my diss, but
>>>> this does not fix the problem.
>>>>
>>>> Is there a way to fix this?
>>>>
>>>>   This is normal. LaTeX varies the spacing as the needs of page
>>> breaking require, just as is done in books and articles. If you need it to
>>> be constant, then do something along the lines of:
>>>\renewcommand\sectio...@startsection{section}{1}{\z@}%
>>>{-3.5ex}{2ex}%
>>>{\normlfont\Large\bfseries}%
>>> The semantics of the \...@startsection command are explained here:
>>>http://help-csli.stanford.edu/tex/latex-sections.shtml
>>> and elsewhere.
>>>
>>> rh
>>>
>>>
>>
>>
>>
>


spacing between sections changes in my dissertation

2010-06-24 Thread Mike Martell
Hi:
I'm trying to finish formatting my dissertation to submit to the library.
 I'm using a thesis class.  My output has the spacing between text and
sections, and text and subjections, to vary throughout the dissertation.  I
need the spacing to be consistent.  After searching the list archive and
some tutorials, I tried inserting \raggedbottom to the top of my diss, but
this does not fix the problem.

Is there a way to fix this?

many thanks,
Mike


Re: spacing between sections changes in my dissertation

2010-06-24 Thread Mike Martell
Do I place this at the top of the document?  The spacing in the document
doesn't change.  I tried at the top and in one of the sections whose spacing
was inconsistent.
thanks, mike

On Thu, Jun 24, 2010 at 9:57 PM, Richard Heck rgh...@comcast.net wrote:

 On 06/24/2010 09:22 PM, Mike Martell wrote:

 Hi:
 I'm trying to finish formatting my dissertation to submit to the library.
  I'm using a thesis class.  My output has the spacing between text and
 sections, and text and subjections, to vary throughout the dissertation.  I
 need the spacing to be consistent.  After searching the list archive and
 some tutorials, I tried inserting \raggedbottom to the top of my diss, but
 this does not fix the problem.

 Is there a way to fix this?

  This is normal. LaTeX varies the spacing as the needs of page breaking
 require, just as is done in books and articles. If you need it to be
 constant, then do something along the lines of:
\renewcommand\sectio...@startsection{section}{1}{\z@}%
{-3.5ex}{2ex}%
{\normlfont\Large\bfseries}%
 The semantics of the \...@startsection command are explained here:
http://help-csli.stanford.edu/tex/latex-sections.shtml
 and elsewhere.

 rh




spacing between sections changes in my dissertation

2010-06-24 Thread Mike Martell
Hi:
I'm trying to finish formatting my dissertation to submit to the library.
 I'm using a thesis class.  My output has the spacing between text and
sections, and text and subjections, to vary throughout the dissertation.  I
need the spacing to be consistent.  After searching the list archive and
some tutorials, I tried inserting \raggedbottom to the top of my diss, but
this does not fix the problem.

Is there a way to fix this?

many thanks,
Mike


Re: spacing between sections changes in my dissertation

2010-06-24 Thread Mike Martell
Do I place this at the top of the document?  The spacing in the document
doesn't change.  I tried at the top and in one of the sections whose spacing
was inconsistent.
thanks, mike

On Thu, Jun 24, 2010 at 9:57 PM, Richard Heck rgh...@comcast.net wrote:

 On 06/24/2010 09:22 PM, Mike Martell wrote:

 Hi:
 I'm trying to finish formatting my dissertation to submit to the library.
  I'm using a thesis class.  My output has the spacing between text and
 sections, and text and subjections, to vary throughout the dissertation.  I
 need the spacing to be consistent.  After searching the list archive and
 some tutorials, I tried inserting \raggedbottom to the top of my diss, but
 this does not fix the problem.

 Is there a way to fix this?

  This is normal. LaTeX varies the spacing as the needs of page breaking
 require, just as is done in books and articles. If you need it to be
 constant, then do something along the lines of:
\renewcommand\sectio...@startsection{section}{1}{\z@}%
{-3.5ex}{2ex}%
{\normlfont\Large\bfseries}%
 The semantics of the \...@startsection command are explained here:
http://help-csli.stanford.edu/tex/latex-sections.shtml
 and elsewhere.

 rh




spacing between sections changes in my dissertation

2010-06-24 Thread Mike Martell
Hi:
I'm trying to finish formatting my dissertation to submit to the library.
 I'm using a thesis class.  My output has the spacing between text and
sections, and text and subjections, to vary throughout the dissertation.  I
need the spacing to be consistent.  After searching the list archive and
some tutorials, I tried inserting \raggedbottom to the top of my diss, but
this does not fix the problem.

Is there a way to fix this?

many thanks,
Mike


Re: spacing between sections changes in my dissertation

2010-06-24 Thread Mike Martell
Do I place this at the top of the document?  The spacing in the document
doesn't change.  I tried at the top and in one of the sections whose spacing
was inconsistent.
thanks, mike

On Thu, Jun 24, 2010 at 9:57 PM, Richard Heck <rgh...@comcast.net> wrote:

> On 06/24/2010 09:22 PM, Mike Martell wrote:
>
>> Hi:
>> I'm trying to finish formatting my dissertation to submit to the library.
>>  I'm using a thesis class.  My output has the spacing between text and
>> sections, and text and subjections, to vary throughout the dissertation.  I
>> need the spacing to be consistent.  After searching the list archive and
>> some tutorials, I tried inserting \raggedbottom to the top of my diss, but
>> this does not fix the problem.
>>
>> Is there a way to fix this?
>>
>>  This is normal. LaTeX varies the spacing as the needs of page breaking
> require, just as is done in books and articles. If you need it to be
> constant, then do something along the lines of:
>\renewcommand\sectio...@startsection{section}{1}{\z@}%
>{-3.5ex}{2ex}%
>{\normlfont\Large\bfseries}%
> The semantics of the \...@startsection command are explained here:
>http://help-csli.stanford.edu/tex/latex-sections.shtml
> and elsewhere.
>
> rh
>
>


resize table, caption

2010-02-22 Thread Mike Martell
Hi:
I have tables that are too large to output to one table.  I am trying to
make the tables fit one page and have found tips to use in
ERT \resizebox{0.95\textwidth}{!}{%
When I do this, the table is the right size.  However, the caption of the
table no longer shows up.  Is there a way to resize the table and have the
caption still work?

Many thanks,
Mike

I'm using 1.5.6 on a MAC


resize table, caption

2010-02-22 Thread Mike Martell
Hi:
I have tables that are too large to output to one table.  I am trying to
make the tables fit one page and have found tips to use in
ERT \resizebox{0.95\textwidth}{!}{%
When I do this, the table is the right size.  However, the caption of the
table no longer shows up.  Is there a way to resize the table and have the
caption still work?

Many thanks,
Mike

I'm using 1.5.6 on a MAC


resize table, caption

2010-02-22 Thread Mike Martell
Hi:
I have tables that are too large to output to one table.  I am trying to
make the tables fit one page and have found tips to use in
ERT \resizebox{0.95\textwidth}{!}{%
When I do this, the table is the right size.  However, the caption of the
table no longer shows up.  Is there a way to resize the table and have the
caption still work?

Many thanks,
Mike

I'm using 1.5.6 on a MAC


Re: view pdf : file does not exist

2008-12-04 Thread Mike Martell
hi Jürgen:
I am unable to view the latex log.  In the menu, I can't click on
it--its light grey.

mm

On Thu, Dec 4, 2008 at 3:50 AM, Jürgen Spitzmüller
[EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 I recently changed macs using migration assistant. now, when i try to
 view pdf, i am told that the file does not exist?

 What does View-LaTeX Log file say?

 Jürgen




Re: view pdf : file does not exist

2008-12-04 Thread Mike Martell
hi Jürgen:
I am unable to view the latex log.  In the menu, I can't click on
it--its light grey.

mm

On Thu, Dec 4, 2008 at 3:50 AM, Jürgen Spitzmüller
[EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 I recently changed macs using migration assistant. now, when i try to
 view pdf, i am told that the file does not exist?

 What does View-LaTeX Log file say?

 Jürgen




Re: view pdf : file does not exist

2008-12-04 Thread Mike Martell
hi Jürgen:
I am unable to view the latex log.  In the menu, I can't click on
it--its light grey.

mm

On Thu, Dec 4, 2008 at 3:50 AM, Jürgen Spitzmüller
<[EMAIL PROTECTED]> wrote:
> Mike Martell wrote:
>
>> I recently changed macs using migration assistant. now, when i try to
>> view pdf, i am told that the file does not exist?
>
> What does View->LaTeX Log file say?
>
> Jürgen
>
>


view pdf : file does not exist

2008-12-03 Thread Mike Martell
I recently changed macs using migration assistant. now, when i try to
view pdf, i am told that the file does not exist?

any help? thanks


view pdf : file does not exist

2008-12-03 Thread Mike Martell
I recently changed macs using migration assistant. now, when i try to
view pdf, i am told that the file does not exist?

any help? thanks


view pdf : file does not exist

2008-12-03 Thread Mike Martell
I recently changed macs using migration assistant. now, when i try to
view pdf, i am told that the file does not exist?

any help? thanks


Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
,svprobth.clo]... no
+checking for package algorithm [algorithm]... yes
+checking for package array [array]... yes
+checking for package babel [babel]... yes
+checking for package bibtopic [bibtopic]... yes
+checking for package bm [bm]... yes
+checking for package booktabs [booktabs]... yes
+checking for package color [color]... yes
+checking for package dvipost [dvipost]... no
+checking for package esint [esint]... yes
+checking for package fancybox [fancybox]... yes
+checking for package fancyhdr [fancyhdr]... yes
+checking for package framed [framed]... yes
+checking for package geometry [geometry]... yes
+checking for package jurabib [jurabib]... yes
+checking for package latex8 [latex8]... no
+checking for package listings [listings]... yes
+checking for package longtable [longtable]... yes
+checking for package natbib [natbib]... yes
+checking for package nicefrac [nicefrac]... yes
+checking for package nomencl [nomencl]... yes
+checking for package pdfcolmk [pdfcolmk]... yes
+checking for package prettyref [prettyref]... yes
+checking for package preview [preview]... yes
+checking for package rotating [rotating]... yes
+checking for package setspace [setspace]... yes
+checking for package soul [soul]... yes
+checking for package subfigure [subfigure]... yes
+checking for package textcomp [textcomp]... yes
+checking for package units [units]... yes
+checking for package url [url]... yes
+checking for package varioref [varioref]... yes
+checking for package wrapfig [wrapfig]... yes
+checking for package xcolor [xcolor]... yes
+checking for package graphicx [graphicx]... yes
+checking for graphics driver... dvips
+checking for package psnfss [times.sty]... yes
+checking for package avant [avant]... yes
+checking for package bookman [bookman]... yes
+checking for package chancery [chancery]... yes
+checking for package charter [charter]... yes
+checking for package mathpazo [mathpazo]... yes
+checking for package mathpple [mathpple]... yes
+checking for package mathptm [mathptm]... yes
+checking for package mathptmx [mathptmx]... yes
+checking for package newcent [newcent]... yes
+checking for package utopia [utopia]... yes
+checking for package ae [ae]... yes
+checking for package bera [bera]... yes
+checking for package ccfonts [ccfonts]... yes
+checking for package cmbright [cmbright]... yes
+checking for package eco [eco]... yes
+checking for package fourier [fourier]... yes
+checking for package lmodern [lmodern]... yes
+checking for package luximono [luximono]... no
+checking for package tipa [tipa]... yes
+Inspection done.
+Read the file doc/LaTeXConfig.lyx for more information.
creating packages.lst
creating doc/LaTeXConfig.lyx


On Wed, Oct 22, 2008 at 9:38 AM, Bennett Helm [EMAIL PROTECTED] wrote:
 On Wed, Oct 22, 2008 at 8:10 AM, rgheck [EMAIL PROTECTED] wrote:

 Mike Martell wrote:

 Thanks again.  I took your advice.  I located configure.py  I opened
 terminal, typed:
 # cd /tmp/

 then,

 #python/library/applications/lyx.app/content/resources/configure.py

 Just a few mostly Mac specific comments that might be helpful. The correct
 line should be:
 python /path/to/LyX.app/Contents/Resources/configure.py
 (of course replacing /path/to by the appropriate path.
 /library/applications is not the standard location for applications; it's
 typically just /Applications).
 Note 2 (or 3) other things:
 1. There's a space after python.
 2. It should be Contents (with an s), not content.
 3. Depending on your file system, the capitalization of LyX Contents and
 Resources may matter. When in doubt, use proper capitalization.
 Bennett


Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
I changed the layout file. to read report instead of article, ran
texhash, and still got the reconfigure error.

You said:
 Hmm. That looks like a successful reconfigure to me. Try this again now from
 inside your LyX user directory. To verify where that is, go to
 ToolsPreferences, User Interface, hit Browse and then User Files. This
 will dump you into a subdirectory of your user directory. Worth doing just
 to make sure.

 I verified the directory and ran the python command.  Here is my
terminal line I typed and its response.

dhcp-226-212:~ mikemartell$ python
/Applications/LyX.app/contents/Resources/ui/configure.py
/System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python:
can't open file
'/Applications/LyX.app/contents/Resources/ui/configure.py': [Errno 2]
No such file or directory

I really appreciate your being so helpful.
Mike

On Wed, Oct 22, 2008 at 10:43 AM, Richard Heck [EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 I looked throught the authesis.cls file and did not find a line that said
 /LoadClass
 line.



 I just had a look, too. Looks like it was hacked from ucthesis, which was a
 modification of report. So I'd try:
   Input report.layout
 and modify anything that needs modifying.

 rh




Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
I followed your directions. you said (thanks for being so explicit
):
That is, in Terminal, type:

cd  ~/Library/Application\ Support/LyX-1.5/

to get to the user directory. Then type:

python /Applications/LyX.app/Contents/Resources/configure.py

to reconfigure. (Note that in this line there is no /ui before configure.)


I still did not have luck.

Is this perhaps because i have placed my files in the wrong spot?
Should the authesis.layout file i made be with all the other layout
files?  in Applications/LyX.app/Contents/Resources/layouts/  instead
of in username/Library/Application Support/Lyx-1.5/layouts ?

And perhaps, these files (authesis.cls, aucas.clo, aut10.clo,
auecon.clo) should not be in this location:
users/username/library/texmf/tex/latex/authesis/

Once again, thank you very much.
Mike

On Wed, Oct 22, 2008 at 1:09 PM, Bennett Helm [EMAIL PROTECTED] wrote:
 On Wed, Oct 22, 2008 at 11:28 AM, Richard Heck [EMAIL PROTECTED] wrote:

 Mike Martell wrote:

 I changed the layout file. to read report instead of article, ran
 texhash, and still got the reconfigure error.

 You said:


 Hmm. That looks like a successful reconfigure to me. Try this again now
 from
 inside your LyX user directory. To verify where that is, go to
 ToolsPreferences, User Interface, hit Browse and then User Files.
 This
 will dump you into a subdirectory of your user directory. Worth doing
 just
 to make sure.


  I verified the directory and ran the python command.  Here is my
 terminal line I typed and its response.

 dhcp-226-212:~ mikemartell$ python
 /Applications/LyX.app/contents/Resources/ui/configure.py

 /System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python:
 can't open file
 '/Applications/LyX.app/contents/Resources/ui/configure.py': [Errno 2]
 No such file or directory



 You need to type exactly the same thing you did last time, whatever that
 was, but to do it from inside the LyX user directory.

 That is, in Terminal, type:
 cd  ~/Library/Application\ Support/LyX-1.5/
 to get to the user directory. Then type:
 python /Applications/LyX.app/Contents/Resources/configure.py
 to reconfigure. (Note that in this line there is no /ui before
 configure.)
 Bennett


Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
 for chktex...   no
checking for a spellchecker...
+checking for ispell...   no
checking for a spool command...
+checking for lp...   yes
checking LaTeX configuration... auto
Wrong input layout file with line '\\DeclareLaTeXClass[authesis]\{authesis\}\


Can you tell me what the error means?

You've been so helpful thus far--thank you very, very much.
mike

On Wed, Oct 22, 2008 at 1:47 PM, Richard Heck [EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 I followed your directions. you said (thanks for being so explicit
 ):
 That is, in Terminal, type:

 cd  ~/Library/Application\ Support/LyX-1.5/

 to get to the user directory. Then type:

 python /Applications/LyX.app/Contents/Resources/configure.py

 to reconfigure. (Note that in this line there is no /ui before
 configure.)



 So what was the output in this case? Did configure complete, or did it die
 with an error?

 Is this perhaps because i have placed my files in the wrong spot?
 Should the authesis.layout file i made be with all the other layout
 files?  in Applications/LyX.app/Contents/Resources/layouts/  instead
 of in username/Library/Application Support/Lyx-1.5/layouts ?



 The layout files should be in ~/Library/Application\
 Support/LyX-1.5/layouts/. The username bit is meant to indicate your main
 user directory, whatever that is. That's what ~ gets you, and also should be
 the content of the $HOME environment variable. So if you do:
 echo $HOME
 you'll get your home directory back.

 And perhaps, these files (authesis.cls, aucas.clo, aut10.clo,
 auecon.clo) should not be in this location:
 users/username/library/texmf/tex/latex/authesis/



 If kpsewhich is seeing them, then they are fine. So you might want to check
 that again:
 kpsewhich authesis.cls

 rh




Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
 for db2dvi...   no
Checking whether TeX allows spaces in file names...  yes
checking for a *roff formatter...
+checking for groff...   yes
checking for an index processor...
+checking for texindy...   yes
checking for ChkTeX...
+checking for chktex...   no
checking for a spellchecker...
+checking for ispell...   no
checking for a spool command...
+checking for lp...   yes
checking LaTeX configuration... auto
+Inspecting your LaTeX configuration.
+checking for LaTeX version... 2005/12/01
+checking for available hyphenation patterns... english, usenglishmax, dumylang
+checking for default encoding (this may take a long time)
+  checking for ec fonts... yes
+  checking for ec support in LaTeX format... yes
+checking for document class IEEEtran [IEEEtran]... yes
+checking for document class aapaper [aa]... no
+checking for document class aastex [aastex]... yes
+checking for document class aa [aa]... no
+checking for docbook  class agu-dtd...  no
+checking for document class agums [aguplus,agums.sty]... no
+checking for document class amsart-plain [amsart]... yes
+checking for document class amsart-seq [amsart]... yes
+checking for document class amsart [amsart]... yes
+checking for document class amsbook [amsbook]... yes
+checking for document class apa [apa,apacite.sty]... yes
+checking for document class arab-article [arabart]... yes
+checking for document class armenian-article [article]... yes
+checking for document class article-beamer [article]... yes
+checking for document class article [article]... yes
+checking for package algorithm [algorithm]... yes
+checking for package array [array]... yes
+checking for package babel [babel]... yes
+checking for package bibtopic [bibtopic]... yes
+checking for package bm [bm]... yes
+checking for package booktabs [booktabs]... yes
+checking for package color [color]... yes
+checking for package dvipost [dvipost]... no
+checking for package esint [esint]... yes
+checking for package fancybox [fancybox]... yes
+checking for package fancyhdr [fancyhdr]... yes
+checking for package framed [framed]... yes
+checking for package geometry [geometry]... yes
+checking for package jurabib [jurabib]... yes
+checking for package latex8 [latex8]... no
+checking for package listings [listings]... yes
+checking for package longtable [longtable]... yes
+checking for package natbib [natbib]... yes
+checking for package nicefrac [nicefrac]... yes
+checking for package nomencl [nomencl]... yes
+checking for package pdfcolmk [pdfcolmk]... yes
+checking for package prettyref [prettyref]... yes
+checking for package preview [preview]... yes
+checking for package rotating [rotating]... yes
+checking for package setspace [setspace]... yes
+checking for package soul [soul]... yes
+checking for package subfigure [subfigure]... yes
+checking for package textcomp [textcomp]... yes
+checking for package units [units]... yes
+checking for package url [url]... yes
+checking for package varioref [varioref]... yes
+checking for package wrapfig [wrapfig]... yes
+checking for package xcolor [xcolor]... yes
+checking for package graphicx [graphicx]... yes
+checking for graphics driver... dvips
+checking for package psnfss [times.sty]... yes
+checking for package avant [avant]... yes
+checking for package bookman [bookman]... yes
+checking for package chancery [chancery]... yes
+checking for package charter [charter]... yes
+checking for package mathpazo [mathpazo]... yes
+checking for package mathpple [mathpple]... yes
+checking for package mathptm [mathptm]... yes
+checking for package mathptmx [mathptmx]... yes
+checking for package newcent [newcent]... yes
+checking for package utopia [utopia]... yes
+checking for package ae [ae]... yes
+checking for package bera [bera]... yes
+checking for package ccfonts [ccfonts]... yes
+checking for package cmbright [cmbright]... yes
+checking for package eco [eco]... yes
+checking for package fourier [fourier]... yes
+checking for package lmodern [lmodern]... yes
+checking for package luximono [luximono]... no
+checking for package tipa [tipa]... yes
+Inspection done.
+Read the file doc/LaTeXConfig.lyx for more information.
creating packages.lst
creating doc/LaTeXConfig.lyx


On Wed, Oct 22, 2008 at 2:43 PM, Richard Heck [EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 thanks.  it looks like my layout file is in the correct place. And
 kpsewhich authesis.cls recognizes the file.
 here are the results of my running configure.  I don't think it is
 working.

 [snip]
 checking LaTeX configuration... auto
 Wrong input layout file with line
 '\\DeclareLaTeXClass[authesis]\{authesis\}\

 Can you tell me what the error means?

 I looked at my layout file and found this one online in the archive.
 I made mine look just like this replacing ucthesis with authesis and
 it still isn't working well.  Do you know if this layout file looks
 more correct?
 (located at:
 http://www.mail-archive.com/lyx-users@lists.lyx.org/msg59944.html)
 #% Do not delete the line

Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
,svglobal.clo]... no
+checking for document class svjog [svjour,svjog.clo]... no
+checking for document class svprobth [svjour,svprobth.clo]... no
+checking for package algorithm [algorithm]... yes
+checking for package array [array]... yes
+checking for package babel [babel]... yes
+checking for package bibtopic [bibtopic]... yes
+checking for package bm [bm]... yes
+checking for package booktabs [booktabs]... yes
+checking for package color [color]... yes
+checking for package dvipost [dvipost]... no
+checking for package esint [esint]... yes
+checking for package fancybox [fancybox]... yes
+checking for package fancyhdr [fancyhdr]... yes
+checking for package framed [framed]... yes
+checking for package geometry [geometry]... yes
+checking for package jurabib [jurabib]... yes
+checking for package latex8 [latex8]... no
+checking for package listings [listings]... yes
+checking for package longtable [longtable]... yes
+checking for package natbib [natbib]... yes
+checking for package nicefrac [nicefrac]... yes
+checking for package nomencl [nomencl]... yes
+checking for package pdfcolmk [pdfcolmk]... yes
+checking for package prettyref [prettyref]... yes
+checking for package preview [preview]... yes
+checking for package rotating [rotating]... yes
+checking for package setspace [setspace]... yes
+checking for package soul [soul]... yes
+checking for package subfigure [subfigure]... yes
+checking for package textcomp [textcomp]... yes
+checking for package units [units]... yes
+checking for package url [url]... yes
+checking for package varioref [varioref]... yes
+checking for package wrapfig [wrapfig]... yes
+checking for package xcolor [xcolor]... yes
+checking for package graphicx [graphicx]... yes
+checking for graphics driver... dvips
+checking for package psnfss [times.sty]... yes
+checking for package avant [avant]... yes
+checking for package bookman [bookman]... yes
+checking for package chancery [chancery]... yes
+checking for package charter [charter]... yes
+checking for package mathpazo [mathpazo]... yes
+checking for package mathpple [mathpple]... yes
+checking for package mathptm [mathptm]... yes
+checking for package mathptmx [mathptmx]... yes
+checking for package newcent [newcent]... yes
+checking for package utopia [utopia]... yes
+checking for package ae [ae]... yes
+checking for package bera [bera]... yes
+checking for package ccfonts [ccfonts]... yes
+checking for package cmbright [cmbright]... yes
+checking for package eco [eco]... yes
+checking for package fourier [fourier]... yes
+checking for package lmodern [lmodern]... yes
+checking for package luximono [luximono]... no
+checking for package tipa [tipa]... yes
+Inspection done.
+Read the file doc/LaTeXConfig.lyx for more information.
creating packages.lst
creating doc/LaTeXConfig.lyx



On Wed, Oct 22, 2008 at 5:42 PM, rgheck [EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 Thanks.  I changed the layout file as you suggested:

 #% Do not delete the line below; configure depends on this #
 #\DeclareLaTeXClass{authesis}
 # Read the definitions from report.layout
 Input report.layout

 and here is the output from terminal.  It looks like it worked (?).  I
 open LyX and my class is not available, and if I configure I still get
 the error.  Can you help again?,  thanks.



 It seems to have died at authesis again:

 +checking for document class IEEEtran [IEEEtran]... yes
 +checking for document class aapaper [aa]... no
 +checking for document class aastex [aastex]... yes
 +checking for document class aa [aa]... no
 +checking for docbook  class agu-dtd...  no
 +checking for document class agums [aguplus,agums.sty]... no
 +checking for document class amsart-plain [amsart]... yes
 +checking for document class amsart-seq [amsart]... yes
 +checking for document class amsart [amsart]... yes
 +checking for document class amsbook [amsbook]... yes
 +checking for document class apa [apa,apacite.sty]... yes
 +checking for document class arab-article [arabart]... yes
 +checking for document class armenian-article [article]... yes
 +checking for document class article-beamer [article]... yes
 +checking for document class article [article]... yes
 +checking for package algorithm [algorithm]... yes


 There ought to be more document classes there.

 Anyway, I've just created the attached layout in my local directory and run
 configure, which worked fine. So you might try using it, just in case.

 Try deleting textclass.lst from your user directory, too. The previous
 failures may be causing problems.

 This WILL work.

 Richard


 #% Do not delete the line below; configure depends on this #
 #\DeclareLaTeXClass{authesis}

 # Read the definitions from report.layout
 Input report.layout




Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
I'm sorry.  I may have spoke too soon.  Now, when I try to make a
sample document, when i try to view pdflatex, I get five latex errors.
 all of them say undefined control sequence.

do you know why i would get this?


On Wed, Oct 22, 2008 at 6:04 PM, Mike Martell [EMAIL PROTECTED] wrote:
 I deleted textclass.lst from username/
 (was this the correct location?)

 I placed the layout file you mailed me in username/Library/Application
 Support/LyX-1.5/layouts/

 When i open LyX, select new - go to documents, settings, class I can
 select authesis!
 It looks like I am set! (right?!)

 You have been unbelievabley patient and helpful. Thank you very, very much.

 I open terminal and type:

 dhcp-228-146:LyX-1.5 mikemartell$ cd ~/Library/Application\
 Support/LyX-1.5/dhcp-228-146:LyX-1.5 mikemartell$ python
 /Applications/LyX.app/Contents/Resources/configure.py
 checking for a Latex2e program...
 +checking for latex...   yes
 checking for a DVI postprocessing program...
 +checking for pplatex...   no
 checking for a Tgif viewer and editor...
 +checking for tgif...   no
 checking for a FIG viewer and editor...
 +checking for xfig...   no
 checking for a Grace viewer and editor...
 +checking for xmgrace...   no
 checking for a FEN viewer and editor...
 +checking for xboard...   no
 checking for a raster image viewer...
 +checking for xv...   no
 +checking for kview...   no
 +checking for gimp-remote...   no
 +checking for gimp...   no
 checking for a raster image editor...
 +checking for gimp-remote...   no
 +checking for gimp...   no
 checking for a text editor...
 +checking for sensible-editor...   no
 +checking for xemacs...   no
 +checking for gvim...   no
 +checking for kedit...   no
 +checking for kwrite...   no
 +checking for kate...   no
 +checking for nedit...   no
 +checking for gedit...   no
 +checking for notepad...   no
 checking for a Postscript previewer...
 +checking for kghostview...   no
 +checking for evince...   no
 +checking for gv...   no
 +checking for ghostview...   no
 checking for a PDF previewer...
 +checking for kpdf...   no
 +checking for evince...   no
 +checking for kghostview...   no
 +checking for xpdf...   no
 +checking for acrobat...   no
 +checking for acroread...   no
 +checking for gv...   no
 +checking for ghostview...   no
 checking for a DVI previewer...
 +checking for xdvi...   yes
 checking for an HTML previewer...
 +checking for firefox...   no
 +checking for mozilla...   no
 +checking for netscape...   no
 checking for Noteedit...
 +checking for noteedit...   no
 checking for an OpenDocument viewer...
 +checking for oowriter...   no
 checking for the pdflatex program...
 +checking for pdflatex...   yes
 checking for a LaTeX/Noweb - LyX converter...
 +checking for tex2lyx...   no
 +checking for tex2lyx...   no
 checking for a Noweb - LaTeX converter...
 +checking for noweave...   no
 checking for an HTML - LaTeX converter...
 +checking for html2latex...   no
 +checking for gnuhtml2latex...   no
 +checking for htmltolatex...   no
 +checking for java...   yes
 checking for an MS Word - LaTeX converter...
 +checking for wvCleanLatex...   no
 checking for a LaTeX - HTML converter...
 +checking for htlatex...   yes
 checking for a LaTeX - MS Word converter...
 +checking for htlatex...   yes
 checking for an OpenOffice.org - LaTeX converter...
 +checking for w2l...   no
 checking for an OpenDocument - LaTeX converter...
 +checking for w2l...   no
 checking for a LaTeX - Open Document converter...
 +checking for htlatex...   yes
 checking for a LaTeX - RTF converter...
 +checking for latex2rtf...   no
 +checking for latex2rt...   no
 checking for a PS to PDF converter...
 +checking for ps2pdf13...   yes
 checking for a PS to TXT converter...
 +checking for pstotext...   no
 checking for a PS to TXT converter...
 +checking for ps2ascii...   yes
 checking for a PS to EPS converter...
 +checking for ps2eps...   yes
 checking for a PDF to PS converter...
 +checking for pdf2ps...   yes
 checking for a PDF to EPS converter...
 +checking for pdftops...   no
 checking for a DVI to TXT converter...
 +checking for catdvi...   no
 checking for a DVI to PS converter...
 +checking for dvips...   yes
 checking for a DVI to PDF converter...
 +checking for dvipdfmx...   yes
 checking for dvipng...
 +checking for dvipng...   yes
 checking for a fax program...
 +checking for kdeprintfax...   no
 +checking for ksendfax...   no
 checking for a FIG - EPS/PPM converter...
 +checking for fig2dev...   no
 checking for a TIFF - PS converter...
 +checking for tiff2ps...   no
 checking for a TGIF - EPS/PPM converter...
 +checking for tgif...   no
 checking for a WMF - EPS converter...
 +checking for metafile2eps...   no
 +checking for wmf2eps...   no
 checking for an EMF - EPS converter...
 +checking for metafile2eps...   no
 +checking for wmf2eps...   no
 checking for an EPS - PDF converter...
 +checking for epstopdf...   yes
 checking for a Grace - Image converter...
 +checking for gracebat

Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
,svprobth.clo]... no
+checking for package algorithm [algorithm]... yes
+checking for package array [array]... yes
+checking for package babel [babel]... yes
+checking for package bibtopic [bibtopic]... yes
+checking for package bm [bm]... yes
+checking for package booktabs [booktabs]... yes
+checking for package color [color]... yes
+checking for package dvipost [dvipost]... no
+checking for package esint [esint]... yes
+checking for package fancybox [fancybox]... yes
+checking for package fancyhdr [fancyhdr]... yes
+checking for package framed [framed]... yes
+checking for package geometry [geometry]... yes
+checking for package jurabib [jurabib]... yes
+checking for package latex8 [latex8]... no
+checking for package listings [listings]... yes
+checking for package longtable [longtable]... yes
+checking for package natbib [natbib]... yes
+checking for package nicefrac [nicefrac]... yes
+checking for package nomencl [nomencl]... yes
+checking for package pdfcolmk [pdfcolmk]... yes
+checking for package prettyref [prettyref]... yes
+checking for package preview [preview]... yes
+checking for package rotating [rotating]... yes
+checking for package setspace [setspace]... yes
+checking for package soul [soul]... yes
+checking for package subfigure [subfigure]... yes
+checking for package textcomp [textcomp]... yes
+checking for package units [units]... yes
+checking for package url [url]... yes
+checking for package varioref [varioref]... yes
+checking for package wrapfig [wrapfig]... yes
+checking for package xcolor [xcolor]... yes
+checking for package graphicx [graphicx]... yes
+checking for graphics driver... dvips
+checking for package psnfss [times.sty]... yes
+checking for package avant [avant]... yes
+checking for package bookman [bookman]... yes
+checking for package chancery [chancery]... yes
+checking for package charter [charter]... yes
+checking for package mathpazo [mathpazo]... yes
+checking for package mathpple [mathpple]... yes
+checking for package mathptm [mathptm]... yes
+checking for package mathptmx [mathptmx]... yes
+checking for package newcent [newcent]... yes
+checking for package utopia [utopia]... yes
+checking for package ae [ae]... yes
+checking for package bera [bera]... yes
+checking for package ccfonts [ccfonts]... yes
+checking for package cmbright [cmbright]... yes
+checking for package eco [eco]... yes
+checking for package fourier [fourier]... yes
+checking for package lmodern [lmodern]... yes
+checking for package luximono [luximono]... no
+checking for package tipa [tipa]... yes
+Inspection done.
+Read the file doc/LaTeXConfig.lyx for more information.
creating packages.lst
creating doc/LaTeXConfig.lyx


On Wed, Oct 22, 2008 at 9:38 AM, Bennett Helm [EMAIL PROTECTED] wrote:
 On Wed, Oct 22, 2008 at 8:10 AM, rgheck [EMAIL PROTECTED] wrote:

 Mike Martell wrote:

 Thanks again.  I took your advice.  I located configure.py  I opened
 terminal, typed:
 # cd /tmp/

 then,

 #python/library/applications/lyx.app/content/resources/configure.py

 Just a few mostly Mac specific comments that might be helpful. The correct
 line should be:
 python /path/to/LyX.app/Contents/Resources/configure.py
 (of course replacing /path/to by the appropriate path.
 /library/applications is not the standard location for applications; it's
 typically just /Applications).
 Note 2 (or 3) other things:
 1. There's a space after python.
 2. It should be Contents (with an s), not content.
 3. Depending on your file system, the capitalization of LyX Contents and
 Resources may matter. When in doubt, use proper capitalization.
 Bennett


Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
I changed the layout file. to read report instead of article, ran
texhash, and still got the reconfigure error.

You said:
 Hmm. That looks like a successful reconfigure to me. Try this again now from
 inside your LyX user directory. To verify where that is, go to
 ToolsPreferences, User Interface, hit Browse and then User Files. This
 will dump you into a subdirectory of your user directory. Worth doing just
 to make sure.

 I verified the directory and ran the python command.  Here is my
terminal line I typed and its response.

dhcp-226-212:~ mikemartell$ python
/Applications/LyX.app/contents/Resources/ui/configure.py
/System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python:
can't open file
'/Applications/LyX.app/contents/Resources/ui/configure.py': [Errno 2]
No such file or directory

I really appreciate your being so helpful.
Mike

On Wed, Oct 22, 2008 at 10:43 AM, Richard Heck [EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 I looked throught the authesis.cls file and did not find a line that said
 /LoadClass
 line.



 I just had a look, too. Looks like it was hacked from ucthesis, which was a
 modification of report. So I'd try:
   Input report.layout
 and modify anything that needs modifying.

 rh




Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
I followed your directions. you said (thanks for being so explicit
):
That is, in Terminal, type:

cd  ~/Library/Application\ Support/LyX-1.5/

to get to the user directory. Then type:

python /Applications/LyX.app/Contents/Resources/configure.py

to reconfigure. (Note that in this line there is no /ui before configure.)


I still did not have luck.

Is this perhaps because i have placed my files in the wrong spot?
Should the authesis.layout file i made be with all the other layout
files?  in Applications/LyX.app/Contents/Resources/layouts/  instead
of in username/Library/Application Support/Lyx-1.5/layouts ?

And perhaps, these files (authesis.cls, aucas.clo, aut10.clo,
auecon.clo) should not be in this location:
users/username/library/texmf/tex/latex/authesis/

Once again, thank you very much.
Mike

On Wed, Oct 22, 2008 at 1:09 PM, Bennett Helm [EMAIL PROTECTED] wrote:
 On Wed, Oct 22, 2008 at 11:28 AM, Richard Heck [EMAIL PROTECTED] wrote:

 Mike Martell wrote:

 I changed the layout file. to read report instead of article, ran
 texhash, and still got the reconfigure error.

 You said:


 Hmm. That looks like a successful reconfigure to me. Try this again now
 from
 inside your LyX user directory. To verify where that is, go to
 ToolsPreferences, User Interface, hit Browse and then User Files.
 This
 will dump you into a subdirectory of your user directory. Worth doing
 just
 to make sure.


  I verified the directory and ran the python command.  Here is my
 terminal line I typed and its response.

 dhcp-226-212:~ mikemartell$ python
 /Applications/LyX.app/contents/Resources/ui/configure.py

 /System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python:
 can't open file
 '/Applications/LyX.app/contents/Resources/ui/configure.py': [Errno 2]
 No such file or directory



 You need to type exactly the same thing you did last time, whatever that
 was, but to do it from inside the LyX user directory.

 That is, in Terminal, type:
 cd  ~/Library/Application\ Support/LyX-1.5/
 to get to the user directory. Then type:
 python /Applications/LyX.app/Contents/Resources/configure.py
 to reconfigure. (Note that in this line there is no /ui before
 configure.)
 Bennett


Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
 for chktex...   no
checking for a spellchecker...
+checking for ispell...   no
checking for a spool command...
+checking for lp...   yes
checking LaTeX configuration... auto
Wrong input layout file with line '\\DeclareLaTeXClass[authesis]\{authesis\}\


Can you tell me what the error means?

You've been so helpful thus far--thank you very, very much.
mike

On Wed, Oct 22, 2008 at 1:47 PM, Richard Heck [EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 I followed your directions. you said (thanks for being so explicit
 ):
 That is, in Terminal, type:

 cd  ~/Library/Application\ Support/LyX-1.5/

 to get to the user directory. Then type:

 python /Applications/LyX.app/Contents/Resources/configure.py

 to reconfigure. (Note that in this line there is no /ui before
 configure.)



 So what was the output in this case? Did configure complete, or did it die
 with an error?

 Is this perhaps because i have placed my files in the wrong spot?
 Should the authesis.layout file i made be with all the other layout
 files?  in Applications/LyX.app/Contents/Resources/layouts/  instead
 of in username/Library/Application Support/Lyx-1.5/layouts ?



 The layout files should be in ~/Library/Application\
 Support/LyX-1.5/layouts/. The username bit is meant to indicate your main
 user directory, whatever that is. That's what ~ gets you, and also should be
 the content of the $HOME environment variable. So if you do:
 echo $HOME
 you'll get your home directory back.

 And perhaps, these files (authesis.cls, aucas.clo, aut10.clo,
 auecon.clo) should not be in this location:
 users/username/library/texmf/tex/latex/authesis/



 If kpsewhich is seeing them, then they are fine. So you might want to check
 that again:
 kpsewhich authesis.cls

 rh




Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
 for db2dvi...   no
Checking whether TeX allows spaces in file names...  yes
checking for a *roff formatter...
+checking for groff...   yes
checking for an index processor...
+checking for texindy...   yes
checking for ChkTeX...
+checking for chktex...   no
checking for a spellchecker...
+checking for ispell...   no
checking for a spool command...
+checking for lp...   yes
checking LaTeX configuration... auto
+Inspecting your LaTeX configuration.
+checking for LaTeX version... 2005/12/01
+checking for available hyphenation patterns... english, usenglishmax, dumylang
+checking for default encoding (this may take a long time)
+  checking for ec fonts... yes
+  checking for ec support in LaTeX format... yes
+checking for document class IEEEtran [IEEEtran]... yes
+checking for document class aapaper [aa]... no
+checking for document class aastex [aastex]... yes
+checking for document class aa [aa]... no
+checking for docbook  class agu-dtd...  no
+checking for document class agums [aguplus,agums.sty]... no
+checking for document class amsart-plain [amsart]... yes
+checking for document class amsart-seq [amsart]... yes
+checking for document class amsart [amsart]... yes
+checking for document class amsbook [amsbook]... yes
+checking for document class apa [apa,apacite.sty]... yes
+checking for document class arab-article [arabart]... yes
+checking for document class armenian-article [article]... yes
+checking for document class article-beamer [article]... yes
+checking for document class article [article]... yes
+checking for package algorithm [algorithm]... yes
+checking for package array [array]... yes
+checking for package babel [babel]... yes
+checking for package bibtopic [bibtopic]... yes
+checking for package bm [bm]... yes
+checking for package booktabs [booktabs]... yes
+checking for package color [color]... yes
+checking for package dvipost [dvipost]... no
+checking for package esint [esint]... yes
+checking for package fancybox [fancybox]... yes
+checking for package fancyhdr [fancyhdr]... yes
+checking for package framed [framed]... yes
+checking for package geometry [geometry]... yes
+checking for package jurabib [jurabib]... yes
+checking for package latex8 [latex8]... no
+checking for package listings [listings]... yes
+checking for package longtable [longtable]... yes
+checking for package natbib [natbib]... yes
+checking for package nicefrac [nicefrac]... yes
+checking for package nomencl [nomencl]... yes
+checking for package pdfcolmk [pdfcolmk]... yes
+checking for package prettyref [prettyref]... yes
+checking for package preview [preview]... yes
+checking for package rotating [rotating]... yes
+checking for package setspace [setspace]... yes
+checking for package soul [soul]... yes
+checking for package subfigure [subfigure]... yes
+checking for package textcomp [textcomp]... yes
+checking for package units [units]... yes
+checking for package url [url]... yes
+checking for package varioref [varioref]... yes
+checking for package wrapfig [wrapfig]... yes
+checking for package xcolor [xcolor]... yes
+checking for package graphicx [graphicx]... yes
+checking for graphics driver... dvips
+checking for package psnfss [times.sty]... yes
+checking for package avant [avant]... yes
+checking for package bookman [bookman]... yes
+checking for package chancery [chancery]... yes
+checking for package charter [charter]... yes
+checking for package mathpazo [mathpazo]... yes
+checking for package mathpple [mathpple]... yes
+checking for package mathptm [mathptm]... yes
+checking for package mathptmx [mathptmx]... yes
+checking for package newcent [newcent]... yes
+checking for package utopia [utopia]... yes
+checking for package ae [ae]... yes
+checking for package bera [bera]... yes
+checking for package ccfonts [ccfonts]... yes
+checking for package cmbright [cmbright]... yes
+checking for package eco [eco]... yes
+checking for package fourier [fourier]... yes
+checking for package lmodern [lmodern]... yes
+checking for package luximono [luximono]... no
+checking for package tipa [tipa]... yes
+Inspection done.
+Read the file doc/LaTeXConfig.lyx for more information.
creating packages.lst
creating doc/LaTeXConfig.lyx


On Wed, Oct 22, 2008 at 2:43 PM, Richard Heck [EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 thanks.  it looks like my layout file is in the correct place. And
 kpsewhich authesis.cls recognizes the file.
 here are the results of my running configure.  I don't think it is
 working.

 [snip]
 checking LaTeX configuration... auto
 Wrong input layout file with line
 '\\DeclareLaTeXClass[authesis]\{authesis\}\

 Can you tell me what the error means?

 I looked at my layout file and found this one online in the archive.
 I made mine look just like this replacing ucthesis with authesis and
 it still isn't working well.  Do you know if this layout file looks
 more correct?
 (located at:
 http://www.mail-archive.com/lyx-users@lists.lyx.org/msg59944.html)
 #% Do not delete the line

Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
,svglobal.clo]... no
+checking for document class svjog [svjour,svjog.clo]... no
+checking for document class svprobth [svjour,svprobth.clo]... no
+checking for package algorithm [algorithm]... yes
+checking for package array [array]... yes
+checking for package babel [babel]... yes
+checking for package bibtopic [bibtopic]... yes
+checking for package bm [bm]... yes
+checking for package booktabs [booktabs]... yes
+checking for package color [color]... yes
+checking for package dvipost [dvipost]... no
+checking for package esint [esint]... yes
+checking for package fancybox [fancybox]... yes
+checking for package fancyhdr [fancyhdr]... yes
+checking for package framed [framed]... yes
+checking for package geometry [geometry]... yes
+checking for package jurabib [jurabib]... yes
+checking for package latex8 [latex8]... no
+checking for package listings [listings]... yes
+checking for package longtable [longtable]... yes
+checking for package natbib [natbib]... yes
+checking for package nicefrac [nicefrac]... yes
+checking for package nomencl [nomencl]... yes
+checking for package pdfcolmk [pdfcolmk]... yes
+checking for package prettyref [prettyref]... yes
+checking for package preview [preview]... yes
+checking for package rotating [rotating]... yes
+checking for package setspace [setspace]... yes
+checking for package soul [soul]... yes
+checking for package subfigure [subfigure]... yes
+checking for package textcomp [textcomp]... yes
+checking for package units [units]... yes
+checking for package url [url]... yes
+checking for package varioref [varioref]... yes
+checking for package wrapfig [wrapfig]... yes
+checking for package xcolor [xcolor]... yes
+checking for package graphicx [graphicx]... yes
+checking for graphics driver... dvips
+checking for package psnfss [times.sty]... yes
+checking for package avant [avant]... yes
+checking for package bookman [bookman]... yes
+checking for package chancery [chancery]... yes
+checking for package charter [charter]... yes
+checking for package mathpazo [mathpazo]... yes
+checking for package mathpple [mathpple]... yes
+checking for package mathptm [mathptm]... yes
+checking for package mathptmx [mathptmx]... yes
+checking for package newcent [newcent]... yes
+checking for package utopia [utopia]... yes
+checking for package ae [ae]... yes
+checking for package bera [bera]... yes
+checking for package ccfonts [ccfonts]... yes
+checking for package cmbright [cmbright]... yes
+checking for package eco [eco]... yes
+checking for package fourier [fourier]... yes
+checking for package lmodern [lmodern]... yes
+checking for package luximono [luximono]... no
+checking for package tipa [tipa]... yes
+Inspection done.
+Read the file doc/LaTeXConfig.lyx for more information.
creating packages.lst
creating doc/LaTeXConfig.lyx



On Wed, Oct 22, 2008 at 5:42 PM, rgheck [EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 Thanks.  I changed the layout file as you suggested:

 #% Do not delete the line below; configure depends on this #
 #\DeclareLaTeXClass{authesis}
 # Read the definitions from report.layout
 Input report.layout

 and here is the output from terminal.  It looks like it worked (?).  I
 open LyX and my class is not available, and if I configure I still get
 the error.  Can you help again?,  thanks.



 It seems to have died at authesis again:

 +checking for document class IEEEtran [IEEEtran]... yes
 +checking for document class aapaper [aa]... no
 +checking for document class aastex [aastex]... yes
 +checking for document class aa [aa]... no
 +checking for docbook  class agu-dtd...  no
 +checking for document class agums [aguplus,agums.sty]... no
 +checking for document class amsart-plain [amsart]... yes
 +checking for document class amsart-seq [amsart]... yes
 +checking for document class amsart [amsart]... yes
 +checking for document class amsbook [amsbook]... yes
 +checking for document class apa [apa,apacite.sty]... yes
 +checking for document class arab-article [arabart]... yes
 +checking for document class armenian-article [article]... yes
 +checking for document class article-beamer [article]... yes
 +checking for document class article [article]... yes
 +checking for package algorithm [algorithm]... yes


 There ought to be more document classes there.

 Anyway, I've just created the attached layout in my local directory and run
 configure, which worked fine. So you might try using it, just in case.

 Try deleting textclass.lst from your user directory, too. The previous
 failures may be causing problems.

 This WILL work.

 Richard


 #% Do not delete the line below; configure depends on this #
 #\DeclareLaTeXClass{authesis}

 # Read the definitions from report.layout
 Input report.layout




Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
I'm sorry.  I may have spoke too soon.  Now, when I try to make a
sample document, when i try to view pdflatex, I get five latex errors.
 all of them say undefined control sequence.

do you know why i would get this?


On Wed, Oct 22, 2008 at 6:04 PM, Mike Martell [EMAIL PROTECTED] wrote:
 I deleted textclass.lst from username/
 (was this the correct location?)

 I placed the layout file you mailed me in username/Library/Application
 Support/LyX-1.5/layouts/

 When i open LyX, select new - go to documents, settings, class I can
 select authesis!
 It looks like I am set! (right?!)

 You have been unbelievabley patient and helpful. Thank you very, very much.

 I open terminal and type:

 dhcp-228-146:LyX-1.5 mikemartell$ cd ~/Library/Application\
 Support/LyX-1.5/dhcp-228-146:LyX-1.5 mikemartell$ python
 /Applications/LyX.app/Contents/Resources/configure.py
 checking for a Latex2e program...
 +checking for latex...   yes
 checking for a DVI postprocessing program...
 +checking for pplatex...   no
 checking for a Tgif viewer and editor...
 +checking for tgif...   no
 checking for a FIG viewer and editor...
 +checking for xfig...   no
 checking for a Grace viewer and editor...
 +checking for xmgrace...   no
 checking for a FEN viewer and editor...
 +checking for xboard...   no
 checking for a raster image viewer...
 +checking for xv...   no
 +checking for kview...   no
 +checking for gimp-remote...   no
 +checking for gimp...   no
 checking for a raster image editor...
 +checking for gimp-remote...   no
 +checking for gimp...   no
 checking for a text editor...
 +checking for sensible-editor...   no
 +checking for xemacs...   no
 +checking for gvim...   no
 +checking for kedit...   no
 +checking for kwrite...   no
 +checking for kate...   no
 +checking for nedit...   no
 +checking for gedit...   no
 +checking for notepad...   no
 checking for a Postscript previewer...
 +checking for kghostview...   no
 +checking for evince...   no
 +checking for gv...   no
 +checking for ghostview...   no
 checking for a PDF previewer...
 +checking for kpdf...   no
 +checking for evince...   no
 +checking for kghostview...   no
 +checking for xpdf...   no
 +checking for acrobat...   no
 +checking for acroread...   no
 +checking for gv...   no
 +checking for ghostview...   no
 checking for a DVI previewer...
 +checking for xdvi...   yes
 checking for an HTML previewer...
 +checking for firefox...   no
 +checking for mozilla...   no
 +checking for netscape...   no
 checking for Noteedit...
 +checking for noteedit...   no
 checking for an OpenDocument viewer...
 +checking for oowriter...   no
 checking for the pdflatex program...
 +checking for pdflatex...   yes
 checking for a LaTeX/Noweb - LyX converter...
 +checking for tex2lyx...   no
 +checking for tex2lyx...   no
 checking for a Noweb - LaTeX converter...
 +checking for noweave...   no
 checking for an HTML - LaTeX converter...
 +checking for html2latex...   no
 +checking for gnuhtml2latex...   no
 +checking for htmltolatex...   no
 +checking for java...   yes
 checking for an MS Word - LaTeX converter...
 +checking for wvCleanLatex...   no
 checking for a LaTeX - HTML converter...
 +checking for htlatex...   yes
 checking for a LaTeX - MS Word converter...
 +checking for htlatex...   yes
 checking for an OpenOffice.org - LaTeX converter...
 +checking for w2l...   no
 checking for an OpenDocument - LaTeX converter...
 +checking for w2l...   no
 checking for a LaTeX - Open Document converter...
 +checking for htlatex...   yes
 checking for a LaTeX - RTF converter...
 +checking for latex2rtf...   no
 +checking for latex2rt...   no
 checking for a PS to PDF converter...
 +checking for ps2pdf13...   yes
 checking for a PS to TXT converter...
 +checking for pstotext...   no
 checking for a PS to TXT converter...
 +checking for ps2ascii...   yes
 checking for a PS to EPS converter...
 +checking for ps2eps...   yes
 checking for a PDF to PS converter...
 +checking for pdf2ps...   yes
 checking for a PDF to EPS converter...
 +checking for pdftops...   no
 checking for a DVI to TXT converter...
 +checking for catdvi...   no
 checking for a DVI to PS converter...
 +checking for dvips...   yes
 checking for a DVI to PDF converter...
 +checking for dvipdfmx...   yes
 checking for dvipng...
 +checking for dvipng...   yes
 checking for a fax program...
 +checking for kdeprintfax...   no
 +checking for ksendfax...   no
 checking for a FIG - EPS/PPM converter...
 +checking for fig2dev...   no
 checking for a TIFF - PS converter...
 +checking for tiff2ps...   no
 checking for a TGIF - EPS/PPM converter...
 +checking for tgif...   no
 checking for a WMF - EPS converter...
 +checking for metafile2eps...   no
 +checking for wmf2eps...   no
 checking for an EMF - EPS converter...
 +checking for metafile2eps...   no
 +checking for wmf2eps...   no
 checking for an EPS - PDF converter...
 +checking for epstopdf...   yes
 checking for a Grace - Image converter...
 +checking for gracebat

Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
k]... yes
+checking for document class mwrep [mwrep]... yes
+checking for document class paper [paper]... yes
+checking for document class powerdot [powerdot,enumitem.sty,pstricks.sty,xkeyv
+checking for document class report [report]... yes
+checking for document class revtex4 [revtex4]... yes
+checking for document class revtex [revtex]... yes
+checking for document class scrartcl [scrartcl]... yes
+checking for document class scrarticle-beamer [scrartcl]... yes
+checking for document class scrbook [scrbook]... yes
+checking for document class scrlettr [scrlettr]... yes
+checking for document class scrlttr2 [scrlttr2]... yes
+checking for document class scrreprt [scrreprt]... yes
+checking for document class seminar [seminar]... yes
+checking for document class siamltex [siamltex]... no
+checking for document class simplecv [simplecv]... yes
+checking for document class slides [slides]... yes
+checking for document class spie [spie]... yes
+checking for document class svglobal [svjour,svglobal.clo]... no
+checking for document class svjog [svjour,svjog.clo]... no
+checking for document class svprobth [svjour,svprobth.clo]... no
+checking for package algorithm [algorithm]... yes
+checking for package array [array]... yes
+checking for package babel [babel]... yes
+checking for package bibtopic [bibtopic]... yes
+checking for package bm [bm]... yes
+checking for package booktabs [booktabs]... yes
+checking for package color [color]... yes
+checking for package dvipost [dvipost]... no
+checking for package esint [esint]... yes
+checking for package fancybox [fancybox]... yes
+checking for package fancyhdr [fancyhdr]... yes
+checking for package framed [framed]... yes
+checking for package geometry [geometry]... yes
+checking for package jurabib [jurabib]... yes
+checking for package latex8 [latex8]... no
+checking for package listings [listings]... yes
+checking for package longtable [longtable]... yes
+checking for package natbib [natbib]... yes
+checking for package nicefrac [nicefrac]... yes
+checking for package nomencl [nomencl]... yes
+checking for package pdfcolmk [pdfcolmk]... yes
+checking for package prettyref [prettyref]... yes
+checking for package preview [preview]... yes
+checking for package rotating [rotating]... yes
+checking for package setspace [setspace]... yes
+checking for package soul [soul]... yes
+checking for package subfigure [subfigure]... yes
+checking for package textcomp [textcomp]... yes
+checking for package units [units]... yes
+checking for package url [url]... yes
+checking for package varioref [varioref]... yes
+checking for package wrapfig [wrapfig]... yes
+checking for package xcolor [xcolor]... yes
+checking for package graphicx [graphicx]... yes
+checking for graphics driver... dvips
+checking for package psnfss [times.sty]... yes
+checking for package avant [avant]... yes
+checking for package bookman [bookman]... yes
+checking for package chancery [chancery]... yes
+checking for package charter [charter]... yes
+checking for package mathpazo [mathpazo]... yes
+checking for package mathpple [mathpple]... yes
+checking for package mathptm [mathptm]... yes
+checking for package mathptmx [mathptmx]... yes
+checking for package newcent [newcent]... yes
+checking for package utopia [utopia]... yes
+checking for package ae [ae]... yes
+checking for package bera [bera]... yes
+checking for package ccfonts [ccfonts]... yes
+checking for package cmbright [cmbright]... yes
+checking for package eco [eco]... yes
+checking for package fourier [fourier]... yes
+checking for package lmodern [lmodern]... yes
+checking for package luximono [luximono]... no
+checking for package tipa [tipa]... yes
+Inspection done.
+Read the file doc/LaTeXConfig.lyx for more information.
creating packages.lst
creating doc/LaTeXConfig.lyx


On Wed, Oct 22, 2008 at 9:38 AM, Bennett Helm <[EMAIL PROTECTED]> wrote:
> On Wed, Oct 22, 2008 at 8:10 AM, rgheck <[EMAIL PROTECTED]> wrote:
>>
>> Mike Martell wrote:
>>>
>>> Thanks again.  I took your advice.  I located configure.py  I opened
>>> terminal, typed:
>>> # cd /tmp/
>>>
>>> then,
>>>
>>> #python/library/applications/lyx.app/content/resources/configure.py
>
> Just a few mostly Mac specific comments that might be helpful. The correct
> line should be:
> python /path/to/LyX.app/Contents/Resources/configure.py
> (of course replacing "/path/to" by the appropriate path.
> "/library/applications" is not the standard location for applications; it's
> typically just "/Applications").
> Note 2 (or 3) other things:
> 1. There's a space after "python".
> 2. It should be "Contents" (with an "s"), not "content".
> 3. Depending on your file system, the capitalization of "LyX" "Contents" and
> "Resources" may matter. When in doubt, use proper capitalization.
> Bennett


Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
I changed the layout file. to read report instead of article, ran
texhash, and still got the reconfigure error.

You said:
> Hmm. That looks like a successful reconfigure to me. Try this again now from
> inside your LyX user directory. To verify where that is, go to
> Tools>Preferences, User Interface, hit "Browse" and then "User Files". This
> will dump you into a subdirectory of your user directory. Worth doing just
> to make sure.

 I verified the directory and ran the python command.  Here is my
terminal line I typed and its response.

dhcp-226-212:~ mikemartell$ python
/Applications/LyX.app/contents/Resources/ui/configure.py
/System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python:
can't open file
'/Applications/LyX.app/contents/Resources/ui/configure.py': [Errno 2]
No such file or directory

I really appreciate your being so helpful.
Mike

On Wed, Oct 22, 2008 at 10:43 AM, Richard Heck <[EMAIL PROTECTED]> wrote:
> Mike Martell wrote:
>>
>> I looked throught the authesis.cls file and did not find a line that said
>> /LoadClass
>> line.
>>
>>
>
> I just had a look, too. Looks like it was hacked from ucthesis, which was a
> modification of report. So I'd try:
>   Input report.layout
> and modify anything that needs modifying.
>
> rh
>
>


Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
I followed your directions. you said (thanks for being so explicit
):
That is, in Terminal, type:

cd  ~/Library/Application\ Support/LyX-1.5/

to get to the user directory. Then type:

python /Applications/LyX.app/Contents/Resources/configure.py

to reconfigure. (Note that in this line there is no "/ui" before "configure".)


I still did not have luck.

Is this perhaps because i have placed my files in the wrong spot?
Should the authesis.layout file i made be with all the other layout
files?  in Applications/LyX.app/Contents/Resources/layouts/  instead
of in username/Library/Application Support/Lyx-1.5/layouts ?

And perhaps, these files (authesis.cls, aucas.clo, aut10.clo,
auecon.clo) should not be in this location:
users/username/library/texmf/tex/latex/authesis/

Once again, thank you very much.
Mike

On Wed, Oct 22, 2008 at 1:09 PM, Bennett Helm <[EMAIL PROTECTED]> wrote:
> On Wed, Oct 22, 2008 at 11:28 AM, Richard Heck <[EMAIL PROTECTED]> wrote:
>>
>> Mike Martell wrote:
>>>
>>> I changed the layout file. to read report instead of article, ran
>>> texhash, and still got the reconfigure error.
>>>
>>> You said:
>>>
>>>>
>>>> Hmm. That looks like a successful reconfigure to me. Try this again now
>>>> from
>>>> inside your LyX user directory. To verify where that is, go to
>>>> Tools>Preferences, User Interface, hit "Browse" and then "User Files".
>>>> This
>>>> will dump you into a subdirectory of your user directory. Worth doing
>>>> just
>>>> to make sure.
>>>>
>>>
>>>  I verified the directory and ran the python command.  Here is my
>>> terminal line I typed and its response.
>>>
>>> dhcp-226-212:~ mikemartell$ python
>>> /Applications/LyX.app/contents/Resources/ui/configure.py
>>>
>>> /System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python:
>>> can't open file
>>> '/Applications/LyX.app/contents/Resources/ui/configure.py': [Errno 2]
>>> No such file or directory
>>>
>>>
>>
>> You need to type exactly the same thing you did last time, whatever that
>> was, but to do it from inside the LyX user directory.
>
> That is, in Terminal, type:
> cd  ~/Library/Application\ Support/LyX-1.5/
> to get to the user directory. Then type:
> python /Applications/LyX.app/Contents/Resources/configure.py
> to reconfigure. (Note that in this line there is no "/ui" before
> "configure".)
> Bennett


Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
cking for "wmf2eps"...   no
checking for an EMF -> EPS converter...
+checking for "metafile2eps"...   no
+checking for "wmf2eps"...   no
checking for an EPS -> PDF converter...
+checking for "epstopdf"...   yes
checking for a Grace -> Image converter...
+checking for "gracebat"...   no
checking for a Dot -> PDF converter...
+checking for "dot"...   no
checking for a LilyPond -> EPS/PDF/PNG converter...
+checking for "lilypond"...   no
checking for a Noteedit -> LilyPond converter...
+checking for "noteedit"...   no
checking for SGML-tools 1.x (LinuxDoc)...
+checking for "sgml2lyx"...   no
checking for SGML-tools 2.x (DocBook) or db2x scripts...
+checking for "sgmltools"...   no
+checking for "db2dvi"...   no
Checking whether TeX allows spaces in file names...  yes
checking for a *roff formatter...
+checking for "groff"...   yes
checking for an index processor...
+checking for "texindy"...   yes
checking for ChkTeX...
+checking for "chktex"...   no
checking for a spellchecker...
+checking for "ispell"...   no
checking for a spool command...
+checking for "lp"...   yes
checking LaTeX configuration... auto
Wrong input layout file with line '\\DeclareLaTeXClass[authesis]\{authesis\}\


Can you tell me what the error means?

You've been so helpful thus far--thank you very, very much.
mike

On Wed, Oct 22, 2008 at 1:47 PM, Richard Heck <[EMAIL PROTECTED]> wrote:
> Mike Martell wrote:
>>
>> I followed your directions. you said (thanks for being so explicit
>> ):
>> That is, in Terminal, type:
>>
>> cd  ~/Library/Application\ Support/LyX-1.5/
>>
>> to get to the user directory. Then type:
>>
>> python /Applications/LyX.app/Contents/Resources/configure.py
>>
>> to reconfigure. (Note that in this line there is no "/ui" before
>> "configure".)
>>
>>
>
> So what was the output in this case? Did configure complete, or did it die
> with an error?
>
>> Is this perhaps because i have placed my files in the wrong spot?
>> Should the authesis.layout file i made be with all the other layout
>> files?  in Applications/LyX.app/Contents/Resources/layouts/  instead
>> of in username/Library/Application Support/Lyx-1.5/layouts ?
>>
>>
>
> The layout files should be in ~/Library/Application\
> Support/LyX-1.5/layouts/. The "username" bit is meant to indicate your main
> user directory, whatever that is. That's what ~ gets you, and also should be
> the content of the $HOME environment variable. So if you do:
>> echo $HOME
> you'll get your home directory back.
>
>> And perhaps, these files (authesis.cls, aucas.clo, aut10.clo,
>> auecon.clo) should not be in this location:
>> users/username/library/texmf/tex/latex/authesis/
>>
>>
>
> If kpsewhich is seeing them, then they are fine. So you might want to check
> that again:
>> kpsewhich authesis.cls
>
> rh
>
>


Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
gt; PS converter...
+checking for "tiff2ps"...   no
checking for a TGIF -> EPS/PPM converter...
+checking for "tgif"...   no
checking for a WMF -> EPS converter...
+checking for "metafile2eps"...   no
+checking for "wmf2eps"...   no
checking for an EMF -> EPS converter...
+checking for "metafile2eps"...   no
+checking for "wmf2eps"...   no
checking for an EPS -> PDF converter...
+checking for "epstopdf"...   yes
checking for a Grace -> Image converter...
+checking for "gracebat"...   no
checking for a Dot -> PDF converter...
+checking for "dot"...   no
checking for a LilyPond -> EPS/PDF/PNG converter...
+checking for "lilypond"...   no
checking for a Noteedit -> LilyPond converter...
+checking for "noteedit"...   no
checking for SGML-tools 1.x (LinuxDoc)...
+checking for "sgml2lyx"...   no
checking for SGML-tools 2.x (DocBook) or db2x scripts...
+checking for "sgmltools"...   no
+checking for "db2dvi"...   no
Checking whether TeX allows spaces in file names...  yes
checking for a *roff formatter...
+checking for "groff"...   yes
checking for an index processor...
+checking for "texindy"...   yes
checking for ChkTeX...
+checking for "chktex"...   no
checking for a spellchecker...
+checking for "ispell"...   no
checking for a spool command...
+checking for "lp"...   yes
checking LaTeX configuration... auto
+Inspecting your LaTeX configuration.
+checking for LaTeX version... 2005/12/01
+checking for available hyphenation patterns... english, usenglishmax, dumylang
+checking for default encoding (this may take a long time)
+  checking for ec fonts... yes
+  checking for ec support in LaTeX format... yes
+checking for document class IEEEtran [IEEEtran]... yes
+checking for document class aapaper [aa]... no
+checking for document class aastex [aastex]... yes
+checking for document class aa [aa]... no
+checking for docbook  class agu-dtd...  no
+checking for document class agums [aguplus,agums.sty]... no
+checking for document class amsart-plain [amsart]... yes
+checking for document class amsart-seq [amsart]... yes
+checking for document class amsart [amsart]... yes
+checking for document class amsbook [amsbook]... yes
+checking for document class apa [apa,apacite.sty]... yes
+checking for document class arab-article [arabart]... yes
+checking for document class armenian-article [article]... yes
+checking for document class article-beamer [article]... yes
+checking for document class article [article]... yes
+checking for package algorithm [algorithm]... yes
+checking for package array [array]... yes
+checking for package babel [babel]... yes
+checking for package bibtopic [bibtopic]... yes
+checking for package bm [bm]... yes
+checking for package booktabs [booktabs]... yes
+checking for package color [color]... yes
+checking for package dvipost [dvipost]... no
+checking for package esint [esint]... yes
+checking for package fancybox [fancybox]... yes
+checking for package fancyhdr [fancyhdr]... yes
+checking for package framed [framed]... yes
+checking for package geometry [geometry]... yes
+checking for package jurabib [jurabib]... yes
+checking for package latex8 [latex8]... no
+checking for package listings [listings]... yes
+checking for package longtable [longtable]... yes
+checking for package natbib [natbib]... yes
+checking for package nicefrac [nicefrac]... yes
+checking for package nomencl [nomencl]... yes
+checking for package pdfcolmk [pdfcolmk]... yes
+checking for package prettyref [prettyref]... yes
+checking for package preview [preview]... yes
+checking for package rotating [rotating]... yes
+checking for package setspace [setspace]... yes
+checking for package soul [soul]... yes
+checking for package subfigure [subfigure]... yes
+checking for package textcomp [textcomp]... yes
+checking for package units [units]... yes
+checking for package url [url]... yes
+checking for package varioref [varioref]... yes
+checking for package wrapfig [wrapfig]... yes
+checking for package xcolor [xcolor]... yes
+checking for package graphicx [graphicx]... yes
+checking for graphics driver... dvips
+checking for package psnfss [times.sty]... yes
+checking for package avant [avant]... yes
+checking for package bookman [bookman]... yes
+checking for package chancery [chancery]... yes
+checking for package charter [charter]... yes
+checking for package mathpazo [mathpazo]... yes
+checking for package mathpple [mathpple]... yes
+checking for package mathptm [mathptm]... yes
+checking for package mathptmx [mathptmx]... yes
+checking for package newcent [newcent]... yes
+checking for package utopia [utopia]... yes
+checking for package ae [ae]... yes
+checking for package bera [bera]... yes
+checking for package ccfonts [ccfonts]... yes
+checking for package cmbright [cmbright]... yes
+checking 

Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
nt class moderncv [moderncv]... yes
+checking for document class mwart [mwart]... yes
+checking for document class mwbk [mwbk]... yes
+checking for document class mwrep [mwrep]... yes
+checking for document class paper [paper]... yes
+checking for document class powerdot [powerdot,enumitem.sty,pstricks.sty,xkeyv
+checking for document class report [report]... yes
+checking for document class revtex4 [revtex4]... yes
+checking for document class revtex [revtex]... yes
+checking for document class scrartcl [scrartcl]... yes
+checking for document class scrarticle-beamer [scrartcl]... yes
+checking for document class scrbook [scrbook]... yes
+checking for document class scrlettr [scrlettr]... yes
+checking for document class scrlttr2 [scrlttr2]... yes
+checking for document class scrreprt [scrreprt]... yes
+checking for document class seminar [seminar]... yes
+checking for document class siamltex [siamltex]... no
+checking for document class simplecv [simplecv]... yes
+checking for document class slides [slides]... yes
+checking for document class spie [spie]... yes
+checking for document class svglobal [svjour,svglobal.clo]... no
+checking for document class svjog [svjour,svjog.clo]... no
+checking for document class svprobth [svjour,svprobth.clo]... no
+checking for package algorithm [algorithm]... yes
+checking for package array [array]... yes
+checking for package babel [babel]... yes
+checking for package bibtopic [bibtopic]... yes
+checking for package bm [bm]... yes
+checking for package booktabs [booktabs]... yes
+checking for package color [color]... yes
+checking for package dvipost [dvipost]... no
+checking for package esint [esint]... yes
+checking for package fancybox [fancybox]... yes
+checking for package fancyhdr [fancyhdr]... yes
+checking for package framed [framed]... yes
+checking for package geometry [geometry]... yes
+checking for package jurabib [jurabib]... yes
+checking for package latex8 [latex8]... no
+checking for package listings [listings]... yes
+checking for package longtable [longtable]... yes
+checking for package natbib [natbib]... yes
+checking for package nicefrac [nicefrac]... yes
+checking for package nomencl [nomencl]... yes
+checking for package pdfcolmk [pdfcolmk]... yes
+checking for package prettyref [prettyref]... yes
+checking for package preview [preview]... yes
+checking for package rotating [rotating]... yes
+checking for package setspace [setspace]... yes
+checking for package soul [soul]... yes
+checking for package subfigure [subfigure]... yes
+checking for package textcomp [textcomp]... yes
+checking for package units [units]... yes
+checking for package url [url]... yes
+checking for package varioref [varioref]... yes
+checking for package wrapfig [wrapfig]... yes
+checking for package xcolor [xcolor]... yes
+checking for package graphicx [graphicx]... yes
+checking for graphics driver... dvips
+checking for package psnfss [times.sty]... yes
+checking for package avant [avant]... yes
+checking for package bookman [bookman]... yes
+checking for package chancery [chancery]... yes
+checking for package charter [charter]... yes
+checking for package mathpazo [mathpazo]... yes
+checking for package mathpple [mathpple]... yes
+checking for package mathptm [mathptm]... yes
+checking for package mathptmx [mathptmx]... yes
+checking for package newcent [newcent]... yes
+checking for package utopia [utopia]... yes
+checking for package ae [ae]... yes
+checking for package bera [bera]... yes
+checking for package ccfonts [ccfonts]... yes
+checking for package cmbright [cmbright]... yes
+checking for package eco [eco]... yes
+checking for package fourier [fourier]... yes
+checking for package lmodern [lmodern]... yes
+checking for package luximono [luximono]... no
+checking for package tipa [tipa]... yes
+Inspection done.
+Read the file doc/LaTeXConfig.lyx for more information.
creating packages.lst
creating doc/LaTeXConfig.lyx



On Wed, Oct 22, 2008 at 5:42 PM, rgheck <[EMAIL PROTECTED]> wrote:
> Mike Martell wrote:
>>
>> Thanks.  I changed the layout file as you suggested:
>>
>> #% Do not delete the line below; configure depends on this #
>> #\DeclareLaTeXClass{authesis}
>> # Read the definitions from report.layout
>> Input report.layout
>>
>> and here is the output from terminal.  It looks like it worked (?).  I
>> open LyX and my class is not available, and if I configure I still get
>> the error.  Can you help again?,  thanks.
>>
>>
>
> It seems to have died at authesis again:
>>
>> +checking for document class IEEEtran [IEEEtran]... yes
>> +checking for document class aapaper [aa]... no
>> +checking for document class aastex [aastex]... yes
>> +checking for document class aa [aa]... no
>> +checking for docbook  class agu-dtd...  no
>> +checking for document class agums [aguplus,agums.sty]... no
>> +checking for documen

Re: install thesis class, Mac

2008-10-22 Thread Mike Martell
I'm sorry.  I may have spoke too soon.  Now, when I try to make a
sample document, when i try to view pdflatex, I get five latex errors.
 all of them say "undefined control sequence."

do you know why i would get this?


On Wed, Oct 22, 2008 at 6:04 PM, Mike Martell <[EMAIL PROTECTED]> wrote:
> I deleted textclass.lst from username/
> (was this the correct location?)
>
> I placed the layout file you mailed me in username/Library/Application
> Support/LyX-1.5/layouts/
>
> When i open LyX, select new -> go to documents, settings, class I can
> select authesis!
> It looks like I am set! (right?!)
>
> You have been unbelievabley patient and helpful. Thank you very, very much.
>
> I open terminal and type:
>
> dhcp-228-146:LyX-1.5 mikemartell$ cd ~/Library/Application\
> Support/LyX-1.5/dhcp-228-146:LyX-1.5 mikemartell$ python
> /Applications/LyX.app/Contents/Resources/configure.py
> checking for a Latex2e program...
> +checking for "latex"...   yes
> checking for a DVI postprocessing program...
> +checking for "pplatex"...   no
> checking for a Tgif viewer and editor...
> +checking for "tgif"...   no
> checking for a FIG viewer and editor...
> +checking for "xfig"...   no
> checking for a Grace viewer and editor...
> +checking for "xmgrace"...   no
> checking for a FEN viewer and editor...
> +checking for "xboard"...   no
> checking for a raster image viewer...
> +checking for "xv"...   no
> +checking for "kview"...   no
> +checking for "gimp-remote"...   no
> +checking for "gimp"...   no
> checking for a raster image editor...
> +checking for "gimp-remote"...   no
> +checking for "gimp"...   no
> checking for a text editor...
> +checking for "sensible-editor"...   no
> +checking for "xemacs"...   no
> +checking for "gvim"...   no
> +checking for "kedit"...   no
> +checking for "kwrite"...   no
> +checking for "kate"...   no
> +checking for "nedit"...   no
> +checking for "gedit"...   no
> +checking for "notepad"...   no
> checking for a Postscript previewer...
> +checking for "kghostview"...   no
> +checking for "evince"...   no
> +checking for "gv"...   no
> +checking for "ghostview"...   no
> checking for a PDF previewer...
> +checking for "kpdf"...   no
> +checking for "evince"...   no
> +checking for "kghostview"...   no
> +checking for "xpdf"...   no
> +checking for "acrobat"...   no
> +checking for "acroread"...   no
> +checking for "gv"...   no
> +checking for "ghostview"...   no
> checking for a DVI previewer...
> +checking for "xdvi"...   yes
> checking for an HTML previewer...
> +checking for "firefox"...   no
> +checking for "mozilla"...   no
> +checking for "netscape"...   no
> checking for Noteedit...
> +checking for "noteedit"...   no
> checking for an OpenDocument viewer...
> +checking for "oowriter"...   no
> checking for the pdflatex program...
> +checking for "pdflatex"...   yes
> checking for a LaTeX/Noweb -> LyX converter...
> +checking for "tex2lyx"...   no
> +checking for "tex2lyx"...   no
> checking for a Noweb -> LaTeX converter...
> +checking for "noweave"...   no
> checking for an HTML -> LaTeX converter...
> +checking for "html2latex"...   no
> +checking for "gnuhtml2latex"...   no
> +checking for "htmltolatex"...   no
> +checking for "java"...   yes
> checking for an MS Word -> LaTeX converter...
> +checking for "wvCleanLatex"...   no
> checking for a LaTeX -> HTML converter...
> +checking for "htlatex"...   yes
> checking for a LaTeX -> MS Word converter...
> +checking for "htlatex"...   yes
> checking for an OpenOffice.org -> LaTeX converter...
> +checking for "w2l"...   no
> checking for an OpenDocument -> LaTeX converter...
> +checking for "w2l"...   no
> checking for a LaTeX -> Open Document converter...
> +checking for "htlatex"...   yes
> checking for a LaTeX -> RTF converter...
> +checking for "latex2rtf"...   no
> +checking for "latex2rt"...   no
> checking for a PS to PDF converter...
> +checking for "ps2pdf13"...   yes
> checking for a PS to TXT converter...
> +checking for "pstotext"...   no
> checking for a PS to TXT converter...
> +checking for &

install thesis class, Mac

2008-10-21 Thread Mike Martell
Hi:
I've been having a lot of trouble installing a new class for LyX with
my mac.  I am hoping to use LyX to write my doctoral dissertation.  I
am trying to install the thesis class for my university, authesis.cls.

I have followed the directions, I believe, but am not getting the class to work.

I have placed these files (authesis.cls, aucas.clo, aut10.clo,
auecon.clo) in this location:

users/username/library/texmf/tex/latex/authesis/


i have placed a layout file (authesis.layout) at this location:

username/libarary/Application Support/Lyx-1.5/layouts

The layout file reads:
#% Do not delete hte line below; configure depens on this
# \DeclareLaTeXClass[authesis]{article (authesis)}

# Input general definitions
Input stdclass.inc

After doing this, I open terminal typed texhash and then quit terminal
I went to LyX, reconfigure and i get an error message that says, The
system reconfiguration has failed. Default textclass is used but LyX
may not be able to work properly. Please reconfigure again if needed.
I close LyX, start it again, and then if I go to Document, Settings, I
do not see the authesis in the document class menu(and the number of
classes I have listed is now much smaller than before i tried to
install this class).

Can someone help?  I would very greatly appreciate it!  I am very new
to both LyX and my Mac.
Thanks,
Mike


Re: install thesis class, Mac

2008-10-21 Thread Mike Martell
Thanks for your response.
I updated my layout file to read:

#% Do not delete the line below; configure depends on this
#  \DeclareLaTeXClass[authesis]{article (authesis)}
Format 4
# Input general definitions
Input article.layout

and I tried kpsewhich authesis.cls in the terminal.  the response was
the location of the file.  I noticed that when I tried texhash,
terminal told me that it was not writeable, so I tried sudo texhash
and it gave me the same response as kpsewhich.  I still get the same
error message in LyX.

I don't under stand your last recommendation:
What I'd suggest is to try to run the reconfigure directly from
/users/username/libarary/Application Support/Lyx-1.5/. I.e., open a
terminal, go to that directory, and then run python
/path/to/configure.py. If you can't figure out where that file is,
someone else will know. Anyway, you'll get more helpful error messages
then.

do i open terminal, type in the location of the class file?  i.e.
/users/username/library/texmf/tex/latex/authesis/  or the location of
the layouts: username/libarary/Application Support/Lyx-1.5/layouts .
and then I type python/path/to/configure.py in terminal? when I
tried this, it said -bash ... doesn't exist

thanks so much for your insight.
mike


On Tue, Oct 21, 2008 at 7:45 PM, rgheck [EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 Hi:
 I've been having a lot of trouble installing a new class for LyX with
 my mac.  I am hoping to use LyX to write my doctoral dissertation.  I
 am trying to install the thesis class for my university, authesis.cls.

 I have followed the directions, I believe, but am not getting the class to
 work.

 I have placed these files (authesis.cls, aucas.clo, aut10.clo,
 auecon.clo) in this location:

 users/username/library/texmf/tex/latex/authesis/



 OK, this is a very silly question, but did you replace username with your
 username?

 rh

 i have placed a layout file (authesis.layout) at this location:

 username/libarary/Application Support/Lyx-1.5/layouts

 The layout file reads:
 #% Do not delete hte line below; configure depens on this



 Typos. I don't think they matter, though.

 # \DeclareLaTeXClass[authesis]{article (authesis)}



 You might need a format tag here, viz:

   Format 4

 # Input general definitions
 Input stdclass.inc



 I'd try Input article.layout instead, and get the whole thing.

 After doing this, I open terminal typed texhash


 Try kpsewhich authesis.cls. If you don't get a sensible response, then TeX
 hasn't found it.

 and then quit terminal
 I went to LyX, reconfigure and i get an error message that says, The
 system reconfiguration has failed. Default textclass is used but LyX
 may not be able to work properly. Please reconfigure again if needed.
 I close LyX, start it again, and then if I go to Document, Settings, I
 do not see the authesis in the document class menu(and the number of
 classes I have listed is now much smaller than before i tried to
 install this class).



 That's because of the reconfigure failure.

 What I'd suggest is to try to run the reconfigure directly from
 /users/username/libarary/Application Support/Lyx-1.5/. I.e., open a
 terminal, go to that directory, and then run python /path/to/configure.py.
 If you can't figure out where that file is, someone else will know. Anyway,
 you'll get more helpful error messages then.

 rh




Re: install thesis class, Mac

2008-10-21 Thread Mike Martell
Thanks again.  I took your advice.  I located configure.py  I opened
terminal, typed:
# cd /tmp/

then,

#python/library/applications/lyx.app/content/resources/configure.py

Then, I opened LyX, and tried to reconfigure.  I got the same error
message that the configure did not work.  Is it of interest that if I
go to, Tools-Tex Information, I see authesis under the list of
classes?

I really appreciate your help so far!  thanks, mike

On Tue, Oct 21, 2008 at 9:19 PM, rgheck [EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 Thanks for your response.
 I updated my layout file to read:

 #% Do not delete the line below; configure depends on this
 #  \DeclareLaTeXClass[authesis]{article (authesis)}
 Format 4
 # Input general definitions
 Input article.layout

 and I tried kpsewhich authesis.cls in the terminal.  the response was
 the location of the file.  I noticed that when I tried texhash,
 terminal told me that it was not writeable,


 That's normal, since texhash wants to update lots of files, some of which
 you wouldn't be able to write.

 so I tried sudo texhash
 and it gave me the same response as kpsewhich.  I still get the same
 error message in LyX.

 I don't under stand your last recommendation:
 What I'd suggest is to try to run the reconfigure directly from
 /users/username/libarary/Application Support/Lyx-1.5/. I.e., open a
 terminal, go to that directory, and then run python
 /path/to/configure.py. If you can't figure out where that file is,
 someone else will know. Anyway, you'll get more helpful error messages
 then.



 When you hit ToolsConfigure, what it actually does is run the configure.py
 python script and write a bunch of files to your user directory. One of
 these, for example, is textclass.lst, which contains a list of all the
 layout files configure.py finds and some information about them. You can run
 this configure.py script from outside LyX, and that's what we want to do.
 But we have to run it from your user directory, that is, from where
 configure.py is, since the file will write the next textclass.lst to the
 directory from which you run it.

 That said, you CAN run it from anywhere, and since we're just debugging you
 can run it from /tmp/, and then it won't actually change any of your files.
 What we want is error messages right now.

 do i open terminal, type in the location of the class file?  i.e.
 /users/username/library/texmf/tex/latex/authesis/  or the location of
 the layouts: username/libarary/Application Support/Lyx-1.5/layouts.



 For now:
 # cd /tmp/
 but for real:
 # cd username/library/Application Support/Lyx-1.5/
 That ought to be where textclass.lst lives.

 and then I type python/path/to/configure.py in terminal? when I
 tried this, it said -bash ... doesn't exist



 Type:
 # python /path/to/configure.py
 where the /path/to/ part is replaced by the actual path to configure.py. I
 don't know what that is on your machine, because I'm not on Mac. (On my
 machine, it would be: /usr/local/share/lyx/configure.py, but this probably
 isn't right for you.) But maybe you can try:
 # locate configure.py
 I don't know if locate is available on Mac, though.

 I'm cc'ing Bennett, as he knows about Mac stuff.

 rh




install thesis class, Mac

2008-10-21 Thread Mike Martell
Hi:
I've been having a lot of trouble installing a new class for LyX with
my mac.  I am hoping to use LyX to write my doctoral dissertation.  I
am trying to install the thesis class for my university, authesis.cls.

I have followed the directions, I believe, but am not getting the class to work.

I have placed these files (authesis.cls, aucas.clo, aut10.clo,
auecon.clo) in this location:

users/username/library/texmf/tex/latex/authesis/


i have placed a layout file (authesis.layout) at this location:

username/libarary/Application Support/Lyx-1.5/layouts

The layout file reads:
#% Do not delete hte line below; configure depens on this
# \DeclareLaTeXClass[authesis]{article (authesis)}

# Input general definitions
Input stdclass.inc

After doing this, I open terminal typed texhash and then quit terminal
I went to LyX, reconfigure and i get an error message that says, The
system reconfiguration has failed. Default textclass is used but LyX
may not be able to work properly. Please reconfigure again if needed.
I close LyX, start it again, and then if I go to Document, Settings, I
do not see the authesis in the document class menu(and the number of
classes I have listed is now much smaller than before i tried to
install this class).

Can someone help?  I would very greatly appreciate it!  I am very new
to both LyX and my Mac.
Thanks,
Mike


Re: install thesis class, Mac

2008-10-21 Thread Mike Martell
Thanks for your response.
I updated my layout file to read:

#% Do not delete the line below; configure depends on this
#  \DeclareLaTeXClass[authesis]{article (authesis)}
Format 4
# Input general definitions
Input article.layout

and I tried kpsewhich authesis.cls in the terminal.  the response was
the location of the file.  I noticed that when I tried texhash,
terminal told me that it was not writeable, so I tried sudo texhash
and it gave me the same response as kpsewhich.  I still get the same
error message in LyX.

I don't under stand your last recommendation:
What I'd suggest is to try to run the reconfigure directly from
/users/username/libarary/Application Support/Lyx-1.5/. I.e., open a
terminal, go to that directory, and then run python
/path/to/configure.py. If you can't figure out where that file is,
someone else will know. Anyway, you'll get more helpful error messages
then.

do i open terminal, type in the location of the class file?  i.e.
/users/username/library/texmf/tex/latex/authesis/  or the location of
the layouts: username/libarary/Application Support/Lyx-1.5/layouts .
and then I type python/path/to/configure.py in terminal? when I
tried this, it said -bash ... doesn't exist

thanks so much for your insight.
mike


On Tue, Oct 21, 2008 at 7:45 PM, rgheck [EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 Hi:
 I've been having a lot of trouble installing a new class for LyX with
 my mac.  I am hoping to use LyX to write my doctoral dissertation.  I
 am trying to install the thesis class for my university, authesis.cls.

 I have followed the directions, I believe, but am not getting the class to
 work.

 I have placed these files (authesis.cls, aucas.clo, aut10.clo,
 auecon.clo) in this location:

 users/username/library/texmf/tex/latex/authesis/



 OK, this is a very silly question, but did you replace username with your
 username?

 rh

 i have placed a layout file (authesis.layout) at this location:

 username/libarary/Application Support/Lyx-1.5/layouts

 The layout file reads:
 #% Do not delete hte line below; configure depens on this



 Typos. I don't think they matter, though.

 # \DeclareLaTeXClass[authesis]{article (authesis)}



 You might need a format tag here, viz:

   Format 4

 # Input general definitions
 Input stdclass.inc



 I'd try Input article.layout instead, and get the whole thing.

 After doing this, I open terminal typed texhash


 Try kpsewhich authesis.cls. If you don't get a sensible response, then TeX
 hasn't found it.

 and then quit terminal
 I went to LyX, reconfigure and i get an error message that says, The
 system reconfiguration has failed. Default textclass is used but LyX
 may not be able to work properly. Please reconfigure again if needed.
 I close LyX, start it again, and then if I go to Document, Settings, I
 do not see the authesis in the document class menu(and the number of
 classes I have listed is now much smaller than before i tried to
 install this class).



 That's because of the reconfigure failure.

 What I'd suggest is to try to run the reconfigure directly from
 /users/username/libarary/Application Support/Lyx-1.5/. I.e., open a
 terminal, go to that directory, and then run python /path/to/configure.py.
 If you can't figure out where that file is, someone else will know. Anyway,
 you'll get more helpful error messages then.

 rh




Re: install thesis class, Mac

2008-10-21 Thread Mike Martell
Thanks again.  I took your advice.  I located configure.py  I opened
terminal, typed:
# cd /tmp/

then,

#python/library/applications/lyx.app/content/resources/configure.py

Then, I opened LyX, and tried to reconfigure.  I got the same error
message that the configure did not work.  Is it of interest that if I
go to, Tools-Tex Information, I see authesis under the list of
classes?

I really appreciate your help so far!  thanks, mike

On Tue, Oct 21, 2008 at 9:19 PM, rgheck [EMAIL PROTECTED] wrote:
 Mike Martell wrote:

 Thanks for your response.
 I updated my layout file to read:

 #% Do not delete the line below; configure depends on this
 #  \DeclareLaTeXClass[authesis]{article (authesis)}
 Format 4
 # Input general definitions
 Input article.layout

 and I tried kpsewhich authesis.cls in the terminal.  the response was
 the location of the file.  I noticed that when I tried texhash,
 terminal told me that it was not writeable,


 That's normal, since texhash wants to update lots of files, some of which
 you wouldn't be able to write.

 so I tried sudo texhash
 and it gave me the same response as kpsewhich.  I still get the same
 error message in LyX.

 I don't under stand your last recommendation:
 What I'd suggest is to try to run the reconfigure directly from
 /users/username/libarary/Application Support/Lyx-1.5/. I.e., open a
 terminal, go to that directory, and then run python
 /path/to/configure.py. If you can't figure out where that file is,
 someone else will know. Anyway, you'll get more helpful error messages
 then.



 When you hit ToolsConfigure, what it actually does is run the configure.py
 python script and write a bunch of files to your user directory. One of
 these, for example, is textclass.lst, which contains a list of all the
 layout files configure.py finds and some information about them. You can run
 this configure.py script from outside LyX, and that's what we want to do.
 But we have to run it from your user directory, that is, from where
 configure.py is, since the file will write the next textclass.lst to the
 directory from which you run it.

 That said, you CAN run it from anywhere, and since we're just debugging you
 can run it from /tmp/, and then it won't actually change any of your files.
 What we want is error messages right now.

 do i open terminal, type in the location of the class file?  i.e.
 /users/username/library/texmf/tex/latex/authesis/  or the location of
 the layouts: username/libarary/Application Support/Lyx-1.5/layouts.



 For now:
 # cd /tmp/
 but for real:
 # cd username/library/Application Support/Lyx-1.5/
 That ought to be where textclass.lst lives.

 and then I type python/path/to/configure.py in terminal? when I
 tried this, it said -bash ... doesn't exist



 Type:
 # python /path/to/configure.py
 where the /path/to/ part is replaced by the actual path to configure.py. I
 don't know what that is on your machine, because I'm not on Mac. (On my
 machine, it would be: /usr/local/share/lyx/configure.py, but this probably
 isn't right for you.) But maybe you can try:
 # locate configure.py
 I don't know if locate is available on Mac, though.

 I'm cc'ing Bennett, as he knows about Mac stuff.

 rh




install thesis class, Mac

2008-10-21 Thread Mike Martell
Hi:
I've been having a lot of trouble installing a new class for LyX with
my mac.  I am hoping to use LyX to write my doctoral dissertation.  I
am trying to install the thesis class for my university, authesis.cls.

I have followed the directions, I believe, but am not getting the class to work.

I have placed these files (authesis.cls, aucas.clo, aut10.clo,
auecon.clo) in this location:

users/username/library/texmf/tex/latex/authesis/


i have placed a layout file (authesis.layout) at this location:

username/libarary/Application Support/Lyx-1.5/layouts

The layout file reads:
#% Do not delete hte line below; configure depens on this
# \DeclareLaTeXClass[authesis]{article (authesis)}

# Input general definitions
Input stdclass.inc

After doing this, I open terminal typed "texhash" and then quit terminal
I went to LyX, reconfigure and i get an error message that says, "The
system reconfiguration has failed. Default textclass is used but LyX
may not be able to work properly. Please reconfigure again if needed."
I close LyX, start it again, and then if I go to Document, Settings, I
do not see the authesis in the document class menu(and the number of
classes I have listed is now much smaller than before i tried to
install this class).

Can someone help?  I would very greatly appreciate it!  I am very new
to both LyX and my Mac.
Thanks,
Mike


Re: install thesis class, Mac

2008-10-21 Thread Mike Martell
Thanks for your response.
I updated my layout file to read:

#% Do not delete the line below; configure depends on this
#  \DeclareLaTeXClass[authesis]{article (authesis)}
Format 4
# Input general definitions
Input article.layout

and I tried kpsewhich authesis.cls in the terminal.  the response was
the location of the file.  I noticed that when I tried texhash,
terminal told me that it was not writeable, so I tried sudo texhash
and it gave me the same response as kpsewhich.  I still get the same
error message in LyX.

I don't under stand your last recommendation:
What I'd suggest is to try to run the reconfigure directly from
/users/username/libarary/Application Support/Lyx-1.5/. I.e., open a
terminal, go to that directory, and then run "python
/path/to/configure.py". If you can't figure out where that file is,
someone else will know. Anyway, you'll get more helpful error messages
then.

do i open terminal, type in the location of the class file?  i.e.
/users/username/library/texmf/tex/latex/authesis/  or the location of
the layouts: username/libarary/Application Support/Lyx-1.5/layouts .
and then I type "python/path/to/configure.py" in terminal? when I
tried this, it said -bash ... doesn't exist

thanks so much for your insight.
mike


On Tue, Oct 21, 2008 at 7:45 PM, rgheck <[EMAIL PROTECTED]> wrote:
> Mike Martell wrote:
>>
>> Hi:
>> I've been having a lot of trouble installing a new class for LyX with
>> my mac.  I am hoping to use LyX to write my doctoral dissertation.  I
>> am trying to install the thesis class for my university, authesis.cls.
>>
>> I have followed the directions, I believe, but am not getting the class to
>> work.
>>
>> I have placed these files (authesis.cls, aucas.clo, aut10.clo,
>> auecon.clo) in this location:
>>
>> users/username/library/texmf/tex/latex/authesis/
>>
>>
>
> OK, this is a very silly question, but did you replace "username" with your
> username?
>
> rh
>>
>> i have placed a layout file (authesis.layout) at this location:
>>
>> username/libarary/Application Support/Lyx-1.5/layouts
>>
>> The layout file reads:
>> #% Do not delete hte line below; configure depens on this
>>
>>
>
> Typos. I don't think they matter, though.
>
>> # \DeclareLaTeXClass[authesis]{article (authesis)}
>>
>>
>
> You might need a format tag here, viz:
>
>   Format 4
>
>> # Input general definitions
>> Input stdclass.inc
>>
>>
>
> I'd try Input article.layout instead, and get the whole thing.
>
>> After doing this, I open terminal typed "texhash"
>>
>
> Try "kpsewhich authesis.cls". If you don't get a sensible response, then TeX
> hasn't found it.
>
>> and then quit terminal
>> I went to LyX, reconfigure and i get an error message that says, "The
>> system reconfiguration has failed. Default textclass is used but LyX
>> may not be able to work properly. Please reconfigure again if needed."
>> I close LyX, start it again, and then if I go to Document, Settings, I
>> do not see the authesis in the document class menu(and the number of
>> classes I have listed is now much smaller than before i tried to
>> install this class).
>>
>>
>
> That's because of the reconfigure failure.
>
> What I'd suggest is to try to run the reconfigure directly from
> /users/username/libarary/Application Support/Lyx-1.5/. I.e., open a
> terminal, go to that directory, and then run "python /path/to/configure.py".
> If you can't figure out where that file is, someone else will know. Anyway,
> you'll get more helpful error messages then.
>
> rh
>
>


Re: install thesis class, Mac

2008-10-21 Thread Mike Martell
Thanks again.  I took your advice.  I located configure.py  I opened
terminal, typed:
# cd /tmp/

then,

#python/library/applications/lyx.app/content/resources/configure.py

Then, I opened LyX, and tried to reconfigure.  I got the same error
message that the configure did not work.  Is it of interest that if I
go to, Tools->Tex Information, I see authesis under the list of
classes?

I really appreciate your help so far!  thanks, mike

On Tue, Oct 21, 2008 at 9:19 PM, rgheck <[EMAIL PROTECTED]> wrote:
> Mike Martell wrote:
>>
>> Thanks for your response.
>> I updated my layout file to read:
>>
>> #% Do not delete the line below; configure depends on this
>> #  \DeclareLaTeXClass[authesis]{article (authesis)}
>> Format 4
>> # Input general definitions
>> Input article.layout
>>
>> and I tried kpsewhich authesis.cls in the terminal.  the response was
>> the location of the file.  I noticed that when I tried texhash,
>> terminal told me that it was not writeable,
>>
>
> That's normal, since texhash wants to update lots of files, some of which
> you wouldn't be able to write.
>
>> so I tried sudo texhash
>> and it gave me the same response as kpsewhich.  I still get the same
>> error message in LyX.
>>
>> I don't under stand your last recommendation:
>> What I'd suggest is to try to run the reconfigure directly from
>> /users/username/libarary/Application Support/Lyx-1.5/. I.e., open a
>> terminal, go to that directory, and then run "python
>> /path/to/configure.py". If you can't figure out where that file is,
>> someone else will know. Anyway, you'll get more helpful error messages
>> then.
>>
>>
>
> When you hit Tools>Configure, what it actually does is run the configure.py
> python script and write a bunch of files to your user directory. One of
> these, for example, is textclass.lst, which contains a list of all the
> layout files configure.py finds and some information about them. You can run
> this configure.py script from outside LyX, and that's what we want to do.
> But we have to run it from your user directory, that is, from where
> configure.py is, since the file will write the next textclass.lst to the
> directory from which you run it.
>
> That said, you CAN run it from anywhere, and since we're just debugging you
> can run it from /tmp/, and then it won't actually change any of your files.
> What we want is error messages right now.
>
>> do i open terminal, type in the location of the class file?  i.e.
>> /users/username/library/texmf/tex/latex/authesis/  or the location of
>> the layouts: username/libarary/Application Support/Lyx-1.5/layouts.
>>
>>
>
> For now:
> # cd /tmp/
> but for real:
> # cd "username/library/Application Support/Lyx-1.5/
> That ought to be where textclass.lst lives.
>>
>> and then I type "python/path/to/configure.py" in terminal? when I
>> tried this, it said -bash ... doesn't exist
>>
>>
>
> Type:
> # python /path/to/configure.py
> where the "/path/to/" part is replaced by the actual path to configure.py. I
> don't know what that is on your machine, because I'm not on Mac. (On my
> machine, it would be: /usr/local/share/lyx/configure.py, but this probably
> isn't right for you.) But maybe you can try:
> # locate configure.py
> I don't know if locate is available on Mac, though.
>
> I'm cc'ing Bennett, as he knows about Mac stuff.
>
> rh
>
>