Re: Footnote without numbering (new)

2008-05-29 Thread G. Milde
On 28.05.08, Adrian Peter wrote:
 On Wed, May 28, 2008 at 11:30 AM, Adrian Peter [EMAIL PROTECTED] wrote:

  I would need the contents of the float to appear a footnote at the
  bottom of the page.  Not clear how placing it in a float will cause
  this to occur. Because you can tell LaTeX to place the float at the
  bottom of the page. Look at the example. Typeset it. Does it do what
  you want?

 Thanks!  Now I see what you mean.  I am going to try this out.  Thanks
 again.

Another option would be to temporarily redefine the command that
creates the footnote's mark (as ERT)::

   \makeatletter
   [EMAIL PROTECTED]@makefnmark
   [EMAIL PROTECTED]
   \makeatother
   
   % footnotetext will not advance the footnote counter
   \footnotetext{footnote without number}
   
   \makeatletter
   [EMAIL PROTECTED]@makefnmark}
   \makeatother
   
   \footnote{normale Fußnote}


Günter


Re: about the style of the section numbering

2008-05-29 Thread Maksi


Haiyang Chao wrote:
 Thanks for your prompt response. Actually, Ijust need to modify another
 guy's file. But he is also not so familiar with lyx. My lyx file is using
 ieeetran.cls. It looks like document setting is the only part I can
 modify
 to change the page style.

LaTeX has come a long way and today the basic usage of LaTeX starts with the
choice of the document class. At least two packages are very powerful and
very configurable: Memoir and KOMA-Script. Within these classes you can
change practically everything you want. For other classes (the regular ones)
you need a lot of extra packages to change their look and behaviour. And
then there are very special classes such as AMS, IEEE and so on which are
often written for very special purposes such as specific journals. Unless
you are writing for such a journal providing its own document class or
unless you want your writings to look exactly like in one of these journals,
I for my part would not recommend using them. Use Memoir or KOMA instead and
check their manuals to make changes. Quite a few typical changes can be done
very easily by mouse-click in LyX’ document settings dialogue. If you need
help with theses classes simply ask on the list.
-- 
View this message in context: 
http://www.nabble.com/about-the-style-of-the-section-numbering-tp17508124p17529204.html
Sent from the LyX - Users mailing list archive at Nabble.com.



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.



How can I do this?

2008-05-29 Thread Nicolás

Hi!

I am writing a thesis and I need to include some articles verbatim, that is, with the format and style they where originally published. 
Using child documents requires files to have the same style. So how can I do, if it is possible, what I want to do?


Thanks

Nicolás


Re: LyX and Scientific Word/Workplace

2008-05-29 Thread Ken
Hi all,

I wanted to follow up this thread in case anyone else has the same issue.  The
temporary solution I have found is to:
(1) in LyX, do File  Export  LaTeX (plain)
(2) in SWP, do File  Import Contents

This appears to import the LaTeX code within the begin/end{document}.  

This seems to work for a document with text, mathematical equations, and floats
but it does NOT like tables.  When the document has a table SWP utilizes 100% of
the CPU and the memory usage climbs continuously.

I'll update this thread if/when I discover more.

Ken





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: Lyx 1.5.3 not showing references from Jabref 2.3.1

2008-05-29 Thread Paul A. Rubin

vu wrote:






Hi, thanks for the help. I've exported it to LaTex (using pdflatex), but I
don't know how to compile it manually. I haven't had a chance to really
get into the fine details of Lyx. How would I do this?
http://www.nabble.com/file/p17527137/CONS6017-Essay.log CONS6017-Essay.log 
http://www.nabble.com/file/p17527137/CONS6017-Essay.pdf CONS6017-Essay.pdf 
http://www.nabble.com/file/p17527137/CONS6017-Essay.tex CONS6017-Essay.tex 


In a terminal, run 'pdflatex CONS6017-Essay.tex', which should produce a 
file with extension .aux.  Then run 'bibtex CONS6017-Essay', then 
'pdflatex CONS6017-Essay.tex' again.


I've also checked the Lyx log in my tmp folder, and fould that it says
LaTeX Warning: There were undefined references..


This is not entirely surprising.  The LaTeX/BibTeX combination requires 
multiple passes.  On the first LaTeX pass, an auxiliary file is 
generated with information about required citations.  BibTeX uses that 
file and the .bib bibliography file to create a file of stuff to insert 
in the document (.bbl).  The initial LaTeX pass flags all references as 
undefined.  On the second LaTeX pass, it uses the .bbl file to fix 
things up.


I'm not sure if this will be helpful, but I've included both the exported
.tex file, the tmp .log file, and the PDF output as an attachment here.

Please note that I have changed nothing in my setup of Lyx since changing to
Ubuntu 8.04. I've had pretty much the same document settings (usually at
Natbib, but sometimes Jurabib), and usually the same bst files (usually the
ones included in Lyx, such as naturemag or author-date).


Between the last time you successfully used the JabRef file and now, did 
you edit anything in the JabRef (.bib) file?  Frequently something gets 
broken in a .bib file -- either a syntactically incorrect entry is 
produced, or a character from an encoding that does not match the 
document is inserted -- and the sequence above breaks down.


/Paul



Re: Lyx crashes everytime I try to open my document

2008-05-29 Thread G. Milde
On 28.05.08, Abdelrazak Younes wrote:
 Helge Hafting wrote:
 Abdelrazak Younes wrote:
 Jean-Marc Lasgouttes wrote:

 How difficult would it be to support unicode in maths?

 In 1.5 forget about it. In 1.6 that would require a lot of work I
 guess.
 This wasn't any generic unicode character, it was a delta which is  
 normally used in math. The only strange thing about it was that it
 was in unicode rather than spelled out \delta. 

Support for individuall unicode characters in math can be achieved easily
with lines like

% centered dot
\DeclareUnicodeCharacter{00B7}{\ifmmode\cdot\else\textperiodcentered\fi}

