Re: Thesis in Spanish using Lyx

2016-04-11 Thread Michael Berger
Andre Miede's classicthesis-LyX-v4.1 is the most excellent template for 
scientific theses I have come across. Its format is beautiful and the 
layout is nicely structured.
It uses the master-child concept and is thus also predestined for large 
documents.

However, you may find it a bit challenging.
It also has some special advice for use with the Spanish language.
So, if your Mexican student is a bit daring he should download it and 
have a look.


http://www.miede.de/

Good luck,
Michael Berger


On 04/11/2016 06:43 PM, Wolfgang Engelmann wrote:
We have a Mexican in our house working on his linguistic PhD Thesis to 
be published in Spanish. He would like to use Lyx. Anybody who could 
help him with a template especially for the first pages (ideally: 
Tübingen University, Germany).

Wolfgang





Re: Thesis formatting

2014-06-09 Thread PhilipPirrip
Remember that the commands in LaTeX are just macros, they collect any 
text and expand it where needed.


What you need is a command in the preamble of your LyX document of this 
kind:


\degree{Master of Science\\ \vspace{\baselineskip} in\\ 
\vspace{\baselineskip} Nuclear Engineering}



As I said, commands containing a @ have only been made for internal 
class use, they are not in user space.




Re: Thesis formatting

2014-06-09 Thread PhilipPirrip
Remember that the commands in LaTeX are just macros, they collect any 
text and expand it where needed.


What you need is a command in the preamble of your LyX document of this 
kind:


\degree{Master of Science\\ \vspace{\baselineskip} in\\ 
\vspace{\baselineskip} Nuclear Engineering}



As I said, commands containing a @ have only been made for internal 
class use, they are not in user space.




Re: Thesis formatting

2014-06-09 Thread PhilipPirrip
Remember that the commands in LaTeX are just macros, they collect any 
text and expand it where needed.


What you need is a command in the preamble of your LyX document of this 
kind:


\degree{Master of Science\\ \vspace{\baselineskip} in\\ 
\vspace{\baselineskip} Nuclear Engineering}



As I said, commands containing a @ have only been made for internal 
class use, they are not in user space.




Re: Thesis formatting

2014-06-04 Thread Steve Burnham


On June 3, 2014 at 17:26:57 PM, PhilipPirrip (p...@net.hr) wrote:

Use  
Insert  Formatting  Vertical space instead of just adding empty lines.  
Then, VFill is a stretchable vertical space that could help you keep the  
things on one page.  


This would work if the cover page was actually written in LyX but instead it is 
defined in the class file.  I specify the degree type in the preamble .  I 
manage to remove the blank page being created but the way the degree is defined 
in the class I am not sure how to break it up.

      {
        \vss
        A \@thesistype ~submitted to the faculty of\\ 
        The University of Utah\\ 
        in partial fulfillment of the requirements for the degree of
        \vss
      }
      \@degree \\

You can see the \@degree\\ simply takes what is written in the preamble and 
pastes in there as one line rather than “Master of Science” double space “In” 
double space “Nuclear Engineering”  I managed to get it formatted properly by 
adding the following in the class file after \@degree \\

 \@degree \\
  \mbox{} \\
  in \\
  \mbox{} \\
  Nuclear Engineering \\
  \mbox{} \\

I would like to make this a little more robust and allow for others to use the 
class file without having to edit it as much as I have.  In the preamble I 
specify the degree by entering after the \degree{} entry so I tried to add 
something like \degreein{} where someone can enter the information and replaced 
“Nuclear Engineering” in the class file with \@degreein but I get compile 
errors.  Is there a better way to go about this?

-Steve











Re: Thesis formatting

2014-06-04 Thread PhilipPirrip
It's hard to guess what you're supposed to have without knowing anything 
about your latex class.
What's obvious from the excerpt you've given is that \@degree is meant 
to be an internal command of the class (because of the @). There must be 
some part of the class file that fills the \@degree command with user's 
data.


Where can we find the class file?




Re: Thesis formatting

2014-06-04 Thread Benedict Holland
Would you be willing to do this in ERT? I find that the first page, cover
page, etc. are notoriously difficult to get correctly specified in Lyx. The
ERT would be someting like
http://tex.stackexchange.com/questions/819/double-line-spacing

Also, it might be linebreak but I think it should be newline. Honestly, I
find that if I have to edit or modify class files and the like, I just find
a library to do it for me and write it up in latex. It seems to be much
easier that way.

\usepackage{setspace}
\begin{centering}
\doublespacing

Masters of Science \newline
in \newline
Nuclear Engineering \newline

\end{centering}

~Ben


On Wed, Jun 4, 2014 at 3:04 PM, Steve Burnham dan...@gmail.com wrote:

 On June 4, 2014 at 12:50:48 PM, PhilipPirrip (p...@net.hr) wrote:

 It's hard to guess what you're supposed to have without knowing anything
 about your latex class.
 What's obvious from the excerpt you've given is that \@degree is meant
 to be an internal command of the class (because of the @). There must be
 some part of the class file that fills the \@degree command with user's
 data.

 Where can we find the class file?



 I’m attaching the class file.  Starting at line 1351 is where I made my
 modifications.  I guess I don’t fully understand how to use the @ command.
  It sounds like I have to define it first earlier in the class file before
 I can add it to my preamble to be defined?

 -Steve



Re: Thesis formatting

2014-06-04 Thread Steve Burnham
On June 4, 2014 at 15:32:27 PM, Benedict Holland (benedict.m.holl...@gmail.com) 
wrote:
Would you be willing to do this in ERT? I find that the first page, cover page, 
etc. are notoriously difficult to get correctly specified in Lyx. The ERT would 
be someting like
http://tex.stackexchange.com/questions/819/double-line-spacing

Also, it might be linebreak but I think it should be newline. Honestly, I find 
that if I have to edit or modify class files and the like, I just find a 
library to do it for me and write it up in latex. It seems to be much easier 
that way. 

\usepackage{setspace}
\begin{centering}
\doublespacing

Masters of Science \newline
in \newline
Nuclear Engineering \newline

\end{centering}

~Ben




I have no problem going the ERT route, especially since it is scattered all 
throughout my document.  Implementing this looks like it works though.  Hard to 
know exactly if the spacing is correct until I print it out and measure it like 
the thesis editors but all appears correct.

-Steve

Re: Thesis formatting

2014-06-04 Thread Steve Burnham


On June 3, 2014 at 17:26:57 PM, PhilipPirrip (p...@net.hr) wrote:

Use  
Insert  Formatting  Vertical space instead of just adding empty lines.  
Then, VFill is a stretchable vertical space that could help you keep the  
things on one page.  


This would work if the cover page was actually written in LyX but instead it is 
defined in the class file.  I specify the degree type in the preamble .  I 
manage to remove the blank page being created but the way the degree is defined 
in the class I am not sure how to break it up.

      {
        \vss
        A \@thesistype ~submitted to the faculty of\\ 
        The University of Utah\\ 
        in partial fulfillment of the requirements for the degree of
        \vss
      }
      \@degree \\

You can see the \@degree\\ simply takes what is written in the preamble and 
pastes in there as one line rather than “Master of Science” double space “In” 
double space “Nuclear Engineering”  I managed to get it formatted properly by 
adding the following in the class file after \@degree \\

 \@degree \\
  \mbox{} \\
  in \\
  \mbox{} \\
  Nuclear Engineering \\
  \mbox{} \\

I would like to make this a little more robust and allow for others to use the 
class file without having to edit it as much as I have.  In the preamble I 
specify the degree by entering after the \degree{} entry so I tried to add 
something like \degreein{} where someone can enter the information and replaced 
“Nuclear Engineering” in the class file with \@degreein but I get compile 
errors.  Is there a better way to go about this?

-Steve











Re: Thesis formatting

2014-06-04 Thread PhilipPirrip
It's hard to guess what you're supposed to have without knowing anything 
about your latex class.
What's obvious from the excerpt you've given is that \@degree is meant 
to be an internal command of the class (because of the @). There must be 
some part of the class file that fills the \@degree command with user's 
data.


Where can we find the class file?




Re: Thesis formatting

2014-06-04 Thread Benedict Holland
Would you be willing to do this in ERT? I find that the first page, cover
page, etc. are notoriously difficult to get correctly specified in Lyx. The
ERT would be someting like
http://tex.stackexchange.com/questions/819/double-line-spacing

Also, it might be linebreak but I think it should be newline. Honestly, I
find that if I have to edit or modify class files and the like, I just find
a library to do it for me and write it up in latex. It seems to be much
easier that way.

\usepackage{setspace}
\begin{centering}
\doublespacing

Masters of Science \newline
in \newline
Nuclear Engineering \newline

\end{centering}

~Ben


On Wed, Jun 4, 2014 at 3:04 PM, Steve Burnham dan...@gmail.com wrote:

 On June 4, 2014 at 12:50:48 PM, PhilipPirrip (p...@net.hr) wrote:

 It's hard to guess what you're supposed to have without knowing anything
 about your latex class.
 What's obvious from the excerpt you've given is that \@degree is meant
 to be an internal command of the class (because of the @). There must be
 some part of the class file that fills the \@degree command with user's
 data.

 Where can we find the class file?



 I’m attaching the class file.  Starting at line 1351 is where I made my
 modifications.  I guess I don’t fully understand how to use the @ command.
  It sounds like I have to define it first earlier in the class file before
 I can add it to my preamble to be defined?

 -Steve



Re: Thesis formatting

2014-06-04 Thread Steve Burnham
On June 4, 2014 at 15:32:27 PM, Benedict Holland (benedict.m.holl...@gmail.com) 
wrote:
Would you be willing to do this in ERT? I find that the first page, cover page, 
etc. are notoriously difficult to get correctly specified in Lyx. The ERT would 
be someting like
http://tex.stackexchange.com/questions/819/double-line-spacing

Also, it might be linebreak but I think it should be newline. Honestly, I find 
that if I have to edit or modify class files and the like, I just find a 
library to do it for me and write it up in latex. It seems to be much easier 
that way. 

\usepackage{setspace}
\begin{centering}
\doublespacing

Masters of Science \newline
in \newline
Nuclear Engineering \newline

\end{centering}

~Ben




I have no problem going the ERT route, especially since it is scattered all 
throughout my document.  Implementing this looks like it works though.  Hard to 
know exactly if the spacing is correct until I print it out and measure it like 
the thesis editors but all appears correct.

-Steve

Re: Thesis formatting

2014-06-04 Thread Steve Burnham


On June 3, 2014 at 17:26:57 PM, PhilipPirrip (p...@net.hr) wrote:

Use  
Insert > Formatting > Vertical space instead of just adding empty lines.  
Then, VFill is a stretchable vertical space that could help you keep the  
things on one page.  


This would work if the cover page was actually written in LyX but instead it is 
defined in the class file.  I specify the degree type in the preamble .  I 
manage to remove the blank page being created but the way the degree is defined 
in the class I am not sure how to break it up.

      {
        \vss
        A \@thesistype ~submitted to the faculty of\\ 
        The University of Utah\\ 
        in partial fulfillment of the requirements for the degree of
        \vss
      }
      \@degree \\

You can see the \@degree\\ simply takes what is written in the preamble and 
pastes in there as one line rather than “Master of Science” double space “In” 
double space “Nuclear Engineering”  I managed to get it formatted properly by 
adding the following in the class file after \@degree \\

 \@degree \\
  \mbox{} \\
  in \\
  \mbox{} \\
  Nuclear Engineering \\
  \mbox{} \\

I would like to make this a little more robust and allow for others to use the 
class file without having to edit it as much as I have.  In the preamble I 
specify the degree by entering after the \degree{} entry so I tried to add 
something like \degreein{} where someone can enter the information and replaced 
“Nuclear Engineering” in the class file with \@degreein but I get compile 
errors.  Is there a better way to go about this?

-Steve











Re: Thesis formatting

2014-06-04 Thread PhilipPirrip
It's hard to guess what you're supposed to have without knowing anything 
about your latex class.
What's obvious from the excerpt you've given is that \@degree is meant 
to be an internal command of the class (because of the @). There must be 
some part of the class file that fills the \@degree command with user's 
data.


Where can we find the class file?




Re: Thesis formatting

2014-06-04 Thread Benedict Holland
Would you be willing to do this in ERT? I find that the first page, cover
page, etc. are notoriously difficult to get correctly specified in Lyx. The
ERT would be someting like
http://tex.stackexchange.com/questions/819/double-line-spacing

Also, it might be linebreak but I think it should be newline. Honestly, I
find that if I have to edit or modify class files and the like, I just find
a library to do it for me and write it up in latex. It seems to be much
easier that way.

\usepackage{setspace}
\begin{centering}
\doublespacing

Masters of Science \newline
in \newline
Nuclear Engineering \newline

\end{centering}

~Ben


On Wed, Jun 4, 2014 at 3:04 PM, Steve Burnham  wrote:

> On June 4, 2014 at 12:50:48 PM, PhilipPirrip (p...@net.hr) wrote:
>
> It's hard to guess what you're supposed to have without knowing anything
> about your latex class.
> What's obvious from the excerpt you've given is that \@degree is meant
> to be an internal command of the class (because of the @). There must be
> some part of the class file that fills the \@degree command with user's
> data.
>
> Where can we find the class file?
>
>
>
> I’m attaching the class file.  Starting at line 1351 is where I made my
> modifications.  I guess I don’t fully understand how to use the @ command.
>  It sounds like I have to define it first earlier in the class file before
> I can add it to my preamble to be defined?
>
> -Steve
>


Re: Thesis formatting

2014-06-04 Thread Steve Burnham
On June 4, 2014 at 15:32:27 PM, Benedict Holland (benedict.m.holl...@gmail.com) 
wrote:
Would you be willing to do this in ERT? I find that the first page, cover page, 
etc. are notoriously difficult to get correctly specified in Lyx. The ERT would 
be someting like
http://tex.stackexchange.com/questions/819/double-line-spacing

Also, it might be linebreak but I think it should be newline. Honestly, I find 
that if I have to edit or modify class files and the like, I just find a 
library to do it for me and write it up in latex. It seems to be much easier 
that way. 

\usepackage{setspace}
\begin{centering}
\doublespacing

Masters of Science \newline
in \newline
Nuclear Engineering \newline

\end{centering}

~Ben




I have no problem going the ERT route, especially since it is scattered all 
throughout my document.  Implementing this looks like it works though.  Hard to 
know exactly if the spacing is correct until I print it out and measure it like 
the thesis editors but all appears correct.

-Steve

Re: Thesis formatting

2014-06-03 Thread Steve Burnham

On June 3, 2014 at 11:25:06 AM, Steve Burnham (dan...@gmail.com) wrote:

I am working through some formatting revisions from my thesis office and have a 
couple of initial questions:

