Re: more hyperref

2005-06-24 Thread Uwe Stöhr

Geoffrey Lloyd wrote:


I now have it working. However it only links the number such that figure 1
 has a link for the 1 not the whole 'figure 1'. Is there any way to 
link the

 whole thing?

Add the following line to the preamble:

\AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1

You can also change the name from figure to e.g. Fig. with the 
following commands:


\renewcommand{\figureautorefname}{Fig.\negthinspace}
\renewcommand{\tableautorefname}{Tab.\negthinspace}

And please have a look at the hyperref manual. All those commands are 
described there.


regards Uwe


converting lyx to word

2005-06-24 Thread Martin A. Hansen
hello people


deadline is today:

i need to convert my article from lyx to word preserving the references.

export-latex; running latex, bibtex, renaming bbl files, running latex2rtf
fucks up the references exchanging number refs with refkeys!

export-html fails too (cant figure out custom command \dna{} and cant get the 
bibtex bbl filename correct, afaics)


help


:o(



martin


ps i really really really really really hate word


Re: converting lyx to word

2005-06-24 Thread Guido Milanese
Quick suggestion. It is what I do all the time, with good results:

(1) export as latex
(2) put in a separate directoy all the stuff you need (latex file and bibtex 
files).
(3) install tex4ht
http://www.cse.ohio-state.edu/~gurari/TeX4ht/mn.html
(4) install open office if you don't have already
(5) run tex4ht with a script to obtain an OpenOffice file (oolatex)
(6) from Open office, save as doc or rtf.

HTH,
g
ps the reason of a separate directory: tex4ht (oolatex in this case) produces a 
lot of intermediate files. Better keep the original in a separate place.

 ==
 Date: Fri, 24 Jun 2005 14:14:26 +0200
 From: [EMAIL PROTECTED] (Martin A. Hansen)
 To: lyx-users@lists.lyx.org
 Subject: converting lyx to word
 ==
 
 hello people
 
 
 deadline is today:
 
 i need to convert my article from lyx to word preserving the 
 references.





multiple cross references using hyperref

2005-06-24 Thread Geoffrey Lloyd
Hi

I have several instances where I write 

'refering to equations 1.x and 1.y'. 

I am now using the \autoref part of hyperref and it prioduces nice out put but 
with multiple references like above I get 

'refering to equation 1.x and equation 1.y'

It is possible using this package to get the first output using \autoref.  It 
would look and read much better.

Geoff

MOre hyperref problems.....

2005-06-24 Thread Geoffrey Lloyd
This time it is not stylistic but some sort of glitch.

I have a bibliography in my toc has always been there - ie I havent added it as 
a toc line or anything. Anyway it is page 63. If I click the hyperref in the 
toc it goes to page 62, the same is true if I select the bookmark in the pdf.

I have no idea how to get this to go to the correct place - in fact I am sure 
it was working properly at one point.

Any help much appreciated.

Geoff

Re: converting lyx to word

2005-06-24 Thread Martin A. Hansen
ok folks


i am a nerve-wreck, but the manuscript is converted and submitted.

i managed to convert to html and use openoffice to convert to doc (with
stupid html links conserved - i never figured out how to remove those -
i hope it doesnt matter).

i will now go on to reset my nerves using large amounts of alcohol.

anyone have an address for Microsoft Accounting where i can bill my
bar-expenses?


- and thanks to all



martin





On Fri, Jun 24, 2005 at 02:45:11PM +0200, Guido Milanese wrote:
 Quick suggestion. It is what I do all the time, with good results:
 
 (1) export as latex
 (2) put in a separate directoy all the stuff you need (latex file and bibtex 
 files).
 (3) install tex4ht
 http://www.cse.ohio-state.edu/~gurari/TeX4ht/mn.html
 (4) install open office if you don't have already
 (5) run tex4ht with a script to obtain an OpenOffice file (oolatex)
 (6) from Open office, save as doc or rtf.
 
 HTH,
 g
 ps the reason of a separate directory: tex4ht (oolatex in this case) produces 
 a lot of intermediate files. Better keep the original in a separate place.
 
  ==
  Date: Fri, 24 Jun 2005 14:14:26 +0200
  From: [EMAIL PROTECTED] (Martin A. Hansen)
  To: lyx-users@lists.lyx.org
  Subject: converting lyx to word
  ==
  
  hello people
  
  
  deadline is today:
  
  i need to convert my article from lyx to word preserving the 
  references.
 
 


latex font error

2005-06-24 Thread Nelson Hogg
In attempting to view a document I get a number of the following kinds 
of font errors only differing it what font they have trouble with:


Font T1/cmr/bx/n/10.95=ecbx1095 at 10.95pt not loadable: Metric (TFM) 
file not found


If I export the document in tex form and then run latex on it the same 
problem arises. Can anyone help? This happens with Mandriva 2005 on my 
workstation, but not with the same distro on my laptop. And never before 
with ealier versions of Mandrake.

Thanks, Nelson Hogg



Re: multiple cross references using hyperref

2005-06-24 Thread Uwe Stöhr

Geoffrey Lloyd wrote:

I have several instances where I write 

'refering to equations 1.x and 1.y'. 


I am now using the \autoref part of hyperref and it produces nice out put

 but with multiple references like above I get


'refering to equation 1.x and equation 1.y'

It is possible using this package to get the first output using \autoref.


Redefine the command \equationautorefname temporarily.
E.g.

\newlength{\abc}
\settowidth{\abc}{\space}
\newcommand{\NoEqName}{\renewcommand{\equationautorefname}{\hspace{-\abc}}}
\newcommand{\EqName}{\renewcommand{\equationautorefname}{equation\space}}

and then use the command \NoEqName before the second reference and 
behind it the command \eqName to return to the normal behaviour.


regards Uwe


arabic footnotes in title section in acticle class ?

2005-06-24 Thread Martin A. Hansen
hey


i need to supply two footnotes with the title and some more with the
authors of an article. however, i cant figure out how to convert the
footnotes from symbols to arabics? this seems to be tricky within the
title-section?


ideas?



martin


Re: more hyperref

2005-06-24 Thread Uwe Stöhr

Geoffrey Lloyd wrote:


I now have it working. However it only links the number such that figure 1
 has a link for the 1 not the whole 'figure 1'. Is there any way to 
link the

 whole thing?

Add the following line to the preamble:

\AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1

You can also change the name from figure to e.g. Fig. with the 
following commands:


\renewcommand{\figureautorefname}{Fig.\negthinspace}
\renewcommand{\tableautorefname}{Tab.\negthinspace}

And please have a look at the hyperref manual. All those commands are 
described there.


regards Uwe


converting lyx to word

2005-06-24 Thread Martin A. Hansen
hello people


deadline is today:

i need to convert my article from lyx to word preserving the references.

export-latex; running latex, bibtex, renaming bbl files, running latex2rtf
fucks up the references exchanging number refs with refkeys!

export-html fails too (cant figure out custom command \dna{} and cant get the 
bibtex bbl filename correct, afaics)


help


:o(



martin


ps i really really really really really hate word


Re: converting lyx to word

2005-06-24 Thread Guido Milanese
Quick suggestion. It is what I do all the time, with good results:

(1) export as latex
(2) put in a separate directoy all the stuff you need (latex file and bibtex 
files).
(3) install tex4ht
http://www.cse.ohio-state.edu/~gurari/TeX4ht/mn.html
(4) install open office if you don't have already
(5) run tex4ht with a script to obtain an OpenOffice file (oolatex)
(6) from Open office, save as doc or rtf.

HTH,
g
ps the reason of a separate directory: tex4ht (oolatex in this case) produces a 
lot of intermediate files. Better keep the original in a separate place.

 ==
 Date: Fri, 24 Jun 2005 14:14:26 +0200
 From: [EMAIL PROTECTED] (Martin A. Hansen)
 To: lyx-users@lists.lyx.org
 Subject: converting lyx to word
 ==
 
 hello people
 
 
 deadline is today:
 
 i need to convert my article from lyx to word preserving the 
 references.





multiple cross references using hyperref

2005-06-24 Thread Geoffrey Lloyd
Hi

I have several instances where I write 

'refering to equations 1.x and 1.y'. 

I am now using the \autoref part of hyperref and it prioduces nice out put but 
with multiple references like above I get 

'refering to equation 1.x and equation 1.y'

It is possible using this package to get the first output using \autoref.  It 
would look and read much better.

Geoff

MOre hyperref problems.....

2005-06-24 Thread Geoffrey Lloyd
This time it is not stylistic but some sort of glitch.

I have a bibliography in my toc has always been there - ie I havent added it as 
a toc line or anything. Anyway it is page 63. If I click the hyperref in the 
toc it goes to page 62, the same is true if I select the bookmark in the pdf.

I have no idea how to get this to go to the correct place - in fact I am sure 
it was working properly at one point.

Any help much appreciated.

Geoff

Re: converting lyx to word

2005-06-24 Thread Martin A. Hansen
ok folks


i am a nerve-wreck, but the manuscript is converted and submitted.

i managed to convert to html and use openoffice to convert to doc (with
stupid html links conserved - i never figured out how to remove those -
i hope it doesnt matter).

i will now go on to reset my nerves using large amounts of alcohol.

anyone have an address for Microsoft Accounting where i can bill my
bar-expenses?


- and thanks to all



martin





On Fri, Jun 24, 2005 at 02:45:11PM +0200, Guido Milanese wrote:
 Quick suggestion. It is what I do all the time, with good results:
 
 (1) export as latex
 (2) put in a separate directoy all the stuff you need (latex file and bibtex 
 files).
 (3) install tex4ht
 http://www.cse.ohio-state.edu/~gurari/TeX4ht/mn.html
 (4) install open office if you don't have already
 (5) run tex4ht with a script to obtain an OpenOffice file (oolatex)
 (6) from Open office, save as doc or rtf.
 
 HTH,
 g
 ps the reason of a separate directory: tex4ht (oolatex in this case) produces 
 a lot of intermediate files. Better keep the original in a separate place.
 
  ==
  Date: Fri, 24 Jun 2005 14:14:26 +0200
  From: [EMAIL PROTECTED] (Martin A. Hansen)
  To: lyx-users@lists.lyx.org
  Subject: converting lyx to word
  ==
  
  hello people
  
  
  deadline is today:
  
  i need to convert my article from lyx to word preserving the 
  references.
 
 


latex font error

2005-06-24 Thread Nelson Hogg
In attempting to view a document I get a number of the following kinds 
of font errors only differing it what font they have trouble with:


Font T1/cmr/bx/n/10.95=ecbx1095 at 10.95pt not loadable: Metric (TFM) 
file not found


If I export the document in tex form and then run latex on it the same 
problem arises. Can anyone help? This happens with Mandriva 2005 on my 
workstation, but not with the same distro on my laptop. And never before 
with ealier versions of Mandrake.

Thanks, Nelson Hogg



Re: multiple cross references using hyperref

2005-06-24 Thread Uwe Stöhr

Geoffrey Lloyd wrote:

I have several instances where I write 

'refering to equations 1.x and 1.y'. 


I am now using the \autoref part of hyperref and it produces nice out put

 but with multiple references like above I get


'refering to equation 1.x and equation 1.y'

It is possible using this package to get the first output using \autoref.


Redefine the command \equationautorefname temporarily.
E.g.

\newlength{\abc}
\settowidth{\abc}{\space}
\newcommand{\NoEqName}{\renewcommand{\equationautorefname}{\hspace{-\abc}}}
\newcommand{\EqName}{\renewcommand{\equationautorefname}{equation\space}}

and then use the command \NoEqName before the second reference and 
behind it the command \eqName to return to the normal behaviour.


regards Uwe


arabic footnotes in title section in acticle class ?

2005-06-24 Thread Martin A. Hansen
hey


i need to supply two footnotes with the title and some more with the
authors of an article. however, i cant figure out how to convert the
footnotes from symbols to arabics? this seems to be tricky within the
title-section?


ideas?



martin


Re: more hyperref

2005-06-24 Thread Uwe Stöhr

Geoffrey Lloyd wrote:


I now have it working. However it only links the number such that figure 1
> has a link for the 1 not the whole 'figure 1'. Is there any way to 
link the

> whole thing?

Add the following line to the preamble:

\AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1

You can also change the name from "figure" to e.g. "Fig." with the 
following commands:


\renewcommand{\figureautorefname}{Fig.\negthinspace}
\renewcommand{\tableautorefname}{Tab.\negthinspace}

And please have a look at the hyperref manual. All those commands are 
described there.


regards Uwe


converting lyx to word

2005-06-24 Thread Martin A. Hansen
hello people


deadline is today:

i need to convert my article from lyx to word preserving the references.

export->latex; running latex, bibtex, renaming bbl files, running latex2rtf
fucks up the references exchanging number refs with refkeys!

export->html fails too (cant figure out custom command \dna{} and cant get the 
bibtex bbl filename correct, afaics)


help


:o(



martin


ps i really really really really really hate word


Re: converting lyx to word

2005-06-24 Thread Guido Milanese
Quick suggestion. It is what I do all the time, with good results:

(1) export as latex
(2) put in a separate directoy all the stuff you need (latex file and bibtex 
files).
(3) install tex4ht
http://www.cse.ohio-state.edu/~gurari/TeX4ht/mn.html
(4) install open office if you don't have already
(5) run tex4ht with a script to obtain an OpenOffice file (oolatex)
(6) from Open office, save as doc or rtf.

HTH,
g
ps the reason of a separate directory: tex4ht (oolatex in this case) produces a 
lot of intermediate files. Better keep the original in a separate place.

> ==
> Date: Fri, 24 Jun 2005 14:14:26 +0200
> From: [EMAIL PROTECTED] (Martin A. Hansen)
> To: lyx-users@lists.lyx.org
> Subject: converting lyx to word
> ==
> 
> hello people
> 
> 
> deadline is today:
> 
> i need to convert my article from lyx to word preserving the 
> references.





multiple cross references using hyperref

2005-06-24 Thread Geoffrey Lloyd
Hi

I have several instances where I write 

'refering to equations 1.x and 1.y'. 

I am now using the \autoref part of hyperref and it prioduces nice out put but 
with multiple references like above I get 

'refering to equation 1.x and equation 1.y'

It is possible using this package to get the first output using \autoref.  It 
would look and read much better.

Geoff

MOre hyperref problems.....

2005-06-24 Thread Geoffrey Lloyd
This time it is not stylistic but some sort of glitch.

I have a bibliography in my toc has always been there - ie I havent added it as 
a toc line or anything. Anyway it is page 63. If I click the hyperref in the 
toc it goes to page 62, the same is true if I select the bookmark in the pdf.

I have no idea how to get this to go to the correct place - in fact I am sure 
it was working properly at one point.

Any help much appreciated.

Geoff

Re: converting lyx to word

2005-06-24 Thread Martin A. Hansen
ok folks


i am a nerve-wreck, but the manuscript is converted and submitted.

i managed to convert to html and use openoffice to convert to doc (with
stupid html links conserved - i never figured out how to remove those -
i hope it doesnt matter).

i will now go on to reset my nerves using large amounts of alcohol.

anyone have an address for Microsoft Accounting where i can bill my
bar-expenses?


- and thanks to all



martin





On Fri, Jun 24, 2005 at 02:45:11PM +0200, Guido Milanese wrote:
> Quick suggestion. It is what I do all the time, with good results:
> 
> (1) export as latex
> (2) put in a separate directoy all the stuff you need (latex file and bibtex 
> files).
> (3) install tex4ht
> http://www.cse.ohio-state.edu/~gurari/TeX4ht/mn.html
> (4) install open office if you don't have already
> (5) run tex4ht with a script to obtain an OpenOffice file (oolatex)
> (6) from Open office, save as doc or rtf.
> 
> HTH,
> g
> ps the reason of a separate directory: tex4ht (oolatex in this case) produces 
> a lot of intermediate files. Better keep the original in a separate place.
> 
> > ==
> > Date: Fri, 24 Jun 2005 14:14:26 +0200
> > From: [EMAIL PROTECTED] (Martin A. Hansen)
> > To: lyx-users@lists.lyx.org
> > Subject: converting lyx to word
> > ==
> > 
> > hello people
> > 
> > 
> > deadline is today:
> > 
> > i need to convert my article from lyx to word preserving the 
> > references.
> 
> 


latex font error

2005-06-24 Thread Nelson Hogg
In attempting to "view" a document I get a number of the following kinds 
of font errors only differing it what font they have trouble with:


"Font T1/cmr/bx/n/10.95=ecbx1095 at 10.95pt not loadable: Metric (TFM) 
file not found"


If I export the document in tex form and then run latex on it the same 
problem arises. Can anyone help? This happens with Mandriva 2005 on my 
workstation, but not with the same distro on my laptop. And never before 
with ealier versions of Mandrake.

Thanks, Nelson Hogg



Re: multiple cross references using hyperref

2005-06-24 Thread Uwe Stöhr

Geoffrey Lloyd wrote:

I have several instances where I write 

'refering to equations 1.x and 1.y'. 


I am now using the \autoref part of hyperref and it produces nice out put

> but with multiple references like above I get


'refering to equation 1.x and equation 1.y'

It is possible using this package to get the first output using \autoref.


Redefine the command \equationautorefname temporarily.
E.g.

\newlength{\abc}
\settowidth{\abc}{\space}
\newcommand{\NoEqName}{\renewcommand{\equationautorefname}{\hspace{-\abc}}}
\newcommand{\EqName}{\renewcommand{\equationautorefname}{equation\space}}

and then use the command \NoEqName before the second reference and 
behind it the command \eqName to return to the normal behaviour.


regards Uwe


arabic footnotes in title section in acticle class ?

2005-06-24 Thread Martin A. Hansen
hey


i need to supply two footnotes with the title and some more with the
authors of an article. however, i cant figure out how to convert the
footnotes from symbols to arabics? this seems to be tricky within the
title-section?


ideas?



martin