in the LaTeX preamble (from Herbert Voss' de_math.lyx tips)
without any change to the LyX code.

 A simple table with unicode characters and their equivalent
 math commands (\alpha, \beta, and so on) could translate any
 non-ascii the users somehow manages to bring into mathed.

As with all common LaTeX problems, there should be a package providing
this kind of table.

And indeed, the package ucs comes with the option mathletters
which enables the use of unicode greek letters in the document replacing
them with greek symbols from the math alphabet (not recommended for
typesetting Greek text, though).

Unfortunately, with \usepackage[mathletters]{ucs}, the above definition
of the centered dot is lost and $5·4=20$ is printed as 5Δ4=20 :-(

There has also been discussion on this topic on the latex3 list
http://osdir.com/ml/tex.latex.latex3/2003-01/msg00048.html
and there is a package inputenx on CTAN with a math option that
depends on the experimental package 
inpmath http://www.latex-project.org/code/experimental/inpmath.zip

 Things are more complicated when you speak in terms of _current_ LyX  
 code :-)

 Basically, mathed does not use unicode but sepecial 8-bit codepoints  
 reflecting their associate modern font symbol codepoints.

See the attached lyx file for a minimal example that works in my lyx
1.5.5.

Günter


math-inputenc-text.lyx
Description: application/lyx


Re: How can I do this?

2008-05-29 Thread Paul A. Rubin

Nicolás wrote:

Hi!

I am writing a thesis and I need to include some articles verbatim, that 
is, with the format and style they where originally published. Using 
child documents requires files to have the same style. So how can I do, 
if it is possible, what I want to do?




If they are PDF files, and if you are producing PDF output of your 
thesis, you might try the pdfpages package, which will let you insert 
all or some pages from each article's PDF file directly into your output 
file.


/Paul



Sectioned bibliogaphy

2008-05-29 Thread gdmj100

Hi Lyx group,
I am in dire need of some experienced user assistance.
I recently switched to Lyx to write my thesis and have a reference format
problem that I just can't get rid of.
I am very new to the LaTeX world, but feel comfortable working within the
LyX constraints.
I would like to, by entering in either some preamble code, or latex script
in the document, make an unsorted bibliography (bibtopic does not do
unsorted) at the end of each chapter, but also using citesort, where the
citations are reordered and then collapsed using hyphens.
I have trawled various forums, and tried a few suggestions based on
bibunits, but they all have failed miserably.
I hope that someone up to the challenge, as doing it in Lyx is a much more
attractive option than dropping into a tex file.
Thank you for your time, all help is greatly appreciated.

-- 
View this message in context: 
http://www.nabble.com/Sectioned-bibliogaphy-tp17536263p17536263.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Sectioned bibliogaphy

2008-05-29 Thread gdmj100

Hi Lyx group,
I am in dire need of some experienced user assistance.
I recently switched to Lyx to write my thesis and have a reference format
problem that I just can't get rid of.
I am very new to the LaTeX world, but feel comfortable working within the
LyX constraints.
I would like to, by entering in either some preamble code, or latex script
in the document, make an unsorted bibliography (bibtopic does not do
unsorted) at the end of each chapter, but also using citesort, where the
citations are reordered and then collapsed using hyphens.
I have trawled various forums, and tried a few suggestions based on
bibunits, but they all have failed miserably.
I hope that someone up to the challenge, as doing it in Lyx is a much more
attractive option than dropping into a tex file.
Thank you for your time, all help is greatly appreciated.

-- 
View this message in context: 
http://www.nabble.com/Sectioned-bibliogaphy-tp17536271p17536271.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Sectioned bibliogaphy

2008-05-29 Thread gdmj100

Hi Lyx group,
I am in dire need of some experienced user assistance.
I recently switched to Lyx to write my thesis and have a reference format
problem that I just can't get rid of.
I am very new to the LaTeX world, but feel comfortable working within the
LyX constraints.
I would like to, by entering in either some preamble code, or latex script
in the document, make an unsorted bibliography (bibtopic does not do
unsorted) at the end of each chapter, but also using citesort, where the
citations are reordered and then collapsed using hyphens.
I have trawled various forums, and tried a few suggestions based on
bibunits, but they all have failed miserably.
I hope that someone up to the challenge, as doing it in Lyx is a much more
attractive option than dropping into a tex file.
Thank you for your time, all help is greatly appreciated.

-- 
View this message in context: 
http://www.nabble.com/Sectioned-bibliogaphy-tp17536298p17536298.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Footnote without numbering (new)

2008-05-29 Thread Michael Wojcik

Jean-Marc Lasgouttes wrote:

Adrian Peter [EMAIL PROTECTED] writes:


Thank you for the suggestion but unfortunately I really need to put
a footnote without a symbol or anything. I am trying to use Lyx for
my thesis. Our college requires that if any of the chapters has
already appeared as a publication that we need to list it on the
first page of the chapter as a footnote.


I thought that in such cases a numbered footnote was appended to the
title of the chapter.


The style Adrian describes seems to be relatively common in the US, 
for various purposes. For example, many journals set text formatted as 
a footnote with no number (often on the first or last page of an 
article), with material such as previous publication, requirements for 
reproduction, acknowledgments, and so on.


A couple of examples I have to hand are _Critical Inquiry_ and 
_Communications of the ACM_.


So I'm not surprised that Adrian's college uses the same convention 
when documenting prior publication.


--
Michael Wojcik
Micro Focus
Rhetoric  Writing, Michigan State University



Grand-child document

2008-05-29 Thread Rune Schjellerup Philosof

Hi

Isn't it support to make a child document in a child document?

--
Rune


Re: Footnote without numbering (new)

2008-05-29 Thread Nicolás

A possibility to get a footnote not connected to a part of the document is to 
use the fancyhdr package

In the preamble, write:

\usepackage{fancyhdr}
\fancypagestyle{plain}{
\cfoot{}
\lfoot{
\scriptsize
your text\
\begin{center} \thepage \end{center}
}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0.5pt}
}

Nicolás


Michael Wojcik wrote:

Jean-Marc Lasgouttes wrote:

Adrian Peter [EMAIL PROTECTED] writes:


Thank you for the suggestion but unfortunately I really need to put
a footnote without a symbol or anything. I am trying to use Lyx for
my thesis. Our college requires that if any of the chapters has
already appeared as a publication that we need to list it on the
first page of the chapter as a footnote.


I thought that in such cases a numbered footnote was appended to the
title of the chapter.


The style Adrian describes seems to be relatively common in the US, for 
various purposes. For example, many journals set text formatted as a 
footnote with no number (often on the first or last page of an article), 
with material such as previous publication, requirements for 
reproduction, acknowledgments, and so on.


A couple of examples I have to hand are _Critical Inquiry_ and 
_Communications of the ACM_.


So I'm not surprised that Adrian's college uses the same convention when 
documenting prior publication.






Re: Grand-child document

2008-05-29 Thread rgheck

Rune Schjellerup Philosof wrote:

Hi

Isn't it support to make a child document in a child document?


Yes, this is possible. I've done it.

rh



Re: Installation glitch

2008-05-29 Thread David Hewitt



 If so, why
 does that same script run like lightning in the LyX program window, but
 crawl in the installer?
 
 Assuming you have MikTeX set to auto-install, first time around (the 
 installer) the configuration script looks for eight zillion packages, 
 ten of which are already installed, and MikTeX downloads the other 8 
 zillion minus ten (hence crawl).  Second time arouind (the LyX 
 window), all that junk is installed, and so the downloading is avoided 
 (hence run like lightning).
 
 On the other hand, if either you have MikTeX set to skip missing 
 packages or you have a complete MikTeX installation before you run the 
 LyX installer, then I have no idea what's up.
 

As always, thanks for the great help Paul.

Out of curiosity, I uninstalled and reinstalled to check this. At the MikTeX
installation, I chose NO for install packages on the fly. I don't think it
mattered. It still went through the list like last time, staying on some
entries for a good while. However, this time it did complete without
hanging.

Once finished, I went back to update the packages through MPM and now I
cannot do that. I get permission denied or access denied returns once
the packages download and extract and the FNDB is being updated. I'm not
sure why this occurs. BUT, I can go into settings in MikTeX, select new
packages, hit Apply and it will download and install. Then I can refresh the
FNDB manually and make the new formats and all works.

LyX is fine with all of this, but it seems like turning off the on-the-fly
installation is not obeyed by the LyXWinInstaller script on the first time
through during install.

Dave


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



Re: Footnote without numbering (new)

2008-05-29 Thread Manveru
Are you sure of it?
I see this will change footer on every page in whole document...

2008/5/29 Nicolás [EMAIL PROTECTED]:

 A possibility to get a footnote not connected to a part of the document is
 to use the fancyhdr package

 In the preamble, write:

 \usepackage{fancyhdr}
 \fancypagestyle{plain}{
 \cfoot{}
 \lfoot{
 \scriptsize
 your text\
 \begin{center} \thepage \end{center}
 }
 \renewcommand{\headrulewidth}{0pt}
 \renewcommand{\footrulewidth}{0.5pt}
 }

 Nicolás



 Michael Wojcik wrote:

 Jean-Marc Lasgouttes wrote:

 Adrian Peter [EMAIL PROTECTED] writes:

  Thank you for the suggestion but unfortunately I really need to put
 a footnote without a symbol or anything. I am trying to use Lyx for
 my thesis. Our college requires that if any of the chapters has
 already appeared as a publication that we need to list it on the
 first page of the chapter as a footnote.


 I thought that in such cases a numbered footnote was appended to the
 title of the chapter.


 The style Adrian describes seems to be relatively common in the US, for
 various purposes. For example, many journals set text formatted as a
 footnote with no number (often on the first or last page of an article),
 with material such as previous publication, requirements for reproduction,
 acknowledgments, and so on.

 A couple of examples I have to hand are _Critical Inquiry_ and
 _Communications of the ACM_.

 So I'm not surprised that Adrian's college uses the same convention when
 documenting prior publication.





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


Sideways Longtable

2008-05-29 Thread Adrian Peter

Hi,

Is there a way to create a longtable that is sideways (landscape)?  I tried to 
click on the rotate table 90 degrees option but that ended up giving me a bunch 
of errors.  Thank you.

Adrian


_
Change the world with e-mail. Join the i’m Initiative from Microsoft.
http://im.live.com/Messenger/IM/Join/Default.aspx?source=EML_WL_ChangeWorld

RE: Sideways Longtable

2008-05-29 Thread Adrian Peter

Never mind about the landscape longtable.  I found a thread that said I should 
you the lscape package so I will try that option.  Thanks.