1.  My degree on the cover page was originally written on one line but it is 
supposed to use three lines and double spaced.  I have it set to three lines 
now but cannot get it double spaced.  Also, when I move it to three lines a new 
blank page is created at the beginning of the document causing the title page 
to become a numbered page.  Instead, the vertical whitespace surrounding the 
degree title should simply be reduced to accommodate.  


I tried to fix this by adding \begin{doublespace} and \end{doublespace} around 
the degree title in the preamble but this resulted in errors so I am still 
stuck on this one.





2.  I have a numbered list where the spacing between each number is greater 
than the spacing of the rest of the document.  The space before the first 
number and after each subsequent number should be the same double space as the 
rest of the document and the double spacing occurring within each numbered 
item.  It looks like I should use the Enumitem package to fix this but I’m only 
finding examples on how to use it to change horizontal spacing, not vertical.  
Could someone help with this?  
I managed to fix this one after some more lengthy searching.  I added the 
following to my preamble:

\usepackage{enumitem} 
\setlist{nolistsep}   
 
% no big dumb spaces inbetween list items   
\let\oldenumerate=\enumerate  
\def\enumerate{%  
%\vspace{-5mm}
\oldenumerate%
\setlength{\itemsep}{0pt}%
\setlength{\parskip}{-1pt}%
}
 
% no big dumb spaces inbetween list items   
\let\olditemize=\itemize  
\def\itemize{%
\olditemize%  
\setlength{\itemsep}{0pt}%
\setlength{\parskip}{-1pt}%
}


-Steve

Re: Thesis formatting

2014-06-03 Thread PhilipPirrip

Use
Insert  Formatting  Vertical space instead of just adding empty lines.
Then, VFill is a stretchable vertical space that could help you keep the 
things on one page.




Re: Thesis formatting

2014-06-03 Thread Steve Burnham

On June 3, 2014 at 11:25:06 AM, Steve Burnham (dan...@gmail.com) wrote:

I am working through some formatting revisions from my thesis office and have a 
couple of initial questions:

1.  My degree on the cover page was originally written on one line but it is 
supposed to use three lines and double spaced.  I have it set to three lines 
now but cannot get it double spaced.  Also, when I move it to three lines a new 
blank page is created at the beginning of the document causing the title page 
to become a numbered page.  Instead, the vertical whitespace surrounding the 
degree title should simply be reduced to accommodate.  


I tried to fix this by adding \begin{doublespace} and \end{doublespace} around 
the degree title in the preamble but this resulted in errors so I am still 
stuck on this one.





2.  I have a numbered list where the spacing between each number is greater 
than the spacing of the rest of the document.  The space before the first 
number and after each subsequent number should be the same double space as the 
rest of the document and the double spacing occurring within each numbered 
item.  It looks like I should use the Enumitem package to fix this but I’m only 
finding examples on how to use it to change horizontal spacing, not vertical.  
Could someone help with this?  
I managed to fix this one after some more lengthy searching.  I added the 
following to my preamble:

\usepackage{enumitem} 
\setlist{nolistsep}   
 
% no big dumb spaces inbetween list items   
\let\oldenumerate=\enumerate  
\def\enumerate{%  
%\vspace{-5mm}
\oldenumerate%
\setlength{\itemsep}{0pt}%
\setlength{\parskip}{-1pt}%
}
 
% no big dumb spaces inbetween list items   
\let\olditemize=\itemize  
\def\itemize{%
\olditemize%  
\setlength{\itemsep}{0pt}%
\setlength{\parskip}{-1pt}%
}


-Steve

Re: Thesis formatting

2014-06-03 Thread PhilipPirrip

Use
Insert  Formatting  Vertical space instead of just adding empty lines.
Then, VFill is a stretchable vertical space that could help you keep the 
things on one page.




Re: Thesis formatting

2014-06-03 Thread Steve Burnham

On June 3, 2014 at 11:25:06 AM, Steve Burnham (dan...@gmail.com) wrote:

I am working through some formatting revisions from my thesis office and have a 
couple of initial questions:

1.  My degree on the cover page was originally written on one line but it is 
supposed to use three lines and double spaced.  I have it set to three lines 
now but cannot get it double spaced.  Also, when I move it to three lines a new 
blank page is created at the beginning of the document causing the title page 
to become a numbered page.  Instead, the vertical whitespace surrounding the 
degree title should simply be reduced to accommodate.  


I tried to fix this by adding \begin{doublespace} and \end{doublespace} around 
the degree title in the preamble but this resulted in errors so I am still 
stuck on this one.





2.  I have a numbered list where the spacing between each number is greater 
than the spacing of the rest of the document.  The space before the first 
number and after each subsequent number should be the same double space as the 
rest of the document and the double spacing occurring within each numbered 
item.  It looks like I should use the Enumitem package to fix this but I’m only 
finding examples on how to use it to change horizontal spacing, not vertical.  
Could someone help with this?  
I managed to fix this one after some more lengthy searching.  I added the 
following to my preamble:

\usepackage{enumitem} 
\setlist{nolistsep}   
 
% no big dumb spaces inbetween list items   
\let\oldenumerate=\enumerate  
\def\enumerate{%  
%\vspace{-5mm}
\oldenumerate%
\setlength{\itemsep}{0pt}%
\setlength{\parskip}{-1pt}%
}
 
% no big dumb spaces inbetween list items   
\let\olditemize=\itemize  
\def\itemize{%
\olditemize%  
\setlength{\itemsep}{0pt}%
\setlength{\parskip}{-1pt}%
}


-Steve

Re: Thesis formatting

2014-06-03 Thread PhilipPirrip

Use
Insert > Formatting > Vertical space instead of just adding empty lines.
Then, VFill is a stretchable vertical space that could help you keep the 
things on one page.




Re: Thesis template and layout files

2014-04-29 Thread Jacob Bishop
On Tue, Apr 15, 2014 at 3:34 PM, Steve Burnham dan...@gmail.com wrote:

 OK, so overall success.  I was able to modify the files myself and get
 them to compile in LaTeX.  I found the whole parent/child document thing a
 little confusing at first.  Not the concept so much but just syntax and how
 they are structured.  Should anybody else be looking for help in the future
 I found the following video where you can actually see somebody create a
 parent/child document and it cleared it up for me (
 https://www.sharelatex.com/blog/latex-guides/beginners-tutorial/longer-documents-in-latex.html#.U02Qt-ZdVIY).
  So now when I open up LyX I can go FileImportLaTeX(plain) and import
 MyThesis.tex and it opens and compiles just fine in LyX.  I think now my
 questions are:

 1.  What is the difference between MyThesis.lyx and MyThesisR3.lyx.  From
 what I can tell R3 has the ERT cleaned up in the preamble as well as notes
 signifying the different heading levels


There should be no difference in the .tex or .pdf produced by either. The
only difference is the cleanup of the ERT in the main text. For example, I
typeset the table using LyX, rather than putting it in ERT.


 2.  From what I can gather it is the .layout file that will get rid of the
 ERT in the LyX file.  I tried to follow an example thesis .layout file from
 the LyX site (see here: http://wiki.lyx.org/Layouts/UCThesis) but when I
 modify the file I can no longer get anything to compile.  (See attached
 .layout file to see what I did.)


Using the .layout file I sent (which was basically what you provided
originally), it should compile fine. If you wanted to get rid of more ERT,
we could change it more, but this is not strictly necessary. Much of it
actually ends up being a little complicated. For the most part, you should
be able to get rid of the \usepackage commands in your preamble. This is
because if you have used functionality that's provided by a certain
package, LyX usually includes it for you. That should be the case for the
\usepackage{lscape}, for example. As for the \usepackage{amsmath}
directive, this generally works fine left alone; but if you want, the
correct way to force the use of the amsmath package is to select it in the
math options under the lyx document settings. Some of the others, such as
\usepackage{flafter} should probably remain in the preamble, unless they
are so critical to the style they could be moved to the thesis template
itself. The part we would really like to take out of the preamble would be
the title, author, thesis type, degree, departmentchair, etc. Those would
be defined to use (modified versions) of LyX's frontmatter styles in the
.layout file.

3.  I also cannot figure out where both LyX and LaTeX are getting the front
 matter pages like the title page, copyright page, and abstract.  All I can
 find is in the preamble are entries like \titlepage, \copyrightpage


Yeah, that's kind of confusing. The thesis class file provided by the U
assumes that the abstract will be provided in a file named abstract.tex
that is stored in the same folder. It assumes the same for the
acknowledgements. I think it's bad style, but either way, it's how the
template was written. You can either live with it or modify the thesis
template. That part is controlled by the preface command, which is part of
the ERT at the beginning of the document.


 -Steve


-Jacob


Re: Thesis template and layout files

2014-04-29 Thread Jacob Bishop
On Tue, Apr 15, 2014 at 3:34 PM, Steve Burnham dan...@gmail.com wrote:

 OK, so overall success.  I was able to modify the files myself and get
 them to compile in LaTeX.  I found the whole parent/child document thing a
 little confusing at first.  Not the concept so much but just syntax and how
 they are structured.  Should anybody else be looking for help in the future
 I found the following video where you can actually see somebody create a
 parent/child document and it cleared it up for me (
 https://www.sharelatex.com/blog/latex-guides/beginners-tutorial/longer-documents-in-latex.html#.U02Qt-ZdVIY).
  So now when I open up LyX I can go FileImportLaTeX(plain) and import
 MyThesis.tex and it opens and compiles just fine in LyX.  I think now my
 questions are:

 1.  What is the difference between MyThesis.lyx and MyThesisR3.lyx.  From
 what I can tell R3 has the ERT cleaned up in the preamble as well as notes
 signifying the different heading levels


There should be no difference in the .tex or .pdf produced by either. The
only difference is the cleanup of the ERT in the main text. For example, I
typeset the table using LyX, rather than putting it in ERT.


 2.  From what I can gather it is the .layout file that will get rid of the
 ERT in the LyX file.  I tried to follow an example thesis .layout file from
 the LyX site (see here: http://wiki.lyx.org/Layouts/UCThesis) but when I
 modify the file I can no longer get anything to compile.  (See attached
 .layout file to see what I did.)


Using the .layout file I sent (which was basically what you provided
originally), it should compile fine. If you wanted to get rid of more ERT,
we could change it more, but this is not strictly necessary. Much of it
actually ends up being a little complicated. For the most part, you should
be able to get rid of the \usepackage commands in your preamble. This is
because if you have used functionality that's provided by a certain
package, LyX usually includes it for you. That should be the case for the
\usepackage{lscape}, for example. As for the \usepackage{amsmath}
directive, this generally works fine left alone; but if you want, the
correct way to force the use of the amsmath package is to select it in the
math options under the lyx document settings. Some of the others, such as
\usepackage{flafter} should probably remain in the preamble, unless they
are so critical to the style they could be moved to the thesis template
itself. The part we would really like to take out of the preamble would be
the title, author, thesis type, degree, departmentchair, etc. Those would
be defined to use (modified versions) of LyX's frontmatter styles in the
.layout file.

3.  I also cannot figure out where both LyX and LaTeX are getting the front
 matter pages like the title page, copyright page, and abstract.  All I can
 find is in the preamble are entries like \titlepage, \copyrightpage


Yeah, that's kind of confusing. The thesis class file provided by the U
assumes that the abstract will be provided in a file named abstract.tex
that is stored in the same folder. It assumes the same for the
acknowledgements. I think it's bad style, but either way, it's how the
template was written. You can either live with it or modify the thesis
template. That part is controlled by the preface command, which is part of
the ERT at the beginning of the document.


 -Steve


-Jacob


Re: Thesis template and layout files

2014-04-29 Thread Jacob Bishop
On Tue, Apr 15, 2014 at 3:34 PM, Steve Burnham  wrote:

> OK, so overall success.  I was able to modify the files myself and get
> them to compile in LaTeX.  I found the whole parent/child document thing a
> little confusing at first.  Not the concept so much but just syntax and how
> they are structured.  Should anybody else be looking for help in the future
> I found the following video where you can actually see somebody create a
> parent/child document and it cleared it up for me (
> https://www.sharelatex.com/blog/latex-guides/beginners-tutorial/longer-documents-in-latex.html#.U02Qt-ZdVIY).
>  So now when I open up LyX I can go File>Import>LaTeX(plain) and import
> MyThesis.tex and it opens and compiles just fine in LyX.  I think now my
> questions are:
>
> 1.  What is the difference between MyThesis.lyx and MyThesisR3.lyx.  From
> what I can tell R3 has the ERT cleaned up in the preamble as well as notes
> signifying the different heading levels
>

There should be no difference in the .tex or .pdf produced by either. The
only difference is the cleanup of the ERT in the main text. For example, I
typeset the table using LyX, rather than putting it in ERT.

>
> 2.  From what I can gather it is the .layout file that will get rid of the
> ERT in the LyX file.  I tried to follow an example thesis .layout file from
> the LyX site (see here: http://wiki.lyx.org/Layouts/UCThesis) but when I
> modify the file I can no longer get anything to compile.  (See attached
> .layout file to see what I did.)
>

Using the .layout file I sent (which was basically what you provided
originally), it should compile fine. If you wanted to get rid of more ERT,
we could change it more, but this is not strictly necessary. Much of it
actually ends up being a little complicated. For the most part, you should
be able to get rid of the \usepackage commands in your preamble. This is
because if you have used functionality that's provided by a certain
package, LyX usually includes it for you. That should be the case for the
\usepackage{lscape}, for example. As for the \usepackage{amsmath}
directive, this generally works fine left alone; but if you want, the
correct way to force the use of the amsmath package is to select it in the
math options under the lyx document settings. Some of the others, such as
\usepackage{flafter} should probably remain in the preamble, unless they
are so critical to the style they could be moved to the thesis template
itself. The part we would really like to take out of the preamble would be
the title, author, thesis type, degree, departmentchair, etc. Those would
be defined to use (modified versions) of LyX's frontmatter styles in the
.layout file.

3.  I also cannot figure out where both LyX and LaTeX are getting the front
> matter pages like the title page, copyright page, and abstract.  All I can
> find is in the preamble are entries like \titlepage, \copyrightpage
>

Yeah, that's kind of confusing. The thesis class file provided by the U
assumes that the abstract will be provided in a file named "abstract.tex"
that is stored in the same folder. It assumes the same for the
acknowledgements. I think it's bad style, but either way, it's how the
template was written. You can either live with it or modify the thesis
template. That part is controlled by the preface command, which is part of
the ERT at the beginning of the document.


> -Steve
>

-Jacob


Re: Thesis template and layout files

2014-04-15 Thread Steve Burnham
On Fri, Apr 11, 2014 at 5:44 PM, Jacob Bishop bishop.ja...@gmail.comwrote:

 On Fri, Apr 11, 2014 at 1:54 PM, Steve Burnham dan...@gmail.com wrote:

 Thanks for getting back to me, much more information and more helpful
 than I expected.


 Hi Steve,

 If you don't mind, I'd like to keep this discussion on the list. This is
 because our discussion might eventually help someone with similar issues. I
 spent over a year using the mailing list archives to find solutions to
 problems I encountered before actually composing a message myself or
 subscribing to the list.


 I have the thesis office minimal examples which unfortunately doesn’t
 compile.  I’m attaching the zipped file of the data that I can get from the
 office.  I started trying to modify the chap2.tex file to compile.  I added
 in the document class declaration, \begin{document}, and some text for the
 headings.  I get two errors, that I need to specify a style guild for which
 I cannot locate information on that error online.  The other is that it
 cannot find \begin{document} which is weird because it is there.  I’m
 guessing whatever the document guild error is has something to do with it
 since that is the first error listed.  If you have time you can take a look
 at the file and maybe help me figure out what is wrong.


 After reverting your changes, I was able to get the example to compile (I
 didn't try to deal with the references, but we can do that later). To
 explain how, I think I should cover how the example is intended to work.
 There are several ways to write a LaTeX document. One is to write it all
 into a single document...a single file ending in *.tex An alternative
 method is to use a parent file with several children files. The
 children documents don't actually compile themselves. That's why when you
 try to compile chap2.tex it doesn't work. It doesn't have everything it
 needs to be a standalone .tex document. Child documents are intended only
 to be included in the main (parent) document. In the archive you sent,
 the parent file is called MyThesis.tex and each chapter and appendix has
 its own file. These can be seen in the main document. They are included
 with the \include{} statement. Incidentally, it is also possible to use
 child documents with LyX in the same way, but I think that is a discussion
 for another day.

 After getting a successful compile using pdflatex MyThesis.tex at the
 command line, I decided to roll the included files right into the main
 document. That seems simpler to me in a way. See attached. That completes
 step 2!

 I also got ambitious and started on the conversion. The steps for that
 basically involved (a) creating a simple .layout file, (b) copying most of
 what appears in MyThesis.tex ( the part before \begin{document} ) into the
 preamble of LyX (c) re-creating the document within LyX. For (a), your
 layout file actually worked. You can see the results (a) and (b) in the
 attached (MyThesisR1.lyx). That gets us through step 5 outlined previously.
 I even worked on step 6 a bit. The latest of those results are in
 MyThesisR3.lyx. Why don't you see if you can duplicate my results and let
 us know how it went?

 It seems that LyX is a good way to write LaTeX documents if you don’t have
 a lot of knowledge about LaTeX but importing custom classes and styles
 appears to be quite a chore.


 I fully agree. In my opinion, the difficulty in creating and importing a
 custom class/style is one of the biggest hurdles we face. As long as there
 is an existing template that works, things are pretty smooth. The nice
 thing about it, though, is that just one person needs to create and import
 a template. It only has to be done once. Thesis/dissertation templates is
 one case where this effort makes quite a lot of sense IMHO. Custom formats
 for one-time 1-5 page documents much less so.


 In any case, it should be worth it especially since I am starting my PhD
 this summer and will need the same style guide.


 I agree.


  Thanks again for your help, it’s just too bad you moved a little too far
 north for your PhD!


 Either that, or you didn't move far enough north for yours! :)

 -Jacob


OK, so overall success.  I was able to modify the files myself and get them
to compile in LaTeX.  I found the whole parent/child document thing a
little confusing at first.  Not the concept so much but just syntax and how
they are structured.  Should anybody else be looking for help in the future
I found the following video where you can actually see somebody create a
parent/child document and it cleared it up for me (
https://www.sharelatex.com/blog/latex-guides/beginners-tutorial/longer-documents-in-latex.html#.U02Qt-ZdVIY).
 So now when I open up LyX I can go FileImportLaTeX(plain) and import
MyThesis.tex and it opens and compiles just fine in LyX.  I think now my
questions are:

1.  What is the difference between MyThesis.lyx and MyThesisR3.lyx.  From
what I can tell R3 has the ERT cleaned up in the preamble 

Re: Thesis template and layout files

2014-04-15 Thread Steve Burnham
On Fri, Apr 11, 2014 at 5:44 PM, Jacob Bishop bishop.ja...@gmail.comwrote:

 On Fri, Apr 11, 2014 at 1:54 PM, Steve Burnham dan...@gmail.com wrote:

 Thanks for getting back to me, much more information and more helpful
 than I expected.


 Hi Steve,

 If you don't mind, I'd like to keep this discussion on the list. This is
 because our discussion might eventually help someone with similar issues. I
 spent over a year using the mailing list archives to find solutions to
 problems I encountered before actually composing a message myself or
 subscribing to the list.


 I have the thesis office minimal examples which unfortunately doesn’t
 compile.  I’m attaching the zipped file of the data that I can get from the
 office.  I started trying to modify the chap2.tex file to compile.  I added
 in the document class declaration, \begin{document}, and some text for the
 headings.  I get two errors, that I need to specify a style guild for which
 I cannot locate information on that error online.  The other is that it
 cannot find \begin{document} which is weird because it is there.  I’m
 guessing whatever the document guild error is has something to do with it
 since that is the first error listed.  If you have time you can take a look
 at the file and maybe help me figure out what is wrong.


 After reverting your changes, I was able to get the example to compile (I
 didn't try to deal with the references, but we can do that later). To
 explain how, I think I should cover how the example is intended to work.
 There are several ways to write a LaTeX document. One is to write it all
 into a single document...a single file ending in *.tex An alternative
 method is to use a parent file with several children files. The
 children documents don't actually compile themselves. That's why when you
 try to compile chap2.tex it doesn't work. It doesn't have everything it
 needs to be a standalone .tex document. Child documents are intended only
 to be included in the main (parent) document. In the archive you sent,
 the parent file is called MyThesis.tex and each chapter and appendix has
 its own file. These can be seen in the main document. They are included
 with the \include{} statement. Incidentally, it is also possible to use
 child documents with LyX in the same way, but I think that is a discussion
 for another day.

 After getting a successful compile using pdflatex MyThesis.tex at the
 command line, I decided to roll the included files right into the main
 document. That seems simpler to me in a way. See attached. That completes
 step 2!

 I also got ambitious and started on the conversion. The steps for that
 basically involved (a) creating a simple .layout file, (b) copying most of
 what appears in MyThesis.tex ( the part before \begin{document} ) into the
 preamble of LyX (c) re-creating the document within LyX. For (a), your
 layout file actually worked. You can see the results (a) and (b) in the
 attached (MyThesisR1.lyx). That gets us through step 5 outlined previously.
 I even worked on step 6 a bit. The latest of those results are in
 MyThesisR3.lyx. Why don't you see if you can duplicate my results and let
 us know how it went?

 It seems that LyX is a good way to write LaTeX documents if you don’t have
 a lot of knowledge about LaTeX but importing custom classes and styles
 appears to be quite a chore.


 I fully agree. In my opinion, the difficulty in creating and importing a
 custom class/style is one of the biggest hurdles we face. As long as there
 is an existing template that works, things are pretty smooth. The nice
 thing about it, though, is that just one person needs to create and import
 a template. It only has to be done once. Thesis/dissertation templates is
 one case where this effort makes quite a lot of sense IMHO. Custom formats
 for one-time 1-5 page documents much less so.


 In any case, it should be worth it especially since I am starting my PhD
 this summer and will need the same style guide.


 I agree.


  Thanks again for your help, it’s just too bad you moved a little too far
 north for your PhD!


 Either that, or you didn't move far enough north for yours! :)

 -Jacob


OK, so overall success.  I was able to modify the files myself and get them
to compile in LaTeX.  I found the whole parent/child document thing a
little confusing at first.  Not the concept so much but just syntax and how
they are structured.  Should anybody else be looking for help in the future
I found the following video where you can actually see somebody create a
parent/child document and it cleared it up for me (
https://www.sharelatex.com/blog/latex-guides/beginners-tutorial/longer-documents-in-latex.html#.U02Qt-ZdVIY).
 So now when I open up LyX I can go FileImportLaTeX(plain) and import
MyThesis.tex and it opens and compiles just fine in LyX.  I think now my
questions are:

1.  What is the difference between MyThesis.lyx and MyThesisR3.lyx.  From
what I can tell R3 has the ERT cleaned up in the preamble 

Re: Thesis template and layout files

2014-04-15 Thread Steve Burnham
On Fri, Apr 11, 2014 at 5:44 PM, Jacob Bishop wrote:

> On Fri, Apr 11, 2014 at 1:54 PM, Steve Burnham  wrote:
>
>> Thanks for getting back to me, much more information and more helpful
>> than I expected.
>>
>
> Hi Steve,
>
> If you don't mind, I'd like to keep this discussion on the list. This is
> because our discussion might eventually help someone with similar issues. I
> spent over a year using the mailing list archives to find solutions to
> problems I encountered before actually composing a message myself or
> subscribing to the list.
>
>
>> I have the thesis office minimal examples which unfortunately doesn’t
>> compile.  I’m attaching the zipped file of the data that I can get from the
>> office.  I started trying to modify the chap2.tex file to compile.  I added
>> in the document class declaration, \begin{document}, and some text for the
>> headings.  I get two errors, that I need to specify a style guild for which
>> I cannot locate information on that error online.  The other is that it
>> cannot find \begin{document} which is weird because it is there.  I’m
>> guessing whatever the document guild error is has something to do with it
>> since that is the first error listed.  If you have time you can take a look
>> at the file and maybe help me figure out what is wrong.
>>
>
> After reverting your changes, I was able to get the example to compile (I
> didn't try to deal with the references, but we can do that later). To
> explain how, I think I should cover how the example is intended to work.
> There are several ways to write a LaTeX document. One is to write it all
> into a single document...a single file ending in *.tex An alternative
> method is to use a "parent" file with several "children" files. The
> children documents don't actually compile themselves. That's why when you
> try to compile "chap2.tex" it doesn't work. It doesn't have everything it
> needs to be a standalone .tex document. Child documents are intended only
> to be "included" in the main (parent) document. In the archive you sent,
> the parent file is called "MyThesis.tex" and each chapter and appendix has
> its own file. These can be seen in the main document. They are included
> with the \include{} statement. Incidentally, it is also possible to use
> child documents with LyX in the same way, but I think that is a discussion
> for another day.
>
> After getting a successful compile using "pdflatex MyThesis.tex" at the
> command line, I decided to roll the "included" files right into the main
> document. That seems simpler to me in a way. See attached. That completes
> step 2!
>
> I also got ambitious and started on the conversion. The steps for that
> basically involved (a) creating a simple .layout file, (b) copying most of
> what appears in MyThesis.tex ( the part before \begin{document} ) into the
> preamble of LyX (c) re-creating the document within LyX. For (a), your
> layout file actually worked. You can see the results (a) and (b) in the
> attached (MyThesisR1.lyx). That gets us through step 5 outlined previously.
> I even worked on step 6 a bit. The latest of those results are in
> MyThesisR3.lyx. Why don't you see if you can duplicate my results and let
> us know how it went?
>
> It seems that LyX is a good way to write LaTeX documents if you don’t have
>> a lot of knowledge about LaTeX but importing custom classes and styles
>> appears to be quite a chore.
>>
>
> I fully agree. In my opinion, the difficulty in creating and importing a
> custom class/style is one of the biggest hurdles we face. As long as there
> is an existing template that works, things are pretty smooth. The nice
> thing about it, though, is that just one person needs to create and import
> a template. It only has to be done once. Thesis/dissertation templates is
> one case where this effort makes quite a lot of sense IMHO. Custom formats
> for one-time 1-5 page documents much less so.
>
>
>> In any case, it should be worth it especially since I am starting my PhD
>> this summer and will need the same style guide.
>>
>
> I agree.
>
>
>>  Thanks again for your help, it’s just too bad you moved a little too far
>> north for your PhD!
>>
>
> Either that, or you didn't move far enough north for yours! :)
>
> -Jacob
>

OK, so overall success.  I was able to modify the files myself and get them
to compile in LaTeX.  I found the whole parent/child document thing a
little confusing at first.  Not the concept so much but just syntax and how
they are structured.  Should anybody else be looking for help in the future
I found the following video where you can actually see somebody create a
parent/child document and it cleared it up for me (
https://www.sharelatex.com/blog/latex-guides/beginners-tutorial/longer-documents-in-latex.html#.U02Qt-ZdVIY).
 So now when I open up LyX I can go File>Import>LaTeX(plain) and import
MyThesis.tex and it opens and compiles just fine in LyX.  I think now my
questions are:

1.  

Re: Thesis template and layout files

2014-04-10 Thread Jacob Bishop
On Thu, Apr 10, 2014 at 5:14 PM, Steve Burnham dan...@gmail.com wrote:

 I am trying to write my thesis using LyX but I am experiencing some
 confusion/problems with importing my universities thesis class and create
 the LyX template.


Hi Steve, I used LyX for my thesis, and had to customize things to work for
my university template. Perhaps you have already figured some of this out,
but I would like to provide a few suggestions for how to proceed:

1) Download the template (including both the necessary .cls/sty files and a
minimal example). Your university should provide a working example. If they
don't then find a classmate or friend that has one.
2) Get the minimal example to compile and produce acceptable output using
regular old LaTeX.
3) Write a minimal layout file for LyX so the class shows up.
4) Put in everything you need from the example document, at this stage you
will typically use ERT liberally, and have a load of stuff in the preamble.
5) Debug until the document compiles in LyX just as it did in regular LaTeX.
6+) [optional] Gradually improve the LyX interface by modifying the .layout
file to support more of the thesis template's features, which will allow
you to remove ERT.

It appears to me that you tried to start somewhere in the middle of this
process, which I wouldn't generally recommend.

It looks like you tried to modify the book layout file to use with your
document class. Now, I could have missed something, but it looks like your
university's document class is not based on book. So, that won't work.

To explain a bit more in case you are lost with what I mean, a LaTeX
document typically relies on a document class. That class can either be an
original document class, or a derived one. By original, I mean a
document class that was written from scratch. There are several document
classes that come standard with LaTeX. These include book, article, report,
etc. Now, when a person writes a new document class (to use for a
university thesis, for instance) they usually create a derived class. By
that, I mean that they import the base class, inheriting all of the
goodness from it. The book class is usually a good base class for a thesis
template, but article is also sometimes used. Just as in LaTeX, .cls or
.sty files, LyX .layout files can be created by modifying an existing one.
The guiding principle in doing that is to create a new .layout file by
modifying the same .layout file your class was based on (again, for theses,
this is  usually the book class).

In any case, it looks to me like the person(s) who wrote the thesis
template you sent started from scratch. That means modifying the layout for
the book class won't work as well as one might hope. It might end up
requiring a bit more work, so my recommendation is to start at step 1
above, then ask again once you get past step 2 (and include the minimal
example in your response, it will make it easier to help).

Jacob

p.s. I did my MS at BYU and PhD at USU (both theses were written in LyX).
If it had been one of those, I would have a drop-in solution for you.


Re: Thesis template and layout files

2014-04-10 Thread Jacob Bishop
On Thu, Apr 10, 2014 at 5:14 PM, Steve Burnham dan...@gmail.com wrote:

 I am trying to write my thesis using LyX but I am experiencing some
 confusion/problems with importing my universities thesis class and create
 the LyX template.


Hi Steve, I used LyX for my thesis, and had to customize things to work for
my university template. Perhaps you have already figured some of this out,
but I would like to provide a few suggestions for how to proceed:

1) Download the template (including both the necessary .cls/sty files and a
minimal example). Your university should provide a working example. If they
don't then find a classmate or friend that has one.
2) Get the minimal example to compile and produce acceptable output using
regular old LaTeX.
3) Write a minimal layout file for LyX so the class shows up.
4) Put in everything you need from the example document, at this stage you
will typically use ERT liberally, and have a load of stuff in the preamble.
5) Debug until the document compiles in LyX just as it did in regular LaTeX.
6+) [optional] Gradually improve the LyX interface by modifying the .layout
file to support more of the thesis template's features, which will allow
you to remove ERT.