_
Make every e-mail and IM count. Join the i’m Initiative from Microsoft.
http://im.live.com/Messenger/IM/Join/Default.aspx?source=EML_WL_ MakeCount

Lyx-users mail server error

2008-05-29 Thread Adrian Peter
Hi,

I am trying to attach a example lyx file to ask a question.  But my messages
keep getting rejected with the error below.  The example file is only 98K.
Thanks.

Adrian

---ERROR:


Hi. This is the qmail-send program at wierdlmpc.msci.memphis.edu.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. Sorry it didn't work out.

lyx-users@lists.lyx.org:
ezmlm-reject: fatal: Sorry, I don't accept messages larger than 6 bytes
(#5.2.3)


Re: Lyx 1.5.3 not showing references from Jabref 2.3.1

2008-05-29 Thread vu



rgheck wrote:
 
 
 Export the document to LaTeX and try compiling it manually. Report the 
 error messages. It sounds to me as if either LyX or LaTeX isn't finding 
 the .bib file, and there are various reasons this can happen.
 
 

I did this, and the output in the terminal was as follows:

[EMAIL PROTECTED]:~$ bibtex CONS6017-Essay
This is BibTeX, Version 0.99c (Web2C 7.5.6)
The top-level auxiliary file: CONS6017-Essay.aux
I couldn't open style file authordate1.bst
---line 3 of file CONS6017-Essay.aux
 : \bibstyle{authordate1
 :  }
I'm skipping whatever remains of this command
I found no style file---while reading file CONS6017-Essay.aux
(There were 2 error messages)


I was using the .bst file authordate1, but I have tried using other .bst
files (naturemag, authordate2) with the same result.

Because the message said it was missing a style file, I tried using a
different style file, one that was not part of the default Lyx installation
(the same .bst files, authordate1, harvard, agsm). DOING THIS SOLVED THE
PROBLEM. 

I explored the /usr/share/texmf-texlive/bibtex/bst folder, which is where I
assume the .bst files are located upon installation. I noticed many were
missing (the ones I had a problem with initially). 

However, I'm perplexed as to why the .bst files included in the Lyx
installation have disappeared. How to I return it back to its original
state? Can I put the bst files I've downloaded from CTAN and elsewhere into
the usr/.../bst folder, and if so, under which subdirectory (ams, babelbib,
base, index, natbib)? Why have the Lyx bst files disappeared? 
-- 
View this message in context: 
http://www.nabble.com/Lyx-1.5.3-not-showing-references-from-Jabref-2.3.1-tp17510841p17550564.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Installation glitch

2008-05-29 Thread Paul A. Rubin

David Hewitt wrote:



As always, thanks for the great help Paul.


Welcome.  :-)


Out of curiosity, I uninstalled and reinstalled to check this. At the MikTeX
installation, I chose NO for install packages on the fly. I don't think it
mattered. It still went through the list like last time, staying on some
entries for a good while. However, this time it did complete without
hanging.

Once finished, I went back to update the packages through MPM and now I
cannot do that. I get permission denied or access denied returns once
the packages download and extract and the FNDB is being updated. I'm not
sure why this occurs. BUT, I can go into settings in MikTeX, select new
packages, hit Apply and it will download and install. Then I can refresh the
FNDB manually and make the new formats and all works.

LyX is fine with all of this, but it seems like turning off the on-the-fly
installation is not obeyed by the LyXWinInstaller script on the first time
through during install.


Good question.  It's probably possible for Uwe's script to reset the 
MikTeX preference to download and install, but I really wonder if he 
would do that.  It's one thing to say that certain packages are required 
for LyX to work, but LyX looks for a lot of inessential packages, and 
I'm not sure how much disk space (to say nothing of bandwidth) they eat up.


This is never an issue for me; I always have MikTeX installed and 
working before I install LyX, even on a new machine.  I like to fight my 
battles one at a time.  ;-)  So I don't have any direct experience 
consistent with what you're describing.


The other thing is that I'm still on MikTeX 2.6, whereas I imagine 
you're installing 2.7.  When 2.7 was first released, there were some 
messages on their user list that I took to mean some people were having 
installation adventures.  Don't know if that's related to your 
experience or not.


sighIt's always something./sigh

/Paul



Re: Lyx-users mail server error

2008-05-29 Thread Jeremy C. Reed
 I am trying to attach a example lyx file to ask a question.  But my messages
 keep getting rejected with the error below.  The example file is only 98K.
 Thanks.

Please consider making a way smaller example.

I'd guess that a 98KB file is over 5000 lines -- way too long for an email 
to this list.

If not, consider posting it to some free webhosting service.


How reduce number of hyphenation per page

2008-05-29 Thread D . Zorig
Hi all,

I'm using LyX 1.5.5 on Windows XP.  My document has utf8 encoding and
Cyrillic font.  I'm getting about 10 hyphenation per page and doesn't look
pretty.  Unfortunately microtype package doesn't work with Cyrillic font.
So no protrusion and expansion available.
By googling, I got a understanding that hyphenation could be controlled with
following commands. But I can't find their definition.
\hyphenpenalty=
\exhyphenpenalty=
\righthyphenmin=
\lefthyphenmin=
\emergencystretch=
\tolerance=
I don't want to completely turn off hyphenation just reduce the number of
hyphenation per page.  I don't want to leave just 2 or 3 letters on the
upper line and hyphenate.  Preferably just stretch spaces or justify such
line.

Thank you in advance for you help.

-- 
Zorigtkhuu Davaanyam


Re: Footnote without numbering (new)

2008-05-29 Thread G. Milde
On 28.05.08, Adrian Peter wrote:
 On Wed, May 28, 2008 at 11:30 AM, Adrian Peter [EMAIL PROTECTED] wrote:

  I would need the contents of the float to appear a footnote at the
  bottom of the page.  Not clear how placing it in a float will cause
  this to occur. Because you can tell LaTeX to place the float at the
  bottom of the page. Look at the example. Typeset it. Does it do what
  you want?

 Thanks!  Now I see what you mean.  I am going to try this out.  Thanks
 again.

Another option would be to temporarily redefine the command that
creates the footnote's mark (as ERT)::

   \makeatletter
   [EMAIL PROTECTED]@makefnmark
   [EMAIL PROTECTED]
   \makeatother
   
   % footnotetext will not advance the footnote counter
   \footnotetext{footnote without number}
   
   \makeatletter
   [EMAIL PROTECTED]@makefnmark}
   \makeatother
   
   \footnote{normale Fußnote}


Günter


Re: about the style of the section numbering

2008-05-29 Thread Maksi


Haiyang Chao wrote:
 Thanks for your prompt response. Actually, Ijust need to modify another
 guy's file. But he is also not so familiar with lyx. My lyx file is using
 ieeetran.cls. It looks like document setting is the only part I can
 modify
 to change the page style.

LaTeX has come a long way and today the basic usage of LaTeX starts with the
choice of the document class. At least two packages are very powerful and
very configurable: Memoir and KOMA-Script. Within these classes you can
change practically everything you want. For other classes (the regular ones)
you need a lot of extra packages to change their look and behaviour. And
then there are very special classes such as AMS, IEEE and so on which are
often written for very special purposes such as specific journals. Unless
you are writing for such a journal providing its own document class or
unless you want your writings to look exactly like in one of these journals,
I for my part would not recommend using them. Use Memoir or KOMA instead and
check their manuals to make changes. Quite a few typical changes can be done
very easily by mouse-click in LyX’ document settings dialogue. If you need
help with theses classes simply ask on the list.
-- 
View this message in context: 
http://www.nabble.com/about-the-style-of-the-section-numbering-tp17508124p17529204.html
Sent from the LyX - Users mailing list archive at Nabble.com.



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.



How can I do this?

2008-05-29 Thread Nicolás

Hi!

I am writing a thesis and I need to include some articles verbatim, that is, with the format and style they where originally published. 
Using child documents requires files to have the same style. So how can I do, if it is possible, what I want to do?


Thanks

Nicolás


Re: LyX and Scientific Word/Workplace

2008-05-29 Thread Ken
Hi all,

I wanted to follow up this thread in case anyone else has the same issue.  The
temporary solution I have found is to:
(1) in LyX, do File  Export  LaTeX (plain)
(2) in SWP, do File  Import Contents

This appears to import the LaTeX code within the begin/end{document}.  

This seems to work for a document with text, mathematical equations, and floats
but it does NOT like tables.  When the document has a table SWP utilizes 100% of
the CPU and the memory usage climbs continuously.

I'll update this thread if/when I discover more.

Ken





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: Lyx 1.5.3 not showing references from Jabref 2.3.1

2008-05-29 Thread Paul A. Rubin

vu wrote:






Hi, thanks for the help. I've exported it to LaTex (using pdflatex), but I
don't know how to compile it manually. I haven't had a chance to really
get into the fine details of Lyx. How would I do this?
http://www.nabble.com/file/p17527137/CONS6017-Essay.log CONS6017-Essay.log 
http://www.nabble.com/file/p17527137/CONS6017-Essay.pdf CONS6017-Essay.pdf 
http://www.nabble.com/file/p17527137/CONS6017-Essay.tex CONS6017-Essay.tex 


In a terminal, run 'pdflatex CONS6017-Essay.tex', which should produce a 
file with extension .aux.  Then run 'bibtex CONS6017-Essay', then 
'pdflatex CONS6017-Essay.tex' again.


I've also checked the Lyx log in my tmp folder, and fould that it says
LaTeX Warning: There were undefined references..


This is not entirely surprising.  The LaTeX/BibTeX combination requires 
multiple passes.  On the first LaTeX pass, an auxiliary file is 
generated with information about required citations.  BibTeX uses that 
file and the .bib bibliography file to create a file of stuff to insert 
in the document (.bbl).  The initial LaTeX pass flags all references as 
undefined.  On the second LaTeX pass, it uses the .bbl file to fix 
things up.


I'm not sure if this will be helpful, but I've included both the exported
.tex file, the tmp .log file, and the PDF output as an attachment here.

Please note that I have changed nothing in my setup of Lyx since changing to
Ubuntu 8.04. I've had pretty much the same document settings (usually at
Natbib, but sometimes Jurabib), and usually the same bst files (usually the
ones included in Lyx, such as naturemag or author-date).


Between the last time you successfully used the JabRef file and now, did 
you edit anything in the JabRef (.bib) file?  Frequently something gets 
broken in a .bib file -- either a syntactically incorrect entry is 
produced, or a character from an encoding that does not match the 
document is inserted -- and the sequence above breaks down.


/Paul



Re: Lyx crashes everytime I try to open my document

2008-05-29 Thread G. Milde
On 28.05.08, Abdelrazak Younes wrote:
 Helge Hafting wrote:
 Abdelrazak Younes wrote:
 Jean-Marc Lasgouttes wrote:

 How difficult would it be to support unicode in maths?

 In 1.5 forget about it. In 1.6 that would require a lot of work I
 guess.
 This wasn't any generic unicode character, it was a delta which is  
 normally used in math. The only strange thing about it was that it
 was in unicode rather than spelled out \delta. 

Support for individuall unicode characters in math can be achieved easily
with lines like

% centered dot
\DeclareUnicodeCharacter{00B7}{\ifmmode\cdot\else\textperiodcentered\fi}

in the LaTeX preamble (from Herbert Voss' de_math.lyx tips)
without any change to the LyX code.

 A simple table with unicode characters and their equivalent
 math commands (\alpha, \beta, and so on) could translate any
 non-ascii the users somehow manages to bring into mathed.

As with all common LaTeX problems, there should be a package providing
this kind of table.

And indeed, the package ucs comes with the option mathletters
which enables the use of unicode greek letters in the document replacing
them with greek symbols from the math alphabet (not recommended for
typesetting Greek text, though).

Unfortunately, with \usepackage[mathletters]{ucs}, the above definition
of the centered dot is lost and $5·4=20$ is printed as 5Δ4=20 :-(

There has also been discussion on this topic on the latex3 list
http://osdir.com/ml/tex.latex.latex3/2003-01/msg00048.html
and there is a package inputenx on CTAN with a math option that
depends on the experimental package 
inpmath http://www.latex-project.org/code/experimental/inpmath.zip

 Things are more complicated when you speak in terms of _current_ LyX  
 code :-)

 Basically, mathed does not use unicode but sepecial 8-bit codepoints  
 reflecting their associate modern font symbol codepoints.

See the attached lyx file for a minimal example that works in my lyx
1.5.5.

Günter


math-inputenc-text.lyx
Description: application/lyx


Re: How can I do this?

2008-05-29 Thread Paul A. Rubin

Nicolás wrote:

Hi!

I am writing a thesis and I need to include some articles verbatim, that 
is, with the format and style they where originally published. Using 
child documents requires files to have the same style. So how can I do, 
if it is possible, what I want to do?




If they are PDF files, and if you are producing PDF output of your 
thesis, you might try the pdfpages package, which will let you insert 
all or some pages from each article's PDF file directly into your output 
file.


/Paul



Sectioned bibliogaphy

2008-05-29 Thread gdmj100

Hi Lyx group,
I am in dire need of some experienced user assistance.
I recently switched to Lyx to write my thesis and have a reference format
problem that I just can't get rid of.
I am very new to the LaTeX world, but feel comfortable working within the
LyX constraints.
I would like to, by entering in either some preamble code, or latex script
in the document, make an unsorted bibliography (bibtopic does not do
unsorted) at the end of each chapter, but also using citesort, where the
citations are reordered and then collapsed using hyphens.
I have trawled various forums, and tried a few suggestions based on
bibunits, but they all have failed miserably.
I hope that someone up to the challenge, as doing it in Lyx is a much more
attractive option than dropping into a tex file.
Thank you for your time, all help is greatly appreciated.

-- 
View this message in context: 
http://www.nabble.com/Sectioned-bibliogaphy-tp17536263p17536263.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Sectioned bibliogaphy

2008-05-29 Thread gdmj100

Hi Lyx group,
I am in dire need of some experienced user assistance.
I recently switched to Lyx to write my thesis and have a reference format
problem that I just can't get rid of.
I am very new to the LaTeX world, but feel comfortable working within the
LyX constraints.
I would like to, by entering in either some preamble code, or latex script
in the document, make an unsorted bibliography (bibtopic does not do
unsorted) at the end of each chapter, but also using citesort, where the
citations are reordered and then collapsed using hyphens.
I have trawled various forums, and tried a few suggestions based on
bibunits, but they all have failed miserably.
I hope that someone up to the challenge, as doing it in Lyx is a much more
attractive option than dropping into a tex file.
Thank you for your time, all help is greatly appreciated.

-- 
View this message in context: 
http://www.nabble.com/Sectioned-bibliogaphy-tp17536271p17536271.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Sectioned bibliogaphy

2008-05-29 Thread gdmj100

Hi Lyx group,
I am in dire need of some experienced user assistance.
I recently switched to Lyx to write my thesis and have a reference format
problem that I just can't get rid of.
I am very new to the LaTeX world, but feel comfortable working within the
LyX constraints.
I would like to, by entering in either some preamble code, or latex script
in the document, make an unsorted bibliography (bibtopic does not do
unsorted) at the end of each chapter, but also using citesort, where the
citations are reordered and then collapsed using hyphens.
I have trawled various forums, and tried a few suggestions based on
bibunits, but they all have failed miserably.
I hope that someone up to the challenge, as doing it in Lyx is a much more
attractive option than dropping into a tex file.
Thank you for your time, all help is greatly appreciated.

-- 
View this message in context: 
http://www.nabble.com/Sectioned-bibliogaphy-tp17536298p17536298.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Footnote without numbering (new)

2008-05-29 Thread Michael Wojcik

Jean-Marc Lasgouttes wrote:

Adrian Peter [EMAIL PROTECTED] writes:


Thank you for the suggestion but unfortunately I really need to put
a footnote without a symbol or anything. I am trying to use Lyx for
my thesis. Our college requires that if any of the chapters has
already appeared as a publication that we need to list it on the
first page of the chapter as a footnote.


I thought that in such cases a numbered footnote was appended to the
title of the chapter.


The style Adrian describes seems to be relatively common in the US, 
for various purposes. For example, many journals set text formatted as 
a footnote with no number (often on the first or last page of an 
article), with material such as previous publication, requirements for 
reproduction, acknowledgments, and so on.


A couple of examples I have to hand are _Critical Inquiry_ and 
_Communications of the ACM_.


So I'm not surprised that Adrian's college uses the same convention 
when documenting prior publication.


--
Michael Wojcik
Micro Focus
Rhetoric  Writing, Michigan State University



Grand-child document

2008-05-29 Thread Rune Schjellerup Philosof

Hi

Isn't it support to make a child document in a child document?

--
Rune


Re: Footnote without numbering (new)

2008-05-29 Thread Nicolás

A possibility to get a footnote not connected to a part of the document is to 
use the fancyhdr package

In the preamble, write:

\usepackage{fancyhdr}
\fancypagestyle{plain}{
\cfoot{}
\lfoot{
\scriptsize
your text\
\begin{center} \thepage \end{center}
}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0.5pt}
}