It appears to me that you tried to start somewhere in the middle of this
process, which I wouldn't generally recommend.

It looks like you tried to modify the book layout file to use with your
document class. Now, I could have missed something, but it looks like your
university's document class is not based on book. So, that won't work.

To explain a bit more in case you are lost with what I mean, a LaTeX
document typically relies on a document class. That class can either be an
original document class, or a derived one. By original, I mean a
document class that was written from scratch. There are several document
classes that come standard with LaTeX. These include book, article, report,
etc. Now, when a person writes a new document class (to use for a
university thesis, for instance) they usually create a derived class. By
that, I mean that they import the base class, inheriting all of the
goodness from it. The book class is usually a good base class for a thesis
template, but article is also sometimes used. Just as in LaTeX, .cls or
.sty files, LyX .layout files can be created by modifying an existing one.
The guiding principle in doing that is to create a new .layout file by
modifying the same .layout file your class was based on (again, for theses,
this is  usually the book class).

In any case, it looks to me like the person(s) who wrote the thesis
template you sent started from scratch. That means modifying the layout for
the book class won't work as well as one might hope. It might end up
requiring a bit more work, so my recommendation is to start at step 1
above, then ask again once you get past step 2 (and include the minimal
example in your response, it will make it easier to help).

Jacob

p.s. I did my MS at BYU and PhD at USU (both theses were written in LyX).
If it had been one of those, I would have a drop-in solution for you.


Re: Thesis template and layout files

2014-04-10 Thread Jacob Bishop
On Thu, Apr 10, 2014 at 5:14 PM, Steve Burnham  wrote:

> I am trying to write my thesis using LyX but I am experiencing some
> confusion/problems with importing my universities thesis class and create
> the LyX template.
>

Hi Steve, I used LyX for my thesis, and had to customize things to work for
my university template. Perhaps you have already figured some of this out,
but I would like to provide a few suggestions for how to proceed:

1) Download the template (including both the necessary .cls/sty files and a
minimal example). Your university should provide a working example. If they
don't then find a classmate or friend that has one.
2) Get the minimal example to compile and produce acceptable output using
regular old LaTeX.
3) Write a minimal layout file for LyX so the class shows up.
4) Put in everything you need from the example document, at this stage you
will typically use ERT liberally, and have a load of stuff in the preamble.
5) Debug until the document compiles in LyX just as it did in regular LaTeX.
6+) [optional] Gradually improve the LyX interface by modifying the .layout
file to support more of the thesis template's features, which will allow
you to remove ERT.

It appears to me that you tried to start somewhere in the middle of this
process, which I wouldn't generally recommend.

It looks like you tried to modify the book layout file to use with your
document class. Now, I could have missed something, but it looks like your
university's document class is not based on book. So, that won't work.

To explain a bit more in case you are lost with what I mean, a LaTeX
document typically relies on a document class. That class can either be an
"original" document class, or a derived one. By "original," I mean a
document class that was written from scratch. There are several document
classes that come standard with LaTeX. These include book, article, report,
etc. Now, when a person writes a new document class (to use for a
university thesis, for instance) they usually create a derived class. By
that, I mean that they import the base class, inheriting all of the
goodness from it. The book class is usually a good base class for a thesis
template, but article is also sometimes used. Just as in LaTeX, .cls or
.sty files, LyX .layout files can be created by modifying an existing one.
The guiding principle in doing that is to create a new .layout file by
modifying the same .layout file your class was based on (again, for theses,
this is  usually the book class).

In any case, it looks to me like the person(s) who wrote the thesis
template you sent started from scratch. That means modifying the layout for
the book class won't work as well as one might hope. It might end up
requiring a bit more work, so my recommendation is to start at step 1
above, then ask again once you get past step 2 (and include the minimal
example in your response, it will make it easier to help).

Jacob

p.s. I did my MS at BYU and PhD at USU (both theses were written in LyX).
If it had been one of those, I would have a drop-in solution for you.


Re: Thesis Layout for LyX

2012-04-12 Thread PhilipPirrip

On 04/12/2012 07:29 AM, jdre...@berkeley.edu wrote:

Hello-

I have a thesis layout that I would like to contribute to the
http://wiki.lyx.org/Layouts/Layouts page. What is the best way to go about
this?


You can either edit the page (there's a link at the top of the page), or 
submit your template to http://www.thesis-template.com/ where some other 
templates reside.




Re: Thesis Layout for LyX

2012-04-12 Thread PhilipPirrip

In addition, there's another page where you could advertise your layout:
http://wiki.lyx.org/Examples/Thesis



Re: Thesis Layout for LyX

2012-04-12 Thread Steve Litt
On Thu, 12 Apr 2012 13:38:59 +0200
PhilipPirrip p...@net.hr wrote:

 On 04/12/2012 07:29 AM, jdre...@berkeley.edu wrote:
  Hello-
 
  I have a thesis layout that I would like to contribute to the
  http://wiki.lyx.org/Layouts/Layouts page. What is the best way to
  go about this?
 
 You can either edit the page (there's a link at the top of the page),
 or submit your template to http://www.thesis-template.com/ where some
 other templates reside.
 

Are there conditions under which a non-academic might find a Thesis
layout handy?

Thanks

SteveT


Re: Thesis Layout for LyX

2012-04-12 Thread Julio Rojas
They look nice for books?
-
Julio Rojas
jcredbe...@gmail.com


On Thu, Apr 12, 2012 at 8:34 PM, Steve Litt sl...@troubleshooters.comwrote:

 On Thu, 12 Apr 2012 13:38:59 +0200
 PhilipPirrip p...@net.hr wrote:

  On 04/12/2012 07:29 AM, jdre...@berkeley.edu wrote:
   Hello-
  
   I have a thesis layout that I would like to contribute to the
   http://wiki.lyx.org/Layouts/Layouts page. What is the best way to
   go about this?
 
  You can either edit the page (there's a link at the top of the page),
  or submit your template to http://www.thesis-template.com/ where some
  other templates reside.
 

 Are there conditions under which a non-academic might find a Thesis
 layout handy?

 Thanks

 SteveT



Re: Thesis Layout for LyX

2012-04-12 Thread Alex Vergara Gil
they also look very nice for reports of some complexity, manuals, ... so 
yeah thesis layouts are very highly appreciated!!


Saludos
~-o--{}--o-~
Alex Vergara Gil
MSc. Física Nuclear
Laboratorio Secundario de Calibración Dosimétrica
Centro de Protección e Higiene de las Radiaciones
Calle 18A No. 4113 e/ 41 y 47 Playa
La Habana, Cuba
A.P.6195 C.P.10600
Telf: (537)6824892, (537)6821803
Fax: (537)2030165


El 12/04/2012 12:39 p.m., Julio Rojas escribió:

They look nice for books?
-
Julio Rojas
jcredbe...@gmail.com mailto:jcredbe...@gmail.com


On Thu, Apr 12, 2012 at 8:34 PM, Steve Litt sl...@troubleshooters.com 
mailto:sl...@troubleshooters.com wrote:


On Thu, 12 Apr 2012 13:38:59 +0200
PhilipPirrip p...@net.hr mailto:p...@net.hr wrote:

 On 04/12/2012 07:29 AM, jdre...@berkeley.edu
mailto:jdre...@berkeley.edu wrote:
  Hello-
 
  I have a thesis layout that I would like to contribute to the
  http://wiki.lyx.org/Layouts/Layouts page. What is the best way to
  go about this?

 You can either edit the page (there's a link at the top of the
page),
 or submit your template to http://www.thesis-template.com/ where
some
 other templates reside.


Are there conditions under which a non-academic might find a Thesis
layout handy?

Thanks

SteveT




Re: Thesis Layout for LyX

2012-04-12 Thread PhilipPirrip

On 04/12/2012 07:29 AM, jdre...@berkeley.edu wrote:

Hello-

I have a thesis layout that I would like to contribute to the
http://wiki.lyx.org/Layouts/Layouts page. What is the best way to go about
this?


You can either edit the page (there's a link at the top of the page), or 
submit your template to http://www.thesis-template.com/ where some other 
templates reside.




Re: Thesis Layout for LyX

2012-04-12 Thread PhilipPirrip

In addition, there's another page where you could advertise your layout:
http://wiki.lyx.org/Examples/Thesis



Re: Thesis Layout for LyX

2012-04-12 Thread Steve Litt
On Thu, 12 Apr 2012 13:38:59 +0200
PhilipPirrip p...@net.hr wrote:

 On 04/12/2012 07:29 AM, jdre...@berkeley.edu wrote:
  Hello-
 
  I have a thesis layout that I would like to contribute to the
  http://wiki.lyx.org/Layouts/Layouts page. What is the best way to
  go about this?
 
 You can either edit the page (there's a link at the top of the page),
 or submit your template to http://www.thesis-template.com/ where some
 other templates reside.
 

Are there conditions under which a non-academic might find a Thesis
layout handy?

Thanks

SteveT


Re: Thesis Layout for LyX

2012-04-12 Thread Julio Rojas
They look nice for books?
-
Julio Rojas
jcredbe...@gmail.com


On Thu, Apr 12, 2012 at 8:34 PM, Steve Litt sl...@troubleshooters.comwrote:

 On Thu, 12 Apr 2012 13:38:59 +0200
 PhilipPirrip p...@net.hr wrote:

  On 04/12/2012 07:29 AM, jdre...@berkeley.edu wrote:
   Hello-
  
   I have a thesis layout that I would like to contribute to the
   http://wiki.lyx.org/Layouts/Layouts page. What is the best way to
   go about this?
 
  You can either edit the page (there's a link at the top of the page),
  or submit your template to http://www.thesis-template.com/ where some
  other templates reside.
 

 Are there conditions under which a non-academic might find a Thesis
 layout handy?

 Thanks

 SteveT



Re: Thesis Layout for LyX

2012-04-12 Thread Alex Vergara Gil
they also look very nice for reports of some complexity, manuals, ... so 
yeah thesis layouts are very highly appreciated!!


Saludos
~-o--{}--o-~
Alex Vergara Gil
MSc. Física Nuclear
Laboratorio Secundario de Calibración Dosimétrica
Centro de Protección e Higiene de las Radiaciones
Calle 18A No. 4113 e/ 41 y 47 Playa
La Habana, Cuba
A.P.6195 C.P.10600
Telf: (537)6824892, (537)6821803
Fax: (537)2030165


El 12/04/2012 12:39 p.m., Julio Rojas escribió:

They look nice for books?
-
Julio Rojas
jcredbe...@gmail.com mailto:jcredbe...@gmail.com


On Thu, Apr 12, 2012 at 8:34 PM, Steve Litt sl...@troubleshooters.com 
mailto:sl...@troubleshooters.com wrote:


On Thu, 12 Apr 2012 13:38:59 +0200
PhilipPirrip p...@net.hr mailto:p...@net.hr wrote:

 On 04/12/2012 07:29 AM, jdre...@berkeley.edu
mailto:jdre...@berkeley.edu wrote:
  Hello-
 
  I have a thesis layout that I would like to contribute to the
  http://wiki.lyx.org/Layouts/Layouts page. What is the best way to
  go about this?

 You can either edit the page (there's a link at the top of the
page),
 or submit your template to http://www.thesis-template.com/ where
some
 other templates reside.


Are there conditions under which a non-academic might find a Thesis
layout handy?

Thanks

SteveT




Re: Thesis Layout for LyX

2012-04-12 Thread PhilipPirrip

On 04/12/2012 07:29 AM, jdre...@berkeley.edu wrote:

Hello-

I have a thesis layout that I would like to contribute to the
http://wiki.lyx.org/Layouts/Layouts page. What is the best way to go about
this?


You can either edit the page (there's a link at the top of the page), or 
submit your template to http://www.thesis-template.com/ where some other 
templates reside.




Re: Thesis Layout for LyX

2012-04-12 Thread PhilipPirrip

In addition, there's another page where you could advertise your layout:
http://wiki.lyx.org/Examples/Thesis



Re: Thesis Layout for LyX

2012-04-12 Thread Steve Litt
On Thu, 12 Apr 2012 13:38:59 +0200
PhilipPirrip  wrote:

> On 04/12/2012 07:29 AM, jdre...@berkeley.edu wrote:
> > Hello-
> >
> > I have a thesis layout that I would like to contribute to the
> > http://wiki.lyx.org/Layouts/Layouts page. What is the best way to
> > go about this?
> 
> You can either edit the page (there's a link at the top of the page),
> or submit your template to http://www.thesis-template.com/ where some
> other templates reside.
> 

Are there conditions under which a non-academic might find a Thesis
layout handy?

Thanks

SteveT


Re: Thesis Layout for LyX

2012-04-12 Thread Julio Rojas
They look nice for books?
-
Julio Rojas
jcredbe...@gmail.com


On Thu, Apr 12, 2012 at 8:34 PM, Steve Litt wrote:

> On Thu, 12 Apr 2012 13:38:59 +0200
> PhilipPirrip  wrote:
>
> > On 04/12/2012 07:29 AM, jdre...@berkeley.edu wrote:
> > > Hello-
> > >
> > > I have a thesis layout that I would like to contribute to the
> > > http://wiki.lyx.org/Layouts/Layouts page. What is the best way to
> > > go about this?
> >
> > You can either edit the page (there's a link at the top of the page),
> > or submit your template to http://www.thesis-template.com/ where some
> > other templates reside.
> >
>
> Are there conditions under which a non-academic might find a Thesis
> layout handy?
>
> Thanks
>
> SteveT
>


Re: Thesis Layout for LyX

2012-04-12 Thread Alex Vergara Gil
they also look very nice for reports of some complexity, manuals, ... so 
yeah thesis layouts are very highly appreciated!!


Saludos
~-o--{}--o-~
Alex Vergara Gil
MSc. Física Nuclear
Laboratorio Secundario de Calibración Dosimétrica
Centro de Protección e Higiene de las Radiaciones
Calle 18A No. 4113 e/ 41 y 47 Playa
La Habana, Cuba
A.P.6195 C.P.10600
Telf: (537)6824892, (537)6821803
Fax: (537)2030165


El 12/04/2012 12:39 p.m., Julio Rojas escribió:

They look nice for books?
-
Julio Rojas
jcredbe...@gmail.com 


On Thu, Apr 12, 2012 at 8:34 PM, Steve Litt > wrote:


On Thu, 12 Apr 2012 13:38:59 +0200
PhilipPirrip > wrote:

> On 04/12/2012 07:29 AM, jdre...@berkeley.edu
 wrote:
> > Hello-
> >
> > I have a thesis layout that I would like to contribute to the
> > http://wiki.lyx.org/Layouts/Layouts page. What is the best way to
> > go about this?
>
> You can either edit the page (there's a link at the top of the
page),
> or submit your template to http://www.thesis-template.com/ where
some
> other templates reside.
>

Are there conditions under which a non-academic might find a Thesis
layout handy?

Thanks

SteveT




Re: Thesis margins 1.5 left and 1 elsewhere

2011-05-24 Thread Julien Rioux

On 24/05/2011 1:32 AM, Eisa Ayed wrote:

My school requires that I've 1.5 inch margin on the left side and 1 inch in all 
other margins.
I checked  Document-Settings-Page Margins.

There is entry listed for left margin.
How can I possibly do that in Lyx version 1.6.8 ?

Eisa.




In single-sided documents, Inner is the same as Left.

--
Julien



Re: Thesis margins 1.5 left and 1 elsewhere

2011-05-24 Thread Julien Rioux

On 24/05/2011 1:32 AM, Eisa Ayed wrote:

My school requires that I've 1.5 inch margin on the left side and 1 inch in all 
other margins.
I checked  Document-Settings-Page Margins.

There is entry listed for left margin.
How can I possibly do that in Lyx version 1.6.8 ?

Eisa.




In single-sided documents, Inner is the same as Left.

--
Julien



Re: Thesis margins 1.5 left and 1 elsewhere

2011-05-24 Thread Julien Rioux

On 24/05/2011 1:32 AM, Eisa Ayed wrote:

My school requires that I've 1.5 inch margin on the left side and 1 inch in all 
other margins.
I checked  Document->Settings->Page Margins.

There is entry listed for left margin.
How can I possibly do that in Lyx version 1.6.8 ?

Eisa.




In single-sided documents, "Inner" is the same as "Left".

--
Julien



Re: Thesis template

2010-12-25 Thread Jürgen Spitzmüller
Rudi Gaelzer wrote:
 It seems that the Koma book class does not support the subtitle command.

it does as of v2.98 (2007-06-20).

Jürgen


Re: Thesis template

2010-12-25 Thread Jürgen Spitzmüller
Rudi Gaelzer wrote:
 It seems that the Koma book class does not support the subtitle command.

it does as of v2.98 (2007-06-20).

Jürgen


Re: Thesis template

2010-12-25 Thread Jürgen Spitzmüller
Rudi Gaelzer wrote:
> It seems that the Koma book class does not support the subtitle command.

it does as of v2.98 (2007-06-20).

Jürgen


Re: Thesis

2009-05-08 Thread rgheck

Edwin Davis wrote:

Hello,

 


I am preparing to turn in a thesis and have a couple of formatting issues. I am 
using the report document class and I need to know how to change the font of 
the list of contents heading and list of tables heading as well as change the 
location.  I need the headings to be top left of the page. I also need the 
chapter headings to be top left of the page. Please email back if you know how 
to do this.

  
Use the fancyhdr package. You can completely customize the page 
headings, as you wish. See section 3.3 of the Additional Features 
manual, and the fancyhdr documentation, which is here:

   http://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/

Richard



Re: Thesis

2009-05-08 Thread rgheck

Edwin Davis wrote:
I have not been able to find where it says how to change the font of 
the list of figures or tables
 
Sorry, maybe I misunderstood you. I thought we were talking about the 
page headings, that repeat on each page. But maybe you meant the heading 
that appears at the beginning of the list of tables, etc. It might be 
possible to use the titletoc package for this, but I'm not sure.


Looking at the report class, it appears that it uses chapter* to typeset 
the names of the various tables. So another option would be to use the 
titlesec package to redefine the formatting of the chapter headings. But 
you would then have to reset it, if you wanted it to be the way it was 
before.


Richard

PS Keep replies on the list in case someone else has a better answer!


 Date: Fri, 8 May 2009 10:06:27 -0400
 From: rgh...@bobjweil.com
 To: risingsta...@msn.com
 CC: lyx-users@lists.lyx.org
 Subject: Re: Thesis

 Edwin Davis wrote:
  Hello,
 
 
 
  I am preparing to turn in a thesis and have a couple of formatting 
issues. I am using the report document class and I need to know how to 
change the font of the list of contents heading and list of tables 
heading as well as change the location. I need the headings to be top 
left of the page. I also need the chapter headings to be top left of 
the page. Please email back if you know how to do this.

 
 
 Use the fancyhdr package. You can completely customize the page
 headings, as you wish. See section 3.3 of the Additional Features
 manual, and the fancyhdr documentation, which is here:
 http://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/

 Richard





Re: Thesis

2009-05-08 Thread rgheck

Edwin Davis wrote:

Hello,

 


I am preparing to turn in a thesis and have a couple of formatting issues. I am 
using the report document class and I need to know how to change the font of 
the list of contents heading and list of tables heading as well as change the 
location.  I need the headings to be top left of the page. I also need the 
chapter headings to be top left of the page. Please email back if you know how 
to do this.

  
Use the fancyhdr package. You can completely customize the page 
headings, as you wish. See section 3.3 of the Additional Features 
manual, and the fancyhdr documentation, which is here:

   http://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/

Richard



Re: Thesis

2009-05-08 Thread rgheck

Edwin Davis wrote:
I have not been able to find where it says how to change the font of 
the list of figures or tables
 
Sorry, maybe I misunderstood you. I thought we were talking about the 
page headings, that repeat on each page. But maybe you meant the heading 
that appears at the beginning of the list of tables, etc. It might be 
possible to use the titletoc package for this, but I'm not sure.


Looking at the report class, it appears that it uses chapter* to typeset 
the names of the various tables. So another option would be to use the 
titlesec package to redefine the formatting of the chapter headings. But 
you would then have to reset it, if you wanted it to be the way it was 
before.


Richard

PS Keep replies on the list in case someone else has a better answer!


 Date: Fri, 8 May 2009 10:06:27 -0400
 From: rgh...@bobjweil.com
 To: risingsta...@msn.com
 CC: lyx-users@lists.lyx.org
 Subject: Re: Thesis

 Edwin Davis wrote:
  Hello,
 
 
 
  I am preparing to turn in a thesis and have a couple of formatting 
issues. I am using the report document class and I need to know how to 
change the font of the list of contents heading and list of tables 
heading as well as change the location. I need the headings to be top 
left of the page. I also need the chapter headings to be top left of 
the page. Please email back if you know how to do this.

 
 
 Use the fancyhdr package. You can completely customize the page
 headings, as you wish. See section 3.3 of the Additional Features
 manual, and the fancyhdr documentation, which is here:
 http://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/

 Richard





Re: Thesis

2009-05-08 Thread rgheck

Edwin Davis wrote:

Hello,

 


I am preparing to turn in a thesis and have a couple of formatting issues. I am 
using the report document class and I need to know how to change the font of 
the list of contents heading and list of tables heading as well as change the 
location.  I need the headings to be top left of the page. I also need the 
chapter headings to be top left of the page. Please email back if you know how 
to do this.

  
Use the fancyhdr package. You can completely customize the page 
headings, as you wish. See section 3.3 of the "Additional Features" 
manual, and the fancyhdr documentation, which is here:

   http://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/

Richard



Re: Thesis

2009-05-08 Thread rgheck

Edwin Davis wrote:
I have not been able to find where it says how to change the font of 
the list of figures or tables
 
Sorry, maybe I misunderstood you. I thought we were talking about the 
page headings, that repeat on each page. But maybe you meant the heading 
that appears at the beginning of the list of tables, etc. It might be 
possible to use the titletoc package for this, but I'm not sure.


Looking at the report class, it appears that it uses chapter* to typeset 
the names of the various tables. So another option would be to use the 
titlesec package to redefine the formatting of the chapter headings. But 
you would then have to reset it, if you wanted it to be the way it was 
before.


Richard

PS Keep replies on the list in case someone else has a better answer!


> Date: Fri, 8 May 2009 10:06:27 -0400
> From: rgh...@bobjweil.com
> To: risingsta...@msn.com
> CC: lyx-users@lists.lyx.org
> Subject: Re: Thesis
>
> Edwin Davis wrote:
> > Hello,
> >
> >
> >
> > I am preparing to turn in a thesis and have a couple of formatting 
issues. I am using the report document class and I need to know how to 
change the font of the list of contents heading and list of tables 
heading as well as change the location. I need the headings to be top 
left of the page. I also need the chapter headings to be top left of 
the page. Please email back if you know how to do this.

> >
> >
> Use the fancyhdr package. You can completely customize the page
> headings, as you wish. See section 3.3 of the "Additional Features"
> manual, and the fancyhdr documentation, which is here:
> http://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/
>
> Richard
>




Re: Thesis -- parent and child chapters

2008-05-31 Thread Ed Sykes


- Original Message - 
From: Ed Sykes [EMAIL PROTECTED]

To: lyx-users@lists.lyx.org
Sent: Sunday, May 25, 2008 10:27 PM
Subject: Thesis -- parent and child chapters



Hi,

I've read through Customization, perhaps someone could point me in the 
right direction.

I'm writing a thesis
Is there a way to designate a parent LyX file that #includes chapters...
so that I can speed up the LaTeX compilation process by commenting out 
chapters other than the one I am editing?


thanks in advance.

cheers,
Ed Sykes 




Re: Thesis -- parent and child chapters

2008-05-31 Thread Ed Sykes


- Original Message - 
From: Ed Sykes [EMAIL PROTECTED]

To: lyx-users@lists.lyx.org
Sent: Sunday, May 25, 2008 10:27 PM
Subject: Thesis -- parent and child chapters



Hi,

I've read through Customization, perhaps someone could point me in the 
right direction.

I'm writing a thesis
Is there a way to designate a parent LyX file that #includes chapters...
so that I can speed up the LaTeX compilation process by commenting out 
chapters other than the one I am editing?


thanks in advance.

cheers,
Ed Sykes 




Re: Thesis -- parent and child chapters

2008-05-31 Thread Ed Sykes


- Original Message - 
From: "Ed Sykes" <[EMAIL PROTECTED]>

To: 
Sent: Sunday, May 25, 2008 10:27 PM
Subject: Thesis -- parent and child chapters



Hi,

I've read through Customization, perhaps someone could point me in the 
right direction.

I'm writing a thesis
Is there a way to designate a parent LyX file that #includes chapters...
so that I can speed up the LaTeX compilation process by commenting out 
chapters other than the one I am editing?


thanks in advance.

cheers,
Ed Sykes 




Re: Thesis first pages

2008-05-29 Thread Maksi


David Hewitt wrote:
 FWIW, I had a nightmare of a time meeting all the formatting stuff my
 WORD-centric academic admin wanted for my dissertation. So I made a set of
 front pages in MS Word that worked when exported as PDF (with Adobe full
 version Acrobat Pro), and just added them to the front of the
 LyX-generated PDF when I was done. It was the simplest solution.

Yes, title page customization is one of the most difficult tasks. I also
tend to do it in an application such as Writer, Scribus and the like and
replace the pages with a PDF editor. It actually works with LaTeX commands
in LyX as well but I have spent way too many days trying again and again and
never achieved exactly what I wanted -- in writer I was finished in five
minutes.

-- 
View this message in context: 
http://www.nabble.com/Thesis-first-pages-tp17494603p17529408.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Thesis first pages

2008-05-29 Thread Manveru
This is kind of task which is much easier to do by drawing than by
programming. But I did front matter for my thesis in Latex and I am adding
it as a package to my documents.

M.

2008/5/29 Maksi [EMAIL PROTECTED]:



 David Hewitt wrote:
  FWIW, I had a nightmare of a time meeting all the formatting stuff my
  WORD-centric academic admin wanted for my dissertation. So I made a set
 of
  front pages in MS Word that worked when exported as PDF (with Adobe full
  version Acrobat Pro), and just added them to the front of the
  LyX-generated PDF when I was done. It was the simplest solution.

 Yes, title page customization is one of the most difficult tasks. I also
 tend to do it in an application such as Writer, Scribus and the like and
 replace the pages with a PDF editor. It actually works with LaTeX commands
 in LyX as well but I have spent way too many days trying again and again
 and
 never achieved exactly what I wanted -- in writer I was finished in five
 minutes.

 --
 View this message in context:
 http://www.nabble.com/Thesis-first-pages-tp17494603p17529408.html
 Sent from the LyX - Users mailing list archive at Nabble.com.




-- 
Manveru
jabber: [EMAIL PROTECTED]
gg: 1624001
http://www.manveru.pl


Re: Thesis first pages

2008-05-29 Thread Maksi


David Hewitt wrote:
 FWIW, I had a nightmare of a time meeting all the formatting stuff my
 WORD-centric academic admin wanted for my dissertation. So I made a set of
 front pages in MS Word that worked when exported as PDF (with Adobe full
 version Acrobat Pro), and just added them to the front of the
 LyX-generated PDF when I was done. It was the simplest solution.

Yes, title page customization is one of the most difficult tasks. I also
tend to do it in an application such as Writer, Scribus and the like and
replace the pages with a PDF editor. It actually works with LaTeX commands
in LyX as well but I have spent way too many days trying again and again and
never achieved exactly what I wanted -- in writer I was finished in five
minutes.

-- 
View this message in context: 
http://www.nabble.com/Thesis-first-pages-tp17494603p17529408.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Thesis first pages

2008-05-29 Thread Manveru
This is kind of task which is much easier to do by drawing than by
programming. But I did front matter for my thesis in Latex and I am adding
it as a package to my documents.

M.

2008/5/29 Maksi [EMAIL PROTECTED]:



 David Hewitt wrote:
  FWIW, I had a nightmare of a time meeting all the formatting stuff my
  WORD-centric academic admin wanted for my dissertation. So I made a set
 of
  front pages in MS Word that worked when exported as PDF (with Adobe full
  version Acrobat Pro), and just added them to the front of the
  LyX-generated PDF when I was done. It was the simplest solution.

 Yes, title page customization is one of the most difficult tasks. I also
 tend to do it in an application such as Writer, Scribus and the like and
 replace the pages with a PDF editor. It actually works with LaTeX commands
 in LyX as well but I have spent way too many days trying again and again
 and
 never achieved exactly what I wanted -- in writer I was finished in five
 minutes.

 --
 View this message in context:
 http://www.nabble.com/Thesis-first-pages-tp17494603p17529408.html
 Sent from the LyX - Users mailing list archive at Nabble.com.




-- 
Manveru
jabber: [EMAIL PROTECTED]
gg: 1624001
http://www.manveru.pl


Re: Thesis first pages

2008-05-29 Thread Maksi


David Hewitt wrote:
> FWIW, I had a nightmare of a time meeting all the formatting stuff my
> WORD-centric academic admin wanted for my dissertation. So I made a set of
> front pages in MS Word that worked when exported as PDF (with Adobe full
> version Acrobat Pro), and just added them to the front of the
> LyX-generated PDF when I was done. It was the simplest solution.

Yes, title page customization is one of the most difficult tasks. I also
tend to do it in an application such as Writer, Scribus and the like and
replace the pages with a PDF editor. It actually works with LaTeX commands
in LyX as well but I have spent way too many days trying again and again and
never achieved exactly what I wanted -- in writer I was finished in five
minutes.

-- 
View this message in context: 
http://www.nabble.com/Thesis-first-pages-tp17494603p17529408.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Thesis first pages

2008-05-29 Thread Manveru
This is kind of task which is much easier to do by drawing than by
programming. But I did front matter for my thesis in Latex and I am adding
it as a package to my documents.

M.

2008/5/29 Maksi <[EMAIL PROTECTED]>:

>
>
> David Hewitt wrote:
> > FWIW, I had a nightmare of a time meeting all the formatting stuff my
> > WORD-centric academic admin wanted for my dissertation. So I made a set
> of
> > front pages in MS Word that worked when exported as PDF (with Adobe full
> > version Acrobat Pro), and just added them to the front of the
> > LyX-generated PDF when I was done. It was the simplest solution.
>
> Yes, title page customization is one of the most difficult tasks. I also
> tend to do it in an application such as Writer, Scribus and the like and
> replace the pages with a PDF editor. It actually works with LaTeX commands
> in LyX as well but I have spent way too many days trying again and again
> and
> never achieved exactly what I wanted -- in writer I was finished in five
> minutes.
>
> --
> View this message in context:
> http://www.nabble.com/Thesis-first-pages-tp17494603p17529408.html
> Sent from the LyX - Users mailing list archive at Nabble.com.
>
>


-- 
Manveru
jabber: [EMAIL PROTECTED]
gg: 1624001
http://www.manveru.pl


Re: Thesis first pages

2008-05-28 Thread David Hewitt

FWIW, I had a nightmare of a time meeting all the formatting stuff my
WORD-centric academic admin wanted for my dissertation. So I made a set of
front pages in MS Word that worked when exported as PDF (with Adobe full
version Acrobat Pro), and just added them to the front of the LyX-generated
PDF when I was done. It was the simplest solution.


Vaclav Smidl wrote:
 
 On Tuesday 27 May 2008, Lukáš Oliva wrote:
   Hi all,
 I want to write thesis in lyx but my faculty uses quite complicated
 first section with images, legal note etc. I wanted to fill it in
 openoffice and export it to pdf and insert to LyX. I was able to do it
 as image, nevertheless I have two problems:

 1) The pages with included forms have numbers on bottom
 2) The pages inserted are automatically resized, so it does not look
 like the original pages.

 Could anyone help to solve these two problems?
 
 Hi,
 I do not think that including a pdf is the best approach.
 
 I would recommend to try to implement this using LyX means. A combination
 of  
   \vspace (Menu Insert Formating Vertical space), 
   \hfill (Menu Insert Formating Horizontal fill),
   \minipage (Menu Insert Box),
 is quite powerful once you get the logic of it.
 
 If you are not sure how to start, send a minimized copy of your pdf and I
 will 
 send you an example .lyx file.
 
 vasek
 
 


-
David Hewitt
Research Fishery Biologist
USGS Klamath Falls Field Station (USA)
-- 
View this message in context: 
http://www.nabble.com/Thesis-first-pages-tp17494603p17520466.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Thesis first pages

2008-05-28 Thread David Hewitt

FWIW, I had a nightmare of a time meeting all the formatting stuff my
WORD-centric academic admin wanted for my dissertation. So I made a set of
front pages in MS Word that worked when exported as PDF (with Adobe full
version Acrobat Pro), and just added them to the front of the LyX-generated
PDF when I was done. It was the simplest solution.


Vaclav Smidl wrote:
 
 On Tuesday 27 May 2008, Lukáš Oliva wrote:
   Hi all,
 I want to write thesis in lyx but my faculty uses quite complicated
 first section with images, legal note etc. I wanted to fill it in
 openoffice and export it to pdf and insert to LyX. I was able to do it
 as image, nevertheless I have two problems:

 1) The pages with included forms have numbers on bottom
 2) The pages inserted are automatically resized, so it does not look
 like the original pages.

 Could anyone help to solve these two problems?
 
 Hi,
 I do not think that including a pdf is the best approach.
 
 I would recommend to try to implement this using LyX means. A combination
 of  
   \vspace (Menu Insert Formating Vertical space), 
   \hfill (Menu Insert Formating Horizontal fill),
   \minipage (Menu Insert Box),
 is quite powerful once you get the logic of it.
 
 If you are not sure how to start, send a minimized copy of your pdf and I
 will 
 send you an example .lyx file.
 
 vasek
 
 


-
David Hewitt
Research Fishery Biologist
USGS Klamath Falls Field Station (USA)
-- 
View this message in context: 
http://www.nabble.com/Thesis-first-pages-tp17494603p17520466.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Thesis first pages

2008-05-28 Thread David Hewitt

FWIW, I had a nightmare of a time meeting all the formatting stuff my
WORD-centric academic admin wanted for my dissertation. So I made a set of
front pages in MS Word that worked when exported as PDF (with Adobe full
version Acrobat Pro), and just added them to the front of the LyX-generated
PDF when I was done. It was the simplest solution.


Vaclav Smidl wrote:
> 
> On Tuesday 27 May 2008, Lukáš Oliva wrote:
>>   Hi all,
>> I want to write thesis in lyx but my faculty uses quite complicated
>> first section with images, legal note etc. I wanted to fill it in
>> openoffice and export it to pdf and insert to LyX. I was able to do it
>> as image, nevertheless I have two problems:
>>
>> 1) The pages with included forms have numbers on bottom
>> 2) The pages inserted are automatically resized, so it does not look
>> like the original pages.
>>
>> Could anyone help to solve these two problems?
> 
> Hi,
> I do not think that including a pdf is the best approach.
> 
> I would recommend to try to implement this using LyX means. A combination
> of  
>   \vspace (Menu >Insert >Formating >Vertical space), 
>   \hfill (Menu >Insert >Formating >Horizontal fill),
>   \minipage (Menu >Insert >Box),
> is quite powerful once you get the logic of it.
> 
> If you are not sure how to start, send a minimized copy of your pdf and I
> will 
> send you an example .lyx file.
> 
> vasek
> 
> 


-
David Hewitt
Research Fishery Biologist
USGS Klamath Falls Field Station (USA)
-- 
View this message in context: 
http://www.nabble.com/Thesis-first-pages-tp17494603p17520466.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Thesis first pages

2008-05-27 Thread Vaclav Smidl
On Tuesday 27 May 2008, Lukáš Oliva wrote:
   Hi all,
 I want to write thesis in lyx but my faculty uses quite complicated
 first section with images, legal note etc. I wanted to fill it in
 openoffice and export it to pdf and insert to LyX. I was able to do it
 as image, nevertheless I have two problems:

 1) The pages with included forms have numbers on bottom
 2) The pages inserted are automatically resized, so it does not look
 like the original pages.

 Could anyone help to solve these two problems?

Hi,
I do not think that including a pdf is the best approach.

I would recommend to try to implement this using LyX means. A combination of  
  \vspace (Menu Insert Formating Vertical space), 
  \hfill (Menu Insert Formating Horizontal fill),
  \minipage (Menu Insert Box),
is quite powerful once you get the logic of it.

If you are not sure how to start, send a minimized copy of your pdf and I will 
send you an example .lyx file.

vasek


Re: Thesis first pages

2008-05-27 Thread Vaclav Smidl
On Tuesday 27 May 2008, Lukáš Oliva wrote:
   Hi all,
 I want to write thesis in lyx but my faculty uses quite complicated
 first section with images, legal note etc. I wanted to fill it in
 openoffice and export it to pdf and insert to LyX. I was able to do it
 as image, nevertheless I have two problems:

 1) The pages with included forms have numbers on bottom
 2) The pages inserted are automatically resized, so it does not look
 like the original pages.

 Could anyone help to solve these two problems?