Nicolás


Michael Wojcik wrote:

Jean-Marc Lasgouttes wrote:

Adrian Peter [EMAIL PROTECTED] writes:


Thank you for the suggestion but unfortunately I really need to put
a footnote without a symbol or anything. I am trying to use Lyx for
my thesis. Our college requires that if any of the chapters has
already appeared as a publication that we need to list it on the
first page of the chapter as a footnote.


I thought that in such cases a numbered footnote was appended to the
title of the chapter.


The style Adrian describes seems to be relatively common in the US, for 
various purposes. For example, many journals set text formatted as a 
footnote with no number (often on the first or last page of an article), 
with material such as previous publication, requirements for 
reproduction, acknowledgments, and so on.


A couple of examples I have to hand are _Critical Inquiry_ and 
_Communications of the ACM_.


So I'm not surprised that Adrian's college uses the same convention when 
documenting prior publication.






Re: Grand-child document

2008-05-29 Thread rgheck

Rune Schjellerup Philosof wrote:

Hi

Isn't it support to make a child document in a child document?


Yes, this is possible. I've done it.

rh



Re: Installation glitch

2008-05-29 Thread David Hewitt



 If so, why
 does that same script run like lightning in the LyX program window, but
 crawl in the installer?
 
 Assuming you have MikTeX set to auto-install, first time around (the 
 installer) the configuration script looks for eight zillion packages, 
 ten of which are already installed, and MikTeX downloads the other 8 
 zillion minus ten (hence crawl).  Second time arouind (the LyX 
 window), all that junk is installed, and so the downloading is avoided 
 (hence run like lightning).
 
 On the other hand, if either you have MikTeX set to skip missing 
 packages or you have a complete MikTeX installation before you run the 
 LyX installer, then I have no idea what's up.
 

As always, thanks for the great help Paul.

Out of curiosity, I uninstalled and reinstalled to check this. At the MikTeX
installation, I chose NO for install packages on the fly. I don't think it
mattered. It still went through the list like last time, staying on some
entries for a good while. However, this time it did complete without
hanging.

Once finished, I went back to update the packages through MPM and now I
cannot do that. I get permission denied or access denied returns once
the packages download and extract and the FNDB is being updated. I'm not
sure why this occurs. BUT, I can go into settings in MikTeX, select new
packages, hit Apply and it will download and install. Then I can refresh the
FNDB manually and make the new formats and all works.

LyX is fine with all of this, but it seems like turning off the on-the-fly
installation is not obeyed by the LyXWinInstaller script on the first time
through during install.

Dave


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



Re: Footnote without numbering (new)

2008-05-29 Thread Manveru
Are you sure of it?
I see this will change footer on every page in whole document...

2008/5/29 Nicolás [EMAIL PROTECTED]:

 A possibility to get a footnote not connected to a part of the document is
 to use the fancyhdr package

 In the preamble, write:

 \usepackage{fancyhdr}
 \fancypagestyle{plain}{
 \cfoot{}
 \lfoot{
 \scriptsize
 your text\
 \begin{center} \thepage \end{center}
 }
 \renewcommand{\headrulewidth}{0pt}
 \renewcommand{\footrulewidth}{0.5pt}
 }

 Nicolás



 Michael Wojcik wrote:

 Jean-Marc Lasgouttes wrote:

 Adrian Peter [EMAIL PROTECTED] writes:

  Thank you for the suggestion but unfortunately I really need to put
 a footnote without a symbol or anything. I am trying to use Lyx for
 my thesis. Our college requires that if any of the chapters has
 already appeared as a publication that we need to list it on the
 first page of the chapter as a footnote.


 I thought that in such cases a numbered footnote was appended to the
 title of the chapter.


 The style Adrian describes seems to be relatively common in the US, for
 various purposes. For example, many journals set text formatted as a
 footnote with no number (often on the first or last page of an article),
 with material such as previous publication, requirements for reproduction,
 acknowledgments, and so on.

 A couple of examples I have to hand are _Critical Inquiry_ and
 _Communications of the ACM_.

 So I'm not surprised that Adrian's college uses the same convention when
 documenting prior publication.





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


Sideways Longtable

2008-05-29 Thread Adrian Peter

Hi,

Is there a way to create a longtable that is sideways (landscape)?  I tried to 
click on the rotate table 90 degrees option but that ended up giving me a bunch 
of errors.  Thank you.

Adrian


_
Change the world with e-mail. Join the i’m Initiative from Microsoft.
http://im.live.com/Messenger/IM/Join/Default.aspx?source=EML_WL_ChangeWorld

RE: Sideways Longtable

2008-05-29 Thread Adrian Peter

Never mind about the landscape longtable.  I found a thread that said I should 
you the lscape package so I will try that option.  Thanks.


_
Make every e-mail and IM count. Join the i’m Initiative from Microsoft.
http://im.live.com/Messenger/IM/Join/Default.aspx?source=EML_WL_ MakeCount

Lyx-users mail server error

2008-05-29 Thread Adrian Peter
Hi,

I am trying to attach a example lyx file to ask a question.  But my messages
keep getting rejected with the error below.  The example file is only 98K.
Thanks.

Adrian

---ERROR:


Hi. This is the qmail-send program at wierdlmpc.msci.memphis.edu.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. Sorry it didn't work out.

lyx-users@lists.lyx.org:
ezmlm-reject: fatal: Sorry, I don't accept messages larger than 6 bytes
(#5.2.3)


Re: Lyx 1.5.3 not showing references from Jabref 2.3.1

2008-05-29 Thread vu



rgheck wrote:
 
 
 Export the document to LaTeX and try compiling it manually. Report the 
 error messages. It sounds to me as if either LyX or LaTeX isn't finding 
 the .bib file, and there are various reasons this can happen.
 
 

I did this, and the output in the terminal was as follows:

[EMAIL PROTECTED]:~$ bibtex CONS6017-Essay
This is BibTeX, Version 0.99c (Web2C 7.5.6)
The top-level auxiliary file: CONS6017-Essay.aux
I couldn't open style file authordate1.bst
---line 3 of file CONS6017-Essay.aux
 : \bibstyle{authordate1
 :  }
I'm skipping whatever remains of this command
I found no style file---while reading file CONS6017-Essay.aux
(There were 2 error messages)


I was using the .bst file authordate1, but I have tried using other .bst
files (naturemag, authordate2) with the same result.

Because the message said it was missing a style file, I tried using a
different style file, one that was not part of the default Lyx installation
(the same .bst files, authordate1, harvard, agsm). DOING THIS SOLVED THE
PROBLEM. 

I explored the /usr/share/texmf-texlive/bibtex/bst folder, which is where I
assume the .bst files are located upon installation. I noticed many were
missing (the ones I had a problem with initially). 

However, I'm perplexed as to why the .bst files included in the Lyx
installation have disappeared. How to I return it back to its original
state? Can I put the bst files I've downloaded from CTAN and elsewhere into
the usr/.../bst folder, and if so, under which subdirectory (ams, babelbib,
base, index, natbib)? Why have the Lyx bst files disappeared? 
-- 
View this message in context: 
http://www.nabble.com/Lyx-1.5.3-not-showing-references-from-Jabref-2.3.1-tp17510841p17550564.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Installation glitch

2008-05-29 Thread Paul A. Rubin

David Hewitt wrote:



As always, thanks for the great help Paul.


Welcome.  :-)


Out of curiosity, I uninstalled and reinstalled to check this. At the MikTeX
installation, I chose NO for install packages on the fly. I don't think it
mattered. It still went through the list like last time, staying on some
entries for a good while. However, this time it did complete without
hanging.

Once finished, I went back to update the packages through MPM and now I
cannot do that. I get permission denied or access denied returns once
the packages download and extract and the FNDB is being updated. I'm not
sure why this occurs. BUT, I can go into settings in MikTeX, select new
packages, hit Apply and it will download and install. Then I can refresh the
FNDB manually and make the new formats and all works.

LyX is fine with all of this, but it seems like turning off the on-the-fly
installation is not obeyed by the LyXWinInstaller script on the first time
through during install.


Good question.  It's probably possible for Uwe's script to reset the 
MikTeX preference to download and install, but I really wonder if he 
would do that.  It's one thing to say that certain packages are required 
for LyX to work, but LyX looks for a lot of inessential packages, and 
I'm not sure how much disk space (to say nothing of bandwidth) they eat up.


This is never an issue for me; I always have MikTeX installed and 
working before I install LyX, even on a new machine.  I like to fight my 
battles one at a time.  ;-)  So I don't have any direct experience 
consistent with what you're describing.


The other thing is that I'm still on MikTeX 2.6, whereas I imagine 
you're installing 2.7.  When 2.7 was first released, there were some 
messages on their user list that I took to mean some people were having 
installation adventures.  Don't know if that's related to your 
experience or not.


sighIt's always something./sigh

/Paul



Re: Lyx-users mail server error

2008-05-29 Thread Jeremy C. Reed
 I am trying to attach a example lyx file to ask a question.  But my messages
 keep getting rejected with the error below.  The example file is only 98K.
 Thanks.

Please consider making a way smaller example.

I'd guess that a 98KB file is over 5000 lines -- way too long for an email 
to this list.

If not, consider posting it to some free webhosting service.


How reduce number of hyphenation per page

2008-05-29 Thread D . Zorig
Hi all,

I'm using LyX 1.5.5 on Windows XP.  My document has utf8 encoding and
Cyrillic font.  I'm getting about 10 hyphenation per page and doesn't look
pretty.  Unfortunately microtype package doesn't work with Cyrillic font.
So no protrusion and expansion available.
By googling, I got a understanding that hyphenation could be controlled with
following commands. But I can't find their definition.
\hyphenpenalty=
\exhyphenpenalty=
\righthyphenmin=
\lefthyphenmin=
\emergencystretch=
\tolerance=
I don't want to completely turn off hyphenation just reduce the number of
hyphenation per page.  I don't want to leave just 2 or 3 letters on the
upper line and hyphenate.  Preferably just stretch spaces or justify such
line.

Thank you in advance for you help.

-- 
Zorigtkhuu Davaanyam


Re: Footnote without numbering (new)

2008-05-29 Thread G. Milde
On 28.05.08, Adrian Peter wrote:
> On Wed, May 28, 2008 at 11:30 AM, Adrian Peter <[EMAIL PROTECTED]> wrote:

> > I would need the contents of the float to appear a footnote at the
> > bottom of the page.  Not clear how placing it in a float will cause
> > this to occur. Because you can tell LaTeX to place the float at the
> > bottom of the page. Look at the example. Typeset it. Does it do what
> > you want?

> Thanks!  Now I see what you mean.  I am going to try this out.  Thanks
> again.

Another option would be to temporarily redefine the command that
creates the footnote's mark (as ERT)::

   \makeatletter
   [EMAIL PROTECTED]@makefnmark
   [EMAIL PROTECTED]
   \makeatother
   
   % footnotetext will not advance the footnote counter
   \footnotetext{footnote without number}
   
   \makeatletter
   [EMAIL PROTECTED]@makefnmark}
   \makeatother
   
   \footnote{normale Fußnote}


Günter


Re: about the style of the section numbering

2008-05-29 Thread Maksi


Haiyang Chao wrote:
> Thanks for your prompt response. Actually, Ijust need to modify another
> guy's file. But he is also not so familiar with lyx. My lyx file is using
> ieeetran.cls. It looks like "document setting" is the only part I can
> modify
> to change the page style.

LaTeX has come a long way and today the basic usage of LaTeX starts with the
choice of the document class. At least two packages are very powerful and
very configurable: Memoir and KOMA-Script. Within these classes you can
change practically everything you want. For other classes (the regular ones)
you need a lot of extra packages to change their look and behaviour. And
then there are very special classes such as AMS, IEEE and so on which are
often written for very special purposes such as specific journals. Unless
you are writing for such a journal providing its own document class or
unless you want your writings to look exactly like in one of these journals,
I for my part would not recommend using them. Use Memoir or KOMA instead and
check their manuals to make changes. Quite a few typical changes can be done
very easily by mouse-click in LyX’ document settings dialogue. If you need
help with theses classes simply ask on the list.
-- 
View this message in context: 
http://www.nabble.com/about-the-style-of-the-section-numbering-tp17508124p17529204.html
Sent from the LyX - Users mailing list archive at Nabble.com.



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.



How can I do this?

2008-05-29 Thread Nicolás

Hi!

I am writing a thesis and I need to include some articles verbatim, that is, with the format and style they where originally published. 
Using child documents requires files to have the same style. So how can I do, if it is possible, what I want to do?


Thanks

Nicolás


Re: LyX and Scientific Word/Workplace

2008-05-29 Thread Ken
Hi all,

I wanted to follow up this thread in case anyone else has the same issue.  The
temporary solution I have found is to:
(1) in LyX, do File > Export > LaTeX (plain)
(2) in SWP, do File > Import Contents

This appears to import the LaTeX code within the begin/end{document}.  

This seems to work for a document with text, mathematical equations, and floats
but it does NOT like tables.  When the document has a table SWP utilizes 100% of
the CPU and the memory usage climbs continuously.

I'll update this thread if/when I discover more.

Ken





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: Lyx 1.5.3 not showing references from Jabref 2.3.1

2008-05-29 Thread Paul A. Rubin

vu wrote:






Hi, thanks for the help. I've exported it to LaTex (using pdflatex), but I
don't know how to "compile it manually". I haven't had a chance to really
get into the fine details of Lyx. How would I do this?
http://www.nabble.com/file/p17527137/CONS6017-Essay.log CONS6017-Essay.log 
http://www.nabble.com/file/p17527137/CONS6017-Essay.pdf CONS6017-Essay.pdf 
http://www.nabble.com/file/p17527137/CONS6017-Essay.tex CONS6017-Essay.tex 


In a terminal, run 'pdflatex CONS6017-Essay.tex', which should produce a 
file with extension .aux.  Then run 'bibtex CONS6017-Essay', then 
'pdflatex CONS6017-Essay.tex' again.


I've also checked the Lyx log in my tmp folder, and fould that it says
"LaTeX Warning: There were undefined references.".


This is not entirely surprising.  The LaTeX/BibTeX combination requires 
multiple passes.  On the first LaTeX pass, an auxiliary file is 
generated with information about required citations.  BibTeX uses that 
file and the .bib bibliography file to create a file of stuff to insert 
in the document (.bbl).  The initial LaTeX pass flags all references as 
undefined.  On the second LaTeX pass, it uses the .bbl file to fix 
things up.


I'm not sure if this will be helpful, but I've included both the exported
.tex file, the tmp .log file, and the PDF output as an attachment here.

Please note that I have changed nothing in my setup of Lyx since changing to
Ubuntu 8.04. I've had pretty much the same document settings (usually at
Natbib, but sometimes Jurabib), and usually the same bst files (usually the
ones included in Lyx, such as naturemag or author-date).


Between the last time you successfully used the JabRef file and now, did 
you edit anything in the JabRef (.bib) file?  Frequently something gets 
broken in a .bib file -- either a syntactically incorrect entry is 
produced, or a character from an encoding that does not match the 
document is inserted -- and the sequence above breaks down.


/Paul



Re: Lyx crashes everytime I try to open my document

2008-05-29 Thread G. Milde
On 28.05.08, Abdelrazak Younes wrote:
> Helge Hafting wrote:
>> Abdelrazak Younes wrote:
>>> Jean-Marc Lasgouttes wrote:

 How difficult would it be to support unicode in maths?