Hi,
I do not think that including a pdf is the best approach.

I would recommend to try to implement this using LyX means. A combination of  
  \vspace (Menu Insert Formating Vertical space), 
  \hfill (Menu Insert Formating Horizontal fill),
  \minipage (Menu Insert Box),
is quite powerful once you get the logic of it.

If you are not sure how to start, send a minimized copy of your pdf and I will 
send you an example .lyx file.

vasek


Re: Thesis first pages

2008-05-27 Thread Vaclav Smidl
On Tuesday 27 May 2008, Lukáš Oliva wrote:
>   Hi all,
> I want to write thesis in lyx but my faculty uses quite complicated
> first section with images, legal note etc. I wanted to fill it in
> openoffice and export it to pdf and insert to LyX. I was able to do it
> as image, nevertheless I have two problems:
>
> 1) The pages with included forms have numbers on bottom
> 2) The pages inserted are automatically resized, so it does not look
> like the original pages.
>
> Could anyone help to solve these two problems?

Hi,
I do not think that including a pdf is the best approach.

I would recommend to try to implement this using LyX means. A combination of  
  \vspace (Menu >Insert >Formating >Vertical space), 
  \hfill (Menu >Insert >Formating >Horizontal fill),
  \minipage (Menu >Insert >Box),
is quite powerful once you get the logic of it.

If you are not sure how to start, send a minimized copy of your pdf and I will 
send you an example .lyx file.

vasek


Re: Thesis -- parent and child chapters

2008-05-25 Thread Ernesto Posse
You don't need to customize LyX for this. Simply write each chapter in
a separate LyX file (which you can compile and view separately without
the need to comment out anything,) and create a master  thesis file
where you include each chapter with Insert - File - Child Document
(selecting Include as the Include type.) Make sure that all your
chapters have the same document class as the main file. Put the TOC
and bibliography in the main file as well and you'll be able to cite
it from all chapters.


On Sun, May 25, 2008 at 10:27 PM, Ed Sykes [EMAIL PROTECTED] wrote:
 Hi,

 I've read through Customization, perhaps someone could point me in the right
 direction.
 I'm writing a thesis
 Is there a way to designate a parent LyX file that #includes chapters...
 so that I can speed up the LaTeX compilation process by commenting out
 chapters other than the one I am editing?

 thanks in advance.

 cheers,
 Ed Sykes




-- 
Ernesto Posse

Applied Formal Methods Group - Software Technology Lab
School of Computing
Queen's University - Kingston, Ontario, Canada
url: http://none.yet

(and)

Modelling, Simulation and Design Lab - School of Computer Science
McGill University - Montreal, Quebec, Canada
url: http://moncs.cs.mcgill.ca/people/eposse


Re: Thesis -- parent and child chapters

2008-05-25 Thread Ernesto Posse
You don't need to customize LyX for this. Simply write each chapter in
a separate LyX file (which you can compile and view separately without
the need to comment out anything,) and create a master  thesis file
where you include each chapter with Insert - File - Child Document
(selecting Include as the Include type.) Make sure that all your
chapters have the same document class as the main file. Put the TOC
and bibliography in the main file as well and you'll be able to cite
it from all chapters.


On Sun, May 25, 2008 at 10:27 PM, Ed Sykes [EMAIL PROTECTED] wrote:
 Hi,

 I've read through Customization, perhaps someone could point me in the right
 direction.
 I'm writing a thesis
 Is there a way to designate a parent LyX file that #includes chapters...
 so that I can speed up the LaTeX compilation process by commenting out
 chapters other than the one I am editing?

 thanks in advance.

 cheers,
 Ed Sykes




-- 
Ernesto Posse

Applied Formal Methods Group - Software Technology Lab
School of Computing
Queen's University - Kingston, Ontario, Canada
url: http://none.yet

(and)

Modelling, Simulation and Design Lab - School of Computer Science
McGill University - Montreal, Quebec, Canada
url: http://moncs.cs.mcgill.ca/people/eposse


Re: Thesis -- parent and child chapters

2008-05-25 Thread Ernesto Posse
You don't need to customize LyX for this. Simply write each chapter in
a separate LyX file (which you can compile and view separately without
the need to comment out anything,) and create a master  thesis file
where you include each chapter with Insert -> File -> Child Document
(selecting "Include" as the Include type.) Make sure that all your
chapters have the same document class as the main file. Put the TOC
and bibliography in the main file as well and you'll be able to cite
it from all chapters.


On Sun, May 25, 2008 at 10:27 PM, Ed Sykes <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I've read through Customization, perhaps someone could point me in the right
> direction.
> I'm writing a thesis
> Is there a way to designate a parent LyX file that #includes chapters...
> so that I can speed up the LaTeX compilation process by commenting out
> chapters other than the one I am editing?
>
> thanks in advance.
>
> cheers,
> Ed Sykes
>



-- 
Ernesto Posse

Applied Formal Methods Group - Software Technology Lab
School of Computing
Queen's University - Kingston, Ontario, Canada
url: http://none.yet

(and)

Modelling, Simulation and Design Lab - School of Computer Science
McGill University - Montreal, Quebec, Canada
url: http://moncs.cs.mcgill.ca/people/eposse


RE: Thesis template in Lyx (options clash error)

2008-05-06 Thread Adrian Peter
I don't think the ufthesis.cls file is loading amsmath.  The problem
disappears if I comment out the following load package in the preamble:

\usepackage[dvips]{graphicx}

Do I need this package for anything major?  Thanks.

Adrian