>>> In 1.5 forget about it. In 1.6 that would require a lot of work I
>>> guess.
>> This wasn't any generic unicode character, it was a delta which is  
>> normally used in math. The only strange thing about it was that it
>> was in unicode rather than spelled out \delta. 

Support for individuall unicode characters in math can be achieved easily
with lines like

% centered dot
\DeclareUnicodeCharacter{00B7}{\ifmmode\cdot\else\textperiodcentered\fi}

in the LaTeX preamble (from Herbert Voss' "de_math.lyx" tips)
without any change to the LyX code.

>> A simple table with unicode characters and their equivalent
>> math commands (\alpha, \beta, and so on) could translate any
>> non-ascii the users somehow manages to bring into mathed.

As with all common LaTeX problems, there should be a package providing
this kind of table.

And indeed, the package ucs comes with the option "mathletters"
which enables the use of unicode greek letters in the document replacing
them with greek symbols from the math alphabet (not recommended for
typesetting Greek text, though).

Unfortunately, with \usepackage[mathletters]{ucs}, the above definition
of the centered dot is lost and $5·4=20$ is printed as 5Δ4=20 :-(

There has also been discussion on this topic on the latex3 list

and there is a package "inputenx" on CTAN with a "math" option that
depends on the experimental package 
"inpmath" 

> Things are more complicated when you speak in terms of _current_ LyX  
> code :-)

> Basically, mathed does not use unicode but sepecial 8-bit codepoints  
> reflecting their associate modern font symbol codepoints.

See the attached lyx file for a minimal example that works in my lyx
1.5.5.

Günter


math-inputenc-text.lyx
Description: application/lyx


Re: How can I do this?

2008-05-29 Thread Paul A. Rubin

Nicolás wrote:

Hi!

I am writing a thesis and I need to include some articles verbatim, that 
is, with the format and style they where originally published. Using 
child documents requires files to have the same style. So how can I do, 
if it is possible, what I want to do?




If they are PDF files, and if you are producing PDF output of your 
thesis, you might try the pdfpages package, which will let you insert 
all or some pages from each article's PDF file directly into your output 
file.


/Paul



Sectioned bibliogaphy

2008-05-29 Thread gdmj100

Hi Lyx group,
I am in dire need of some experienced user assistance.
I recently switched to Lyx to write my thesis and have a reference format
problem that I just can't get rid of.
I am very new to the LaTeX world, but feel comfortable working within the
LyX constraints.
I would like to, by entering in either some preamble code, or latex script
in the document, make an unsorted bibliography (bibtopic does not do
unsorted) at the end of each chapter, but also using citesort, where the
citations are reordered and then collapsed using hyphens.
I have trawled various forums, and tried a few suggestions based on
bibunits, but they all have failed miserably.
I hope that someone up to the challenge, as doing it in Lyx is a much more
attractive option than dropping into a tex file.
Thank you for your time, all help is greatly appreciated.

-- 
View this message in context: 
http://www.nabble.com/Sectioned-bibliogaphy-tp17536263p17536263.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Sectioned bibliogaphy

2008-05-29 Thread gdmj100

Hi Lyx group,
I am in dire need of some experienced user assistance.
I recently switched to Lyx to write my thesis and have a reference format
problem that I just can't get rid of.
I am very new to the LaTeX world, but feel comfortable working within the
LyX constraints.
I would like to, by entering in either some preamble code, or latex script
in the document, make an unsorted bibliography (bibtopic does not do
unsorted) at the end of each chapter, but also using citesort, where the
citations are reordered and then collapsed using hyphens.
I have trawled various forums, and tried a few suggestions based on
bibunits, but they all have failed miserably.
I hope that someone up to the challenge, as doing it in Lyx is a much more
attractive option than dropping into a tex file.
Thank you for your time, all help is greatly appreciated.

-- 
View this message in context: 
http://www.nabble.com/Sectioned-bibliogaphy-tp17536271p17536271.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Sectioned bibliogaphy

2008-05-29 Thread gdmj100

Hi Lyx group,
I am in dire need of some experienced user assistance.
I recently switched to Lyx to write my thesis and have a reference format
problem that I just can't get rid of.
I am very new to the LaTeX world, but feel comfortable working within the
LyX constraints.
I would like to, by entering in either some preamble code, or latex script
in the document, make an unsorted bibliography (bibtopic does not do
unsorted) at the end of each chapter, but also using citesort, where the
citations are reordered and then collapsed using hyphens.
I have trawled various forums, and tried a few suggestions based on
bibunits, but they all have failed miserably.
I hope that someone up to the challenge, as doing it in Lyx is a much more
attractive option than dropping into a tex file.
Thank you for your time, all help is greatly appreciated.

-- 
View this message in context: 
http://www.nabble.com/Sectioned-bibliogaphy-tp17536298p17536298.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Footnote without numbering (new)

2008-05-29 Thread Michael Wojcik

Jean-Marc Lasgouttes wrote:

Adrian Peter <[EMAIL PROTECTED]> writes:


Thank you for the suggestion but unfortunately I really need to put
a footnote without a symbol or anything. I am trying to use Lyx for
my thesis. Our college requires that if any of the chapters has
already appeared as a publication that we need to list it on the
first page of the chapter as a footnote.


I thought that in such cases a numbered footnote was appended to the
title of the chapter.


The style Adrian describes seems to be relatively common in the US, 
for various purposes. For example, many journals set text formatted as 
a footnote with no number (often on the first or last page of an 
article), with material such as previous publication, requirements for 
reproduction, acknowledgments, and so on.


A couple of examples I have to hand are _Critical Inquiry_ and 
_Communications of the ACM_.


So I'm not surprised that Adrian's college uses the same convention 
when documenting prior publication.


--
Michael Wojcik
Micro Focus
Rhetoric & Writing, Michigan State University



Grand-child document

2008-05-29 Thread Rune Schjellerup Philosof

Hi

Isn't it support to make a child document in a child document?

--
Rune


Re: Footnote without numbering (new)

2008-05-29 Thread Nicolás

A possibility to get a footnote not connected to a part of the document is to 
use the fancyhdr package

In the preamble, write:

\usepackage{fancyhdr}
\fancypagestyle{plain}{
\cfoot{}
\lfoot{
\scriptsize
your text\
\begin{center} \thepage \end{center}
}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0.5pt}
}

Nicolás


Michael Wojcik wrote:

Jean-Marc Lasgouttes wrote:

Adrian Peter <[EMAIL PROTECTED]> writes:


Thank you for the suggestion but unfortunately I really need to put
a footnote without a symbol or anything. I am trying to use Lyx for
my thesis. Our college requires that if any of the chapters has
already appeared as a publication that we need to list it on the
first page of the chapter as a footnote.


I thought that in such cases a numbered footnote was appended to the
title of the chapter.


The style Adrian describes seems to be relatively common in the US, for 
various purposes. For example, many journals set text formatted as a 
footnote with no number (often on the first or last page of an article), 
with material such as previous publication, requirements for 
reproduction, acknowledgments, and so on.


A couple of examples I have to hand are _Critical Inquiry_ and 
_Communications of the ACM_.


So I'm not surprised that Adrian's college uses the same convention when 
documenting prior publication.






Re: Grand-child document

2008-05-29 Thread rgheck

Rune Schjellerup Philosof wrote:

Hi

Isn't it support to make a child document in a child document?


Yes, this is possible. I've done it.

rh



Re: Installation glitch

2008-05-29 Thread David Hewitt



>> If so, why
>> does that same script run like lightning in the LyX program window, but
>> crawl in the installer?
> 
> Assuming you have MikTeX set to auto-install, first time around (the 
> installer) the configuration script looks for eight zillion packages, 
> ten of which are already installed, and MikTeX downloads the other 8 
> zillion minus ten (hence "crawl").  Second time arouind (the LyX 
> window), all that junk is installed, and so the downloading is avoided 
> (hence "run like lightning").
> 
> On the other hand, if either you have MikTeX set to skip missing 
> packages or you have a complete MikTeX installation before you run the 
> LyX installer, then I have no idea what's up.
> 

As always, thanks for the great help Paul.

Out of curiosity, I uninstalled and reinstalled to check this. At the MikTeX
installation, I chose NO for install packages on the fly. I don't think it
mattered. It still went through the list like last time, staying on some
entries for a good while. However, this time it did complete without
hanging.