-Original Message-
From: G. Milde [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 05, 2008 6:25 AM
To: lyx-users@lists.lyx.org
Subject: Re: Thesis template in Lyx (including a chapter)

On  5.05.08, José Matos wrote:
 On Saturday 03 May 2008 03:30:28 Adrian Peter wrote:
  I have set the document type of the child document (my chapters) to the
  same type as the main lyx file (for which I created the layout file to
  point to the ufthesis.cls file).  Is the child document somehow
redefining
  the graphicx package options?  Thanks.

   I don't think so.

Also, the error pointed to a problem loading amsmath.
Does the ufthesis.cls class load ams? With an option?
Then, the layout file must say so:

  ProvidesAmsmath 1

(see HelpCustomisation), otherwise LyX loads the amsmath package again (if
required or set to do so).

Günter

---Original Error---
Now I am running into a small issue whenever I try to include a chapter as a
child document into my main lyx file.  I get the following error when I try
to do a DVI preview or creating a PDF:

\usepackage
   {amsmath}
The package graphicx has already been loaded with options:
  []
There has now been an attempt to load it with options
  [dvips]
Adding the global options:
  ,dvips
to your \documentclass declaration may fix this.
Try typing  return  to proceed.

I have set the document type of the child document (my chapters) to the same
type as the main lyx file (for which I created the layout file to point to
the ufthesis.cls file).  Is the child document somehow redefining the
graphicx package options?  Thanks.

Adrian



Re: Thesis template in Lyx (options clash error)

2008-05-06 Thread G. Milde
On  6.05.08, Adrian Peter wrote:
 I don't think the ufthesis.cls file is loading amsmath.  The problem
 disappears if I comment out the following load package in the preamble:

 \usepackage[dvips]{graphicx}

 Do I need this package for anything major?  Thanks.

You need it for included graphics, but LyX takes care of this.
I.e. 

* it should not be in the user supplied preamble (DocumentSettingsLaTeX
preamble), 

* but you should see it (with correct options) in the preamble of the
  LaTeX file exported by lyx.

Günter


RE: Thesis template in Lyx (options clash error)

2008-05-06 Thread Adrian Peter
I don't think the ufthesis.cls file is loading amsmath.  The problem
disappears if I comment out the following load package in the preamble:

\usepackage[dvips]{graphicx}

Do I need this package for anything major?  Thanks.

Adrian



-Original Message-
From: G. Milde [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 05, 2008 6:25 AM
To: lyx-users@lists.lyx.org
Subject: Re: Thesis template in Lyx (including a chapter)

On  5.05.08, José Matos wrote:
 On Saturday 03 May 2008 03:30:28 Adrian Peter wrote:
  I have set the document type of the child document (my chapters) to the
  same type as the main lyx file (for which I created the layout file to
  point to the ufthesis.cls file).  Is the child document somehow
redefining
  the graphicx package options?  Thanks.

   I don't think so.

Also, the error pointed to a problem loading amsmath.
Does the ufthesis.cls class load ams? With an option?
Then, the layout file must say so:

  ProvidesAmsmath 1

(see HelpCustomisation), otherwise LyX loads the amsmath package again (if
required or set to do so).

Günter

---Original Error---
Now I am running into a small issue whenever I try to include a chapter as a
child document into my main lyx file.  I get the following error when I try
to do a DVI preview or creating a PDF:

\usepackage
   {amsmath}
The package graphicx has already been loaded with options:
  []
There has now been an attempt to load it with options
  [dvips]
Adding the global options:
  ,dvips
to your \documentclass declaration may fix this.
Try typing  return  to proceed.

I have set the document type of the child document (my chapters) to the same
type as the main lyx file (for which I created the layout file to point to
the ufthesis.cls file).  Is the child document somehow redefining the
graphicx package options?  Thanks.

Adrian



Re: Thesis template in Lyx (options clash error)

2008-05-06 Thread G. Milde
On  6.05.08, Adrian Peter wrote:
 I don't think the ufthesis.cls file is loading amsmath.  The problem
 disappears if I comment out the following load package in the preamble:

 \usepackage[dvips]{graphicx}

 Do I need this package for anything major?  Thanks.

You need it for included graphics, but LyX takes care of this.
I.e. 

* it should not be in the user supplied preamble (DocumentSettingsLaTeX
preamble), 

* but you should see it (with correct options) in the preamble of the
  LaTeX file exported by lyx.

Günter


RE: Thesis template in Lyx (options clash error)

2008-05-06 Thread Adrian Peter
I don't think the ufthesis.cls file is loading amsmath.  The problem
disappears if I comment out the following load package in the preamble:

\usepackage[dvips]{graphicx}

Do I need this package for anything major?  Thanks.

Adrian



-Original Message-
From: G. Milde [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 05, 2008 6:25 AM
To: lyx-users@lists.lyx.org
Subject: Re: Thesis template in Lyx (including a chapter)

On  5.05.08, José Matos wrote:
> On Saturday 03 May 2008 03:30:28 Adrian Peter wrote:
> > I have set the document type of the child document (my chapters) to the
> > same type as the main lyx file (for which I created the layout file to
> > point to the ufthesis.cls file).  Is the child document somehow
redefining
> > the graphicx package options?  Thanks.

>   I don't think so.

Also, the error pointed to a problem loading amsmath.
Does the ufthesis.cls class load ams? With an option?
Then, the layout file must say so:

  ProvidesAmsmath 1

(see Help>Customisation), otherwise LyX loads the amsmath package again (if
required or set to do so).

Günter

---Original Error---
Now I am running into a small issue whenever I try to include a chapter as a
child document into my main lyx file.  I get the following error when I try
to do a DVI preview or creating a PDF:

>>\usepackage
>>   {amsmath}
>>The package graphicx has already been loaded with options:
>>  []
>>There has now been an attempt to load it with options
>>  [dvips]
>>Adding the global options:
>>  ,dvips
>>to your \documentclass declaration may fix this.
>>Try typingto proceed.

I have set the document type of the child document (my chapters) to the same
type as the main lyx file (for which I created the layout file to point to
the ufthesis.cls file).  Is the child document somehow redefining the
graphicx package options?  Thanks.

Adrian



Re: Thesis template in Lyx (options clash error)

2008-05-06 Thread G. Milde
On  6.05.08, Adrian Peter wrote:
> I don't think the ufthesis.cls file is loading amsmath.  The problem
> disappears if I comment out the following load package in the preamble:

> \usepackage[dvips]{graphicx}

> Do I need this package for anything major?  Thanks.

You need it for included graphics, but LyX takes care of this.
I.e. 

* it should not be in the user supplied preamble (Document>Settings>LaTeX
preamble), 

* but you should see it (with correct options) in the preamble of the
  LaTeX file exported by lyx.

Günter


Re: Thesis template in Lyx (including a chapter)

2008-05-05 Thread José Matos
On Saturday 03 May 2008 03:30:28 Adrian Peter wrote:
 I have set the document type of the child document (my chapters) to the
 same type as the main lyx file (for which I created the layout file to
 point to the ufthesis.cls file).  Is the child document somehow redefining
 the graphicx package options?  Thanks.

  I don't think so.

 Adrian

-- 
José Abílio


Re: Thesis template in Lyx (including a chapter)

2008-05-05 Thread G. Milde
On  5.05.08, José Matos wrote:
 On Saturday 03 May 2008 03:30:28 Adrian Peter wrote:
  I have set the document type of the child document (my chapters) to the
  same type as the main lyx file (for which I created the layout file to
  point to the ufthesis.cls file).  Is the child document somehow redefining
  the graphicx package options?  Thanks.

   I don't think so.

Also, the error pointed to a problem loading amsmath.
Does the ufthesis.cls class load ams? With an option?
Then, the layout file must say so:

  ProvidesAmsmath 1

(see HelpCustomisation), otherwise LyX loads the amsmath package again (if
required or set to do so).

Günter


Re: Thesis template in Lyx (including a chapter)

2008-05-05 Thread José Matos
On Saturday 03 May 2008 03:30:28 Adrian Peter wrote:
 I have set the document type of the child document (my chapters) to the
 same type as the main lyx file (for which I created the layout file to
 point to the ufthesis.cls file).  Is the child document somehow redefining
 the graphicx package options?  Thanks.

  I don't think so.

 Adrian

-- 
José Abílio


Re: Thesis template in Lyx (including a chapter)

2008-05-05 Thread G. Milde
On  5.05.08, José Matos wrote:
 On Saturday 03 May 2008 03:30:28 Adrian Peter wrote:
  I have set the document type of the child document (my chapters) to the
  same type as the main lyx file (for which I created the layout file to
  point to the ufthesis.cls file).  Is the child document somehow redefining
  the graphicx package options?  Thanks.

   I don't think so.

Also, the error pointed to a problem loading amsmath.
Does the ufthesis.cls class load ams? With an option?
Then, the layout file must say so:

  ProvidesAmsmath 1

(see HelpCustomisation), otherwise LyX loads the amsmath package again (if
required or set to do so).

Günter


Re: Thesis template in Lyx (including a chapter)

2008-05-05 Thread José Matos
On Saturday 03 May 2008 03:30:28 Adrian Peter wrote:
> I have set the document type of the child document (my chapters) to the
> same type as the main lyx file (for which I created the layout file to
> point to the ufthesis.cls file).  Is the child document somehow redefining
> the graphicx package options?  Thanks.

  I don't think so.

> Adrian

-- 
José Abílio


Re: Thesis template in Lyx (including a chapter)

2008-05-05 Thread G. Milde
On  5.05.08, José Matos wrote:
> On Saturday 03 May 2008 03:30:28 Adrian Peter wrote:
> > I have set the document type of the child document (my chapters) to the
> > same type as the main lyx file (for which I created the layout file to
> > point to the ufthesis.cls file).  Is the child document somehow redefining
> > the graphicx package options?  Thanks.

>   I don't think so.

Also, the error pointed to a problem loading amsmath.
Does the ufthesis.cls class load ams? With an option?
Then, the layout file must say so:

  ProvidesAmsmath 1

(see Help>Customisation), otherwise LyX loads the amsmath package again (if
required or set to do so).

Günter


RE: Thesis template in Lyx (including a chapter)

2008-05-02 Thread Adrian Peter
Thank you everyone for your suggestions.  I have managed to get the main
body lyx file setup properly.  Now I am running into a small issue whenever
I try to include a chapter as a child document into my main lyx file.  I get
the following error when I try to do a DVI preview or creating a PDF:

\usepackage
   {amsmath}
The package graphicx has already been loaded with options:
  []
There has now been an attempt to load it with options
  [dvips]
Adding the global options:
  ,dvips
to your \documentclass declaration may fix this.
Try typing  return  to proceed.

I have set the document type of the child document (my chapters) to the same
type as the main lyx file (for which I created the layout file to point to
the ufthesis.cls file).  Is the child document somehow redefining the
graphicx package options?  Thanks.

Adrian
  



-Original Message-
From: Bob Lounsbury [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 01, 2008 6:19 PM
To: Adrian Peter
Cc: lyx-users@lists.lyx.org
Subject: Re: Thesis template in Lyx

On Thu, May 1, 2008 at 8:31 AM, Adrian Peter [EMAIL PROTECTED] wrote:
 Thank you for your response.  When you say:

  So, like I said you'll probably want to start with a blank document and
 just modify it to match the thesis requirements.

 Do you mean that I should use the approach of creating the layout file
like
 you suggested or just working with a blank report document.  If it is the
 latter approach, my only worry is that they have redefined so many of the
 latex settings (section, subsection, itemized list) that I would have to
 place ERT all over the document to get it to conform to their
 specifications.  Or am I misunderstanding this?  Thanks.

 Adrian

 Cheers,
 /Bob


I just meant that I would not use the example.tex they gave. Yes, I
would use the layout file that I have described. I would just start a
blank document with the ufthesis.layout and begin.

Cheers
/Bob



RE: Thesis template in Lyx (including a chapter)

2008-05-02 Thread Adrian Peter
Thank you everyone for your suggestions.  I have managed to get the main
body lyx file setup properly.  Now I am running into a small issue whenever
I try to include a chapter as a child document into my main lyx file.  I get
the following error when I try to do a DVI preview or creating a PDF:

\usepackage
   {amsmath}
The package graphicx has already been loaded with options:
  []
There has now been an attempt to load it with options
  [dvips]
Adding the global options:
  ,dvips
to your \documentclass declaration may fix this.
Try typing  return  to proceed.

I have set the document type of the child document (my chapters) to the same
type as the main lyx file (for which I created the layout file to point to
the ufthesis.cls file).  Is the child document somehow redefining the
graphicx package options?  Thanks.

Adrian
  



-Original Message-
From: Bob Lounsbury [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 01, 2008 6:19 PM
To: Adrian Peter
Cc: lyx-users@lists.lyx.org
Subject: Re: Thesis template in Lyx

On Thu, May 1, 2008 at 8:31 AM, Adrian Peter [EMAIL PROTECTED] wrote:
 Thank you for your response.  When you say:

  So, like I said you'll probably want to start with a blank document and
 just modify it to match the thesis requirements.

 Do you mean that I should use the approach of creating the layout file
like
 you suggested or just working with a blank report document.  If it is the
 latter approach, my only worry is that they have redefined so many of the
 latex settings (section, subsection, itemized list) that I would have to
 place ERT all over the document to get it to conform to their
 specifications.  Or am I misunderstanding this?  Thanks.

 Adrian

 Cheers,
 /Bob


I just meant that I would not use the example.tex they gave. Yes, I
would use the layout file that I have described. I would just start a
blank document with the ufthesis.layout and begin.

Cheers
/Bob



RE: Thesis template in Lyx (including a chapter)

2008-05-02 Thread Adrian Peter
Thank you everyone for your suggestions.  I have managed to get the main
body lyx file setup properly.  Now I am running into a small issue whenever
I try to include a chapter as a child document into my main lyx file.  I get
the following error when I try to do a DVI preview or creating a PDF:

>>\usepackage
>>   {amsmath}
>>The package graphicx has already been loaded with options:
>>  []
>>There has now been an attempt to load it with options
>>  [dvips]
>>Adding the global options:
>>  ,dvips
>>to your \documentclass declaration may fix this.
>>Try typingto proceed.

I have set the document type of the child document (my chapters) to the same
type as the main lyx file (for which I created the layout file to point to
the ufthesis.cls file).  Is the child document somehow redefining the
graphicx package options?  Thanks.

Adrian
  



-Original Message-
From: Bob Lounsbury [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 01, 2008 6:19 PM
To: Adrian Peter
Cc: lyx-users@lists.lyx.org
Subject: Re: Thesis template in Lyx

On Thu, May 1, 2008 at 8:31 AM, Adrian Peter <[EMAIL PROTECTED]> wrote:
> Thank you for your response.  When you say:
>
> > So, like I said you'll probably want to start with a blank document and
> just modify it to match the thesis requirements.
>
> Do you mean that I should use the approach of creating the layout file
like
> you suggested or just working with a blank report document.  If it is the
> latter approach, my only worry is that they have redefined so many of the
> latex settings (section, subsection, itemized list) that I would have to
> place ERT all over the document to get it to conform to their
> specifications.  Or am I misunderstanding this?  Thanks.
>
> Adrian
>
> Cheers,
> /Bob


I just meant that I would not use the example.tex they gave. Yes, I
would use the layout file that I have described. I would just start a
blank document with the ufthesis.layout and begin.

Cheers
/Bob



RE: Thesis template in Lyx

2008-05-01 Thread Adrian Peter
Thank you for your response.  When you say:

 So, like I said you'll probably want to start with a blank document and
just modify it to match the thesis requirements.

Do you mean that I should use the approach of creating the layout file like
you suggested or just working with a blank report document.  If it is the
latter approach, my only worry is that they have redefined so many of the
latex settings (section, subsection, itemized list) that I would have to
place ERT all over the document to get it to conform to their
specifications.  Or am I misunderstanding this?  Thanks.

Adrian


-Original Message-
From: Bob Lounsbury [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 30, 2008 3:58 PM
To: Adrian Peter
Cc: lyx-users@lists.lyx.org
Subject: Re: Thesis template in Lyx

On Wed, Apr 30, 2008 at 12:23 PM, Adrian Peter [EMAIL PROTECTED] wrote:




 Hi,



 I want to use Lyx to write my dissertation.  However, our university
already
 provides a LaTex template (cls file) that has to be followed exactly.
What
 is the easiest way to use Lyx to write my dissertation?

If you want to use LyX it could get quite involved, but you can always
start slow and build up to see if it will work.

 (1)Should I try to create a layout file to use the latex cls file?  I
 have never created a Lyx layout file before so I don't know how difficult
 this is.  Any help on this or a if a tutorial exists on how to create a
 layout file for a cls file would be greatly appreciated.  I have attached
 the cls file.

The layout file is really just for LyX representation. I looked at
your .cls file and they use the report.cls so I just copied:

C:\Program Files\LyX15\Resources\layouts\report.layout
to
C:\Documents and Settings\username\Application
Data\lyx15\layouts\report.layout

I then renamed report.layout to ufthesis.layout and changed the first line
from:

\DeclareLaTeXClass{report}
to
\DeclareLaTeXClass{ufthesis}

And done. You now have a layout file for your ufthesis.cls file.

Next, you need to place the ufthesis.cls in your local texmf
directory. For me on XP with MiKTeX 2.6 this is located at:

C:\Documents and Settings\username\Application Data\MiKTeX\2.6\tex\latex

Then refresh the MiKTeX FNDB. In Start-All Programs-MiKTeX
2.6-Settings-General. After that you should start LyX and
Tools-Reconfigure (Important step). Then restart LyX and under
Document-Settings-Document Class you should see ufthesis and now
when you insert the toc, chapters, etc they should match the
formatting of the thesis when you export to pdf or dvi.

 (2)Should I try to import a sample Tex file the university provides
into
 Lyx?  I tried to import it into Lyx but it failed.  Not sure what is going
 on.  I have attached the sample Tex file as well.

I was able to import the .tex with this new ufthesis.layout, but it
looks like it could be complicated. So, like I said you'll probably
want to start with a blank document and just modify it to match the
thesis requirements.

 I am not an advanced Lyx user so thank you very much in advance for the
 help.



 Adrian



Cheers,
/Bob



RE: Thesis template in Lyx

2008-05-01 Thread Adrian Peter
What do you mean by start modifying it from there? Do I have to modify the
layout file to define how sections, subsections, etc. should be in Lyx?
Sorry if this sounds like a dumb question.  If this is the case, is there an
specific example of how I should do this to match the CLS file?  Thanks.

-Original Message-
From: José Matos [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 30, 2008 7:17 PM
To: lyx-users@lists.lyx.org
Subject: Re: Thesis template in Lyx

On Wednesday 30 April 2008 20:57:54 Bob Lounsbury wrote:
 I then renamed report.layout to ufthesis.layout and changed the first line
 from:

 \DeclareLaTeXClass{report}
 to
 \DeclareLaTeXClass{ufthesis}

 And done. You now have a layout file for your ufthesis.cls file.

Or better yet, include it and start modifying from there:

#% Do not delete the line below; configure depends on this
#  \DeclareLaTeXClass[ufthesis]{UF Thesis}

Format 4
Input report

# Adding specific modifications below this line
..

-- 
José Abílio



Re: Thesis template in Lyx

2008-05-01 Thread Bob Lounsbury
On Thu, May 1, 2008 at 8:31 AM, Adrian Peter [EMAIL PROTECTED] wrote:
 Thank you for your response.  When you say:

  So, like I said you'll probably want to start with a blank document and
 just modify it to match the thesis requirements.

 Do you mean that I should use the approach of creating the layout file like
 you suggested or just working with a blank report document.  If it is the
 latter approach, my only worry is that they have redefined so many of the
 latex settings (section, subsection, itemized list) that I would have to
 place ERT all over the document to get it to conform to their
 specifications.  Or am I misunderstanding this?  Thanks.

 Adrian

 Cheers,
 /Bob


I just meant that I would not use the example.tex they gave. Yes, I
would use the layout file that I have described. I would just start a
blank document with the ufthesis.layout and begin.

Cheers
/Bob


RE: Thesis template in Lyx

2008-05-01 Thread Adrian Peter
Thank you for your response.  When you say:

 So, like I said you'll probably want to start with a blank document and
just modify it to match the thesis requirements.

Do you mean that I should use the approach of creating the layout file like
you suggested or just working with a blank report document.  If it is the
latter approach, my only worry is that they have redefined so many of the
latex settings (section, subsection, itemized list) that I would have to
place ERT all over the document to get it to conform to their
specifications.  Or am I misunderstanding this?  Thanks.

Adrian


-Original Message-
From: Bob Lounsbury [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 30, 2008 3:58 PM
To: Adrian Peter
Cc: lyx-users@lists.lyx.org
Subject: Re: Thesis template in Lyx

On Wed, Apr 30, 2008 at 12:23 PM, Adrian Peter [EMAIL PROTECTED] wrote:




 Hi,



 I want to use Lyx to write my dissertation.  However, our university
already
 provides a LaTex template (cls file) that has to be followed exactly.
What
 is the easiest way to use Lyx to write my dissertation?

If you want to use LyX it could get quite involved, but you can always
start slow and build up to see if it will work.

 (1)Should I try to create a layout file to use the latex cls file?  I
 have never created a Lyx layout file before so I don't know how difficult
 this is.  Any help on this or a if a tutorial exists on how to create a
 layout file for a cls file would be greatly appreciated.  I have attached
 the cls file.

The layout file is really just for LyX representation. I looked at
your .cls file and they use the report.cls so I just copied:

C:\Program Files\LyX15\Resources\layouts\report.layout
to
C:\Documents and Settings\username\Application
Data\lyx15\layouts\report.layout

I then renamed report.layout to ufthesis.layout and changed the first line
from:

\DeclareLaTeXClass{report}
to
\DeclareLaTeXClass{ufthesis}

And done. You now have a layout file for your ufthesis.cls file.

Next, you need to place the ufthesis.cls in your local texmf
directory. For me on XP with MiKTeX 2.6 this is located at:

C:\Documents and Settings\username\Application Data\MiKTeX\2.6\tex\latex

Then refresh the MiKTeX FNDB. In Start-All Programs-MiKTeX
2.6-Settings-General. After that you should start LyX and
Tools-Reconfigure (Important step). Then restart LyX and under
Document-Settings-Document Class you should see ufthesis and now
when you insert the toc, chapters, etc they should match the
formatting of the thesis when you export to pdf or dvi.

 (2)Should I try to import a sample Tex file the university provides
into
 Lyx?  I tried to import it into Lyx but it failed.  Not sure what is going
 on.  I have attached the sample Tex file as well.

I was able to import the .tex with this new ufthesis.layout, but it
looks like it could be complicated. So, like I said you'll probably
want to start with a blank document and just modify it to match the
thesis requirements.

 I am not an advanced Lyx user so thank you very much in advance for the
 help.



 Adrian



Cheers,
/Bob



RE: Thesis template in Lyx

2008-05-01 Thread Adrian Peter
What do you mean by start modifying it from there? Do I have to modify the
layout file to define how sections, subsections, etc. should be in Lyx?
Sorry if this sounds like a dumb question.  If this is the case, is there an
specific example of how I should do this to match the CLS file?  Thanks.

-Original Message-
From: José Matos [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 30, 2008 7:17 PM
To: lyx-users@lists.lyx.org
Subject: Re: Thesis template in Lyx

On Wednesday 30 April 2008 20:57:54 Bob Lounsbury wrote:
 I then renamed report.layout to ufthesis.layout and changed the first line
 from:

 \DeclareLaTeXClass{report}
 to
 \DeclareLaTeXClass{ufthesis}

 And done. You now have a layout file for your ufthesis.cls file.

Or better yet, include it and start modifying from there:

#% Do not delete the line below; configure depends on this
#  \DeclareLaTeXClass[ufthesis]{UF Thesis}

Format 4
Input report

# Adding specific modifications below this line
..

-- 
José Abílio



Re: Thesis template in Lyx

2008-05-01 Thread Bob Lounsbury
On Thu, May 1, 2008 at 8:31 AM, Adrian Peter [EMAIL PROTECTED] wrote:
 Thank you for your response.  When you say:

  So, like I said you'll probably want to start with a blank document and
 just modify it to match the thesis requirements.

 Do you mean that I should use the approach of creating the layout file like
 you suggested or just working with a blank report document.  If it is the
 latter approach, my only worry is that they have redefined so many of the
 latex settings (section, subsection, itemized list) that I would have to
 place ERT all over the document to get it to conform to their
 specifications.  Or am I misunderstanding this?  Thanks.

 Adrian

 Cheers,
 /Bob


I just meant that I would not use the example.tex they gave. Yes, I
would use the layout file that I have described. I would just start a
blank document with the ufthesis.layout and begin.

Cheers
/Bob


RE: Thesis template in Lyx

2008-05-01 Thread Adrian Peter
Thank you for your response.  When you say:

> So, like I said you'll probably want to start with a blank document and
just modify it to match the thesis requirements.

Do you mean that I should use the approach of creating the layout file like
you suggested or just working with a blank report document.  If it is the
latter approach, my only worry is that they have redefined so many of the
latex settings (section, subsection, itemized list) that I would have to
place ERT all over the document to get it to conform to their
specifications.  Or am I misunderstanding this?  Thanks.

Adrian


-Original Message-
From: Bob Lounsbury [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 30, 2008 3:58 PM
To: Adrian Peter
Cc: lyx-users@lists.lyx.org
Subject: Re: Thesis template in Lyx

On Wed, Apr 30, 2008 at 12:23 PM, Adrian Peter <[EMAIL PROTECTED]> wrote:
>
>
>
>
> Hi,
>
>
>
> I want to use Lyx to write my dissertation.  However, our university
already
> provides a LaTex template (cls file) that has to be followed exactly.
What
> is the easiest way to use Lyx to write my dissertation?

If you want to use LyX it could get quite involved, but you can always
start slow and build up to see if it will work.

> (1)Should I try to create a layout file to use the latex cls file?  I
> have never created a Lyx layout file before so I don't know how difficult
> this is.  Any help on this or a if a tutorial exists on how to create a
> layout file for a cls file would be greatly appreciated.  I have attached
> the cls file.

The layout file is really just for LyX representation. I looked at
your .cls file and they use the report.cls so I just copied:

C:\Program Files\LyX15\Resources\layouts\report.layout
to
C:\Documents and Settings\username\Application
Data\lyx15\layouts\report.layout

I then renamed report.layout to ufthesis.layout and changed the first line
from:

\DeclareLaTeXClass{report}
to
\DeclareLaTeXClass{ufthesis}

And done. You now have a layout file for your ufthesis.cls file.

Next, you need to place the ufthesis.cls in your local texmf
directory. For me on XP with MiKTeX 2.6 this is located at:

C:\Documents and Settings\username\Application Data\MiKTeX\2.6\tex\latex

Then refresh the MiKTeX FNDB. In Start->All Programs->MiKTeX
2.6->Settings->General. After that you should start LyX and
Tools->Reconfigure (Important step). Then restart LyX and under
Document->Settings->Document Class you should see ufthesis and now
when you insert the toc, chapters, etc they should match the
formatting of the thesis when you export to pdf or dvi.

> (2)Should I try to import a sample Tex file the university provides
into
> Lyx?  I tried to import it into Lyx but it failed.  Not sure what is going
> on.  I have attached the sample Tex file as well.

I was able to import the .tex with this new ufthesis.layout, but it
looks like it could be complicated. So, like I said you'll probably
want to start with a blank document and just modify it to match the
thesis requirements.

> I am not an advanced Lyx user so thank you very much in advance for the
> help.
>
>
>
> Adrian
>
>

Cheers,
/Bob



RE: Thesis template in Lyx

2008-05-01 Thread Adrian Peter
What do you mean by "start modifying it from there"? Do I have to modify the
layout file to define how sections, subsections, etc. should be in Lyx?
Sorry if this sounds like a dumb question.  If this is the case, is there an
specific example of how I should do this to match the CLS file?  Thanks.

-Original Message-
From: José Matos [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 30, 2008 7:17 PM
To: lyx-users@lists.lyx.org
Subject: Re: Thesis template in Lyx

On Wednesday 30 April 2008 20:57:54 Bob Lounsbury wrote:
> I then renamed report.layout to ufthesis.layout and changed the first line
> from:
>
> \DeclareLaTeXClass{report}
> to
> \DeclareLaTeXClass{ufthesis}
>
> And done. You now have a layout file for your ufthesis.cls file.

Or better yet, include it and start modifying from there:

#% Do not delete the line below; configure depends on this
#  \DeclareLaTeXClass[ufthesis]{UF Thesis}

Format 4
Input report

# Adding specific modifications below this line
..

-- 
José Abílio



Re: Thesis template in Lyx

2008-05-01 Thread Bob Lounsbury
On Thu, May 1, 2008 at 8:31 AM, Adrian Peter <[EMAIL PROTECTED]> wrote:
> Thank you for your response.  When you say:
>
> > So, like I said you'll probably want to start with a blank document and
> just modify it to match the thesis requirements.
>
> Do you mean that I should use the approach of creating the layout file like
> you suggested or just working with a blank report document.  If it is the
> latter approach, my only worry is that they have redefined so many of the
> latex settings (section, subsection, itemized list) that I would have to
> place ERT all over the document to get it to conform to their
> specifications.  Or am I misunderstanding this?  Thanks.
>
> Adrian
>
> Cheers,
> /Bob


I just meant that I would not use the example.tex they gave. Yes, I
would use the layout file that I have described. I would just start a
blank document with the ufthesis.layout and begin.

Cheers
/Bob


  1   2   3   >