Once finished, I went back to update the packages through MPM and now I
cannot do that. I get "permission denied" or "access denied" returns once
the packages download and extract and the FNDB is being updated. I'm not
sure why this occurs. BUT, I can go into settings in MikTeX, select new
packages, hit Apply and it will download and install. Then I can refresh the
FNDB manually and make the new formats and all works.

LyX is fine with all of this, but it seems like turning off the on-the-fly
installation is not obeyed by the LyXWinInstaller script on the first time
through during install.

Dave


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



Re: Footnote without numbering (new)

2008-05-29 Thread Manveru
Are you sure of it?
I see this will change footer on every page in whole document...

2008/5/29 Nicolás <[EMAIL PROTECTED]>:

> A possibility to get a footnote not connected to a part of the document is
> to use the fancyhdr package
>
> In the preamble, write:
>
> \usepackage{fancyhdr}
> \fancypagestyle{plain}{
> \cfoot{}
> \lfoot{
> \scriptsize
> your text\
> \begin{center} \thepage \end{center}
> }
> \renewcommand{\headrulewidth}{0pt}
> \renewcommand{\footrulewidth}{0.5pt}
> }
>
> Nicolás
>
>
>
> Michael Wojcik wrote:
>
>> Jean-Marc Lasgouttes wrote:
>>
>>> Adrian Peter <[EMAIL PROTECTED]> writes:
>>>
>>>  Thank you for the suggestion but unfortunately I really need to put
 a footnote without a symbol or anything. I am trying to use Lyx for
 my thesis. Our college requires that if any of the chapters has
 already appeared as a publication that we need to list it on the
 first page of the chapter as a footnote.

>>>
>>> I thought that in such cases a numbered footnote was appended to the
>>> title of the chapter.
>>>
>>
>> The style Adrian describes seems to be relatively common in the US, for
>> various purposes. For example, many journals set text formatted as a
>> footnote with no number (often on the first or last page of an article),
>> with material such as previous publication, requirements for reproduction,
>> acknowledgments, and so on.
>>
>> A couple of examples I have to hand are _Critical Inquiry_ and
>> _Communications of the ACM_.
>>
>> So I'm not surprised that Adrian's college uses the same convention when
>> documenting prior publication.
>>
>>
>


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


Sideways Longtable

2008-05-29 Thread Adrian Peter

Hi,

Is there a way to create a longtable that is sideways (landscape)?  I tried to 
click on the rotate table 90 degrees option but that ended up giving me a bunch 
of errors.  Thank you.

Adrian


_
Change the world with e-mail. Join the i’m Initiative from Microsoft.
http://im.live.com/Messenger/IM/Join/Default.aspx?source=EML_WL_ChangeWorld

RE: Sideways Longtable

2008-05-29 Thread Adrian Peter

Never mind about the landscape longtable.  I found a thread that said I should 
you the lscape package so I will try that option.  Thanks.


_
Make every e-mail and IM count. Join the i’m Initiative from Microsoft.
http://im.live.com/Messenger/IM/Join/Default.aspx?source=EML_WL_ MakeCount

Lyx-users mail server error

2008-05-29 Thread Adrian Peter
Hi,

I am trying to attach a example lyx file to ask a question.  But my messages
keep getting rejected with the error below.  The example file is only 98K.
Thanks.

Adrian

---ERROR:


Hi. This is the qmail-send program at wierdlmpc.msci.memphis.edu.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. Sorry it didn't work out.

:
ezmlm-reject: fatal: Sorry, I don't accept messages larger than 6 bytes
(#5.2.3)


Re: Lyx 1.5.3 not showing references from Jabref 2.3.1

2008-05-29 Thread vu



rgheck wrote:
> 
> 
> Export the document to LaTeX and try compiling it manually. Report the 
> error messages. It sounds to me as if either LyX or LaTeX isn't finding 
> the .bib file, and there are various reasons this can happen.
> 
> 

I did this, and the output in the terminal was as follows:

[EMAIL PROTECTED]:~$ bibtex CONS6017-Essay
This is BibTeX, Version 0.99c (Web2C 7.5.6)
The top-level auxiliary file: CONS6017-Essay.aux
I couldn't open style file authordate1.bst
---line 3 of file CONS6017-Essay.aux
 : \bibstyle{authordate1
 :  }
I'm skipping whatever remains of this command
I found no style file---while reading file CONS6017-Essay.aux
(There were 2 error messages)


I was using the .bst file authordate1, but I have tried using other .bst
files (naturemag, authordate2) with the same result.

Because the message said it was missing a style file, I tried using a
different style file, one that was not part of the default Lyx installation
(the same .bst files, authordate1, harvard, agsm). DOING THIS SOLVED THE
PROBLEM. 

I explored the /usr/share/texmf-texlive/bibtex/bst folder, which is where I
assume the .bst files are located upon installation. I noticed many were
missing (the ones I had a problem with initially). 

However, I'm perplexed as to why the .bst files included in the Lyx
installation have disappeared. How to I return it back to its "original"
state? Can I put the bst files I've downloaded from CTAN and elsewhere into
the usr/.../bst folder, and if so, under which subdirectory (ams, babelbib,
base, index, natbib)? Why have the Lyx bst files disappeared? 
-- 
View this message in context: 
http://www.nabble.com/Lyx-1.5.3-not-showing-references-from-Jabref-2.3.1-tp17510841p17550564.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Installation glitch

2008-05-29 Thread Paul A. Rubin

David Hewitt wrote:



As always, thanks for the great help Paul.


Welcome.  :-)


Out of curiosity, I uninstalled and reinstalled to check this. At the MikTeX
installation, I chose NO for install packages on the fly. I don't think it
mattered. It still went through the list like last time, staying on some
entries for a good while. However, this time it did complete without
hanging.

Once finished, I went back to update the packages through MPM and now I
cannot do that. I get "permission denied" or "access denied" returns once
the packages download and extract and the FNDB is being updated. I'm not
sure why this occurs. BUT, I can go into settings in MikTeX, select new
packages, hit Apply and it will download and install. Then I can refresh the
FNDB manually and make the new formats and all works.

LyX is fine with all of this, but it seems like turning off the on-the-fly
installation is not obeyed by the LyXWinInstaller script on the first time
through during install.


Good question.  It's probably possible for Uwe's script to reset the 
MikTeX preference to download and install, but I really wonder if he 
would do that.  It's one thing to say that certain packages are required 
for LyX to work, but LyX looks for a lot of inessential packages, and 
I'm not sure how much disk space (to say nothing of bandwidth) they eat up.


This is never an issue for me; I always have MikTeX installed and 
working before I install LyX, even on a new machine.  I like to fight my 
battles one at a time.  ;-)  So I don't have any direct experience 
consistent with what you're describing.


The other thing is that I'm still on MikTeX 2.6, whereas I imagine 
you're installing 2.7.  When 2.7 was first released, there were some 
messages on their user list that I took to mean some people were having 
installation adventures.  Don't know if that's related to your 
experience or not.


It's always something.

/Paul



Re: Lyx-users mail server error

2008-05-29 Thread Jeremy C. Reed
> I am trying to attach a example lyx file to ask a question.  But my messages
> keep getting rejected with the error below.  The example file is only 98K.
> Thanks.

Please consider making a way smaller example.

I'd guess that a 98KB file is over 5000 lines -- way too long for an email 
to this list.

If not, consider posting it to some free webhosting service.


How reduce number of hyphenation per page

2008-05-29 Thread D . Zorig
Hi all,

I'm using LyX 1.5.5 on Windows XP.  My document has utf8 encoding and
Cyrillic font.  I'm getting about 10 hyphenation per page and doesn't look
pretty.  Unfortunately microtype package doesn't work with Cyrillic font.
So no protrusion and expansion available.
By googling, I got a understanding that hyphenation could be controlled with
following commands. But I can't find their definition.
\hyphenpenalty=
\exhyphenpenalty=
\righthyphenmin=
\lefthyphenmin=
\emergencystretch=
\tolerance=
I don't want to completely turn off hyphenation just reduce the number of
hyphenation per page.  I don't want to leave just 2 or 3 letters on the
upper line and hyphenate.  Preferably just stretch spaces or justify such
line.

Thank you in advance for you help.

-- 
Zorigtkhuu Davaanyam