Re: Position of tilde

2013-05-14 Thread Jürgen Spitzmüller
2013/5/13 PDV paul.vall...@colorado.edu

 
  Hello all! I apologise if this has been asked to death, but is there any
 way to get a normal looking tilde? Like
  this -- ~? I want to use it instead of saying approximately but when I
 use the keyboard tilde
  (\textasciitilde) it appears at the top of the line in the pdf output
 instead of the middle where I want it.
  I've tried the tilde math symbol as well ($\sim$) but it's a bit too
 fancy
 haha. Any ideas?
 
  Cheers!
 
  Alex

 I have figured this out. In your preamble use:

 \usepackage{tipa}

 and then instead of the tilde use:

 \textsuperimposetilde{}

 in ERT.

 This gets me a normal looking tilde for my uses.


Also have a look at this FAQ:
http://wiki.lyx.org/FAQ/SpecialSymbols#tilde

Jürgen



 - PDV

 rettie alex.rettie@... writes:

 




Re: indexing problem

2013-05-14 Thread Jürgen Spitzmüller
2013/5/14 John White:

Anyone see anything in this template which screws up the index
machine? (Indexing works if I take all the foregoing out of the
preamble)


I don't see any obvious culprit. I suggest you do some bisecting (I.e. cut
off parts of this templates until you find the offending bit).

Jürgen


RE: LyX on PC and Mac

2013-05-14 Thread Andrew Rodgers
Thanks a lot for your answers and advice Stefano and Richard, they have been 
very helpful.
Thanks again,Andrew   

Re: Problems with Undefined control sequence - \newfloat \float \floatstyle

2013-05-14 Thread stefano franchi
On Mon, May 13, 2013 at 11:08 AM, caio rodrigues 
caiorss.rodrig...@gmail.com wrote:

 Thanks anyway. I have found the following solution.  It's better to use a
 Makefile to compile the LyX file . One advantage of using the makefile is
 that debugging is more easier and the folder gets more clean after
 compilation and the  It can ignore the LaTex errors that are not critical
 and perform intermediare operations. And makes the Unix Junkies more happy.


Hi Caio,

I am not really sure how switching to Latex export plus direct compilation
with a makefile solved your original issues. What happened to those errors
you got when compiling from within lyx? Did they magically disappear? That
may indicate that lyx is not finding all your Tex packages.

Cheers,

S.

-- 
__
Stefano Franchi
Associate Research Professor
Department of Hispanic StudiesPh:   +1 (979) 845-2125
Texas AM University  Fax:  +1 (979) 845-6421
College Station, Texas, USA

stef...@tamu.edu
http://stefano.cleinias.org


graphics preview shows wrong page

2013-05-14 Thread Ross Boylan
I am using the beamer template to make a presentation and have several 
pages of graphics in a pdf file.(*)

I want to include individual pages at different points of the presentation.

I did Insert | File | External Material and selected PDFPages and 
browsed to and selected the pdf file.

On the LatTeX and LyX options tab I entered pages={1}.
Inline I see the last page of the document (page 3).  When I preview 
with ctl-R (pdflatex) I see the correct page.


Am I doing something wrong, or is the a bug?

I would appreciate being cc'd on the response.

Ross Boylan


LyX version 2.0.6 installed from the windows binary bundle.
Running windows 7

The pdf file was produced by R.


* The output pdf did not include the figure until I RTFM for Embedded 
Objects, which advises that figures should be outside of beamer frames 
and preceded by TeX code \setbeamertemplate{background canvas}{}


Re: Problems with Undefined control sequence - \newfloat \float \floatstyle

2013-05-14 Thread caio rodrigues
Hi Stefano,

The Makefile has solved my issues by just ignoring the error and forcing
the compilation by doing : make recompile. The Lyx version is : LyX 2.0.3 .

 The makefile  exports the lyx file to tex file and compiles by using:
   lyx -batch -f -e latex finalproject-report.lyx
and generates   finalproject-report.tex and compiles it.

There are a lot of errors in LaTex that aren't  important and annoying .  I
have installed all LaTex packages in Linux .

Here is the makefile code:  http://sprunge.us/WhPi

Going back to the error subject:
The  LyX gives three errors when I try to compile:

(1)

 \floatstyle

{}

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.


(2)

 \newfloat

{}{}{}

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.


(3)

 \floatname

{}{\protect\name}

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.



Here is the complete error log :  http://sprunge.us/aQXJ

Here is the latex generated preamble :  http://sprunge.us/eHWi


In the tex source code I 've seen that : Lyx automatically inserts this
codes.


\DeclareTextSymbol{\~}{LGR}{126}
%% Because html converters don't know tabularnewline
\providecommand{\tabularnewline}{\\}
\floatstyle{}
\newfloat{}{}{}
\providecommand{\name}{}
\floatname{}{\protect\name}


If I compile by exporting to tex  and doing :   pdflatex
monografia-parcial18.tex  it will give the same errors that are reported in
Lyx.

If I remove this codes in the tex file and compile it , there won't be any
errors reported and any issues.

If I don't remove this trouble code and export to Tex  and do:  pdflatex
 file.tex   and hit CR every time and do all others steps like bibitex,
 makeindex and forcing the compilation. It will build the  target pdf file
as expected. That is what the makefile does.

I believe that another benefit of Makefile is more control  and make more
easier to find the errors by viewing the error log file and all the
compilation process.  In addition the user can add more automation like
version control , send to remote repository ...  The makefile is one the
best Unix tools.

I hope this Makefile be useful to someone.

Regards,
Caio







2013/5/14 stefano franchi stefano.fran...@gmail.com




 On Mon, May 13, 2013 at 11:08 AM, caio rodrigues 
 caiorss.rodrig...@gmail.com wrote:

 Thanks anyway. I have found the following solution.  It's better to use a
 Makefile to compile the LyX file . One advantage of using the makefile is
 that debugging is more easier and the folder gets more clean after
 compilation and the  It can ignore the LaTex errors that are not critical
 and perform intermediare operations. And makes the Unix Junkies more happy.


 Hi Caio,

 I am not really sure how switching to Latex export plus direct compilation
 with a makefile solved your original issues. What happened to those errors
 you got when compiling from within lyx? Did they magically disappear? That
 may indicate that lyx is not finding all your Tex packages.

 Cheers,

 S.

 --
 __
 Stefano Franchi
 Associate Research Professor
 Department of Hispanic StudiesPh:   +1 (979) 845-2125
 Texas AM University  Fax:  +1 (979) 845-6421
 College Station, Texas, USA

 stef...@tamu.edu
 http://stefano.cleinias.org



Re: Converting lyx to odt

2013-05-14 Thread Scott Kostyshak
On Thu, May 2, 2013 at 9:18 AM, Richard Heck rgh...@lyx.org wrote:
 On 05/01/2013 11:28 PM, Scott Kostyshak wrote:

 On Wed, May 1, 2013 at 10:59 PM, Jerry lancebo...@qwest.net wrote:

 A while back I spent a lot of time evaluating the various  ways to
 convert LyX to .odt or .docx and found that none of them work well.

 You seemed more impressed a few months ago :)
 Mostly successful experiment: LyX - LaTeX - Word using pandoc
 http://comments.gmane.org/gmane.editors.lyx.general/76375

 But I imagine that sometimes mostly successful is still a failure if
 a few key features are missing.

 Note that Pandoc support in LyX seems like it's just waiting for
 someone to make a patch:
 http://www.lyx.org/trac/ticket/6042


 The main question is simply what format conversions we want to support out
 of the box. Writing the configure.py stuff is otherwise trivial.

How do we decide this?

Scott


Re: Problem with pdflatex with LyX 2.0.6 and Adobe XI

2013-05-14 Thread Scott Kostyshak
On Tue, May 14, 2013 at 3:46 PM, F. W. wehrlich.faus...@gmail.com wrote:
 Hello,

 I just updated my LyX and Adobe Reader to 2.0.6 and XI, respective in
 Windows 7 and to my chigrin, pdflatex no long creates a PDF.  I have
 monitered the process with the task manager and pdflatex appears to close
 normally, followed by pdfview.exe starting and ending shortly thereafter
 (with no pdf being created).

Have you tried Sumatra? It's available for Windows, is free, and is open source.

Scott


Re: Position of tilde

2013-05-14 Thread Jürgen Spitzmüller
2013/5/13 PDV paul.vall...@colorado.edu

 
  Hello all! I apologise if this has been asked to death, but is there any
 way to get a normal looking tilde? Like
  this -- ~? I want to use it instead of saying approximately but when I
 use the keyboard tilde
  (\textasciitilde) it appears at the top of the line in the pdf output
 instead of the middle where I want it.
  I've tried the tilde math symbol as well ($\sim$) but it's a bit too
 fancy
 haha. Any ideas?
 
  Cheers!
 
  Alex

 I have figured this out. In your preamble use:

 \usepackage{tipa}

 and then instead of the tilde use:

 \textsuperimposetilde{}

 in ERT.

 This gets me a normal looking tilde for my uses.


Also have a look at this FAQ:
http://wiki.lyx.org/FAQ/SpecialSymbols#tilde

Jürgen



 - PDV

 rettie alex.rettie@... writes:

 




Re: indexing problem

2013-05-14 Thread Jürgen Spitzmüller
2013/5/14 John White:

Anyone see anything in this template which screws up the index
machine? (Indexing works if I take all the foregoing out of the
preamble)


I don't see any obvious culprit. I suggest you do some bisecting (I.e. cut
off parts of this templates until you find the offending bit).

Jürgen


RE: LyX on PC and Mac

2013-05-14 Thread Andrew Rodgers
Thanks a lot for your answers and advice Stefano and Richard, they have been 
very helpful.
Thanks again,Andrew   

Re: Problems with Undefined control sequence - \newfloat \float \floatstyle

2013-05-14 Thread stefano franchi
On Mon, May 13, 2013 at 11:08 AM, caio rodrigues 
caiorss.rodrig...@gmail.com wrote:

 Thanks anyway. I have found the following solution.  It's better to use a
 Makefile to compile the LyX file . One advantage of using the makefile is
 that debugging is more easier and the folder gets more clean after
 compilation and the  It can ignore the LaTex errors that are not critical
 and perform intermediare operations. And makes the Unix Junkies more happy.


Hi Caio,

I am not really sure how switching to Latex export plus direct compilation
with a makefile solved your original issues. What happened to those errors
you got when compiling from within lyx? Did they magically disappear? That
may indicate that lyx is not finding all your Tex packages.

Cheers,

S.

-- 
__
Stefano Franchi
Associate Research Professor
Department of Hispanic StudiesPh:   +1 (979) 845-2125
Texas AM University  Fax:  +1 (979) 845-6421
College Station, Texas, USA

stef...@tamu.edu
http://stefano.cleinias.org


graphics preview shows wrong page

2013-05-14 Thread Ross Boylan
I am using the beamer template to make a presentation and have several 
pages of graphics in a pdf file.(*)

I want to include individual pages at different points of the presentation.

I did Insert | File | External Material and selected PDFPages and 
browsed to and selected the pdf file.

On the LatTeX and LyX options tab I entered pages={1}.
Inline I see the last page of the document (page 3).  When I preview 
with ctl-R (pdflatex) I see the correct page.


Am I doing something wrong, or is the a bug?

I would appreciate being cc'd on the response.

Ross Boylan


LyX version 2.0.6 installed from the windows binary bundle.
Running windows 7

The pdf file was produced by R.


* The output pdf did not include the figure until I RTFM for Embedded 
Objects, which advises that figures should be outside of beamer frames 
and preceded by TeX code \setbeamertemplate{background canvas}{}


Re: Problems with Undefined control sequence - \newfloat \float \floatstyle

2013-05-14 Thread caio rodrigues
Hi Stefano,

The Makefile has solved my issues by just ignoring the error and forcing
the compilation by doing : make recompile. The Lyx version is : LyX 2.0.3 .

 The makefile  exports the lyx file to tex file and compiles by using:
   lyx -batch -f -e latex finalproject-report.lyx
and generates   finalproject-report.tex and compiles it.

There are a lot of errors in LaTex that aren't  important and annoying .  I
have installed all LaTex packages in Linux .

Here is the makefile code:  http://sprunge.us/WhPi

Going back to the error subject:
The  LyX gives three errors when I try to compile:

(1)

 \floatstyle

{}

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.


(2)

 \newfloat

{}{}{}

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.


(3)

 \floatname

{}{\protect\name}

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.



Here is the complete error log :  http://sprunge.us/aQXJ

Here is the latex generated preamble :  http://sprunge.us/eHWi


In the tex source code I 've seen that : Lyx automatically inserts this
codes.


\DeclareTextSymbol{\~}{LGR}{126}
%% Because html converters don't know tabularnewline
\providecommand{\tabularnewline}{\\}
\floatstyle{}
\newfloat{}{}{}
\providecommand{\name}{}
\floatname{}{\protect\name}


If I compile by exporting to tex  and doing :   pdflatex
monografia-parcial18.tex  it will give the same errors that are reported in
Lyx.

If I remove this codes in the tex file and compile it , there won't be any
errors reported and any issues.

If I don't remove this trouble code and export to Tex  and do:  pdflatex
 file.tex   and hit CR every time and do all others steps like bibitex,
 makeindex and forcing the compilation. It will build the  target pdf file
as expected. That is what the makefile does.

I believe that another benefit of Makefile is more control  and make more
easier to find the errors by viewing the error log file and all the
compilation process.  In addition the user can add more automation like
version control , send to remote repository ...  The makefile is one the
best Unix tools.

I hope this Makefile be useful to someone.

Regards,
Caio







2013/5/14 stefano franchi stefano.fran...@gmail.com




 On Mon, May 13, 2013 at 11:08 AM, caio rodrigues 
 caiorss.rodrig...@gmail.com wrote:

 Thanks anyway. I have found the following solution.  It's better to use a
 Makefile to compile the LyX file . One advantage of using the makefile is
 that debugging is more easier and the folder gets more clean after
 compilation and the  It can ignore the LaTex errors that are not critical
 and perform intermediare operations. And makes the Unix Junkies more happy.


 Hi Caio,

 I am not really sure how switching to Latex export plus direct compilation
 with a makefile solved your original issues. What happened to those errors
 you got when compiling from within lyx? Did they magically disappear? That
 may indicate that lyx is not finding all your Tex packages.

 Cheers,

 S.

 --
 __
 Stefano Franchi
 Associate Research Professor
 Department of Hispanic StudiesPh:   +1 (979) 845-2125
 Texas AM University  Fax:  +1 (979) 845-6421
 College Station, Texas, USA

 stef...@tamu.edu
 http://stefano.cleinias.org



Re: Converting lyx to odt

2013-05-14 Thread Scott Kostyshak
On Thu, May 2, 2013 at 9:18 AM, Richard Heck rgh...@lyx.org wrote:
 On 05/01/2013 11:28 PM, Scott Kostyshak wrote:

 On Wed, May 1, 2013 at 10:59 PM, Jerry lancebo...@qwest.net wrote:

 A while back I spent a lot of time evaluating the various  ways to
 convert LyX to .odt or .docx and found that none of them work well.

 You seemed more impressed a few months ago :)
 Mostly successful experiment: LyX - LaTeX - Word using pandoc
 http://comments.gmane.org/gmane.editors.lyx.general/76375

 But I imagine that sometimes mostly successful is still a failure if
 a few key features are missing.

 Note that Pandoc support in LyX seems like it's just waiting for
 someone to make a patch:
 http://www.lyx.org/trac/ticket/6042


 The main question is simply what format conversions we want to support out
 of the box. Writing the configure.py stuff is otherwise trivial.

How do we decide this?

Scott


Re: Problem with pdflatex with LyX 2.0.6 and Adobe XI

2013-05-14 Thread Scott Kostyshak
On Tue, May 14, 2013 at 3:46 PM, F. W. wehrlich.faus...@gmail.com wrote:
 Hello,

 I just updated my LyX and Adobe Reader to 2.0.6 and XI, respective in
 Windows 7 and to my chigrin, pdflatex no long creates a PDF.  I have
 monitered the process with the task manager and pdflatex appears to close
 normally, followed by pdfview.exe starting and ending shortly thereafter
 (with no pdf being created).

Have you tried Sumatra? It's available for Windows, is free, and is open source.

Scott


Re: Position of tilde

2013-05-14 Thread Jürgen Spitzmüller
2013/5/13 PDV 

> >
> > Hello all! I apologise if this has been asked to death, but is there any
> way to get a normal looking tilde? Like
> > this --> ~? I want to use it instead of saying "approximately" but when I
> use the keyboard tilde
> > (\textasciitilde) it appears at the top of the line in the pdf output
> instead of the middle where I want it.
> > I've tried the tilde math symbol as well ($\sim$) but it's a bit too
> fancy
> haha. Any ideas?
> >
> > Cheers!
> >
> > Alex
>
> I have figured this out. In your preamble use:
>
> \usepackage{tipa}
>
> and then instead of the tilde use:
>
> \textsuperimposetilde{}
>
> in ERT.
>
> This gets me a "normal" looking tilde for my uses.
>

Also have a look at this FAQ:
http://wiki.lyx.org/FAQ/SpecialSymbols#tilde

Jürgen


>
> - PDV
>
> rettie  writes:
>
> >
>
>


Re: indexing problem

2013-05-14 Thread Jürgen Spitzmüller
2013/5/14 John White:

>Anyone see anything in this template which screws up the index
>machine? (Indexing works if I take all the foregoing out of the
>preamble)
>

I don't see any obvious culprit. I suggest you do some bisecting (I.e. cut
off parts of this templates until you find the offending bit).

Jürgen


RE: LyX on PC and Mac

2013-05-14 Thread Andrew Rodgers
Thanks a lot for your answers and advice Stefano and Richard, they have been 
very helpful.
Thanks again,Andrew   

Re: Problems with Undefined control sequence - \newfloat \float \floatstyle

2013-05-14 Thread stefano franchi
On Mon, May 13, 2013 at 11:08 AM, caio rodrigues <
caiorss.rodrig...@gmail.com> wrote:

> Thanks anyway. I have found the following solution.  It's better to use a
> Makefile to compile the LyX file . One advantage of using the makefile is
> that debugging is more easier and the folder gets more clean after
> compilation and the  It can ignore the LaTex errors that are not critical
> and perform intermediare operations. And makes the Unix Junkies more happy.
>
>
Hi Caio,

I am not really sure how switching to Latex export plus direct compilation
with a makefile solved your original issues. What happened to those errors
you got when compiling from within lyx? Did they magically disappear? That
may indicate that lyx is not finding all your Tex packages.

Cheers,

S.

-- 
__
Stefano Franchi
Associate Research Professor
Department of Hispanic StudiesPh:   +1 (979) 845-2125
Texas A University  Fax:  +1 (979) 845-6421
College Station, Texas, USA

stef...@tamu.edu
http://stefano.cleinias.org


graphics preview shows wrong page

2013-05-14 Thread Ross Boylan
I am using the beamer template to make a presentation and have several 
pages of graphics in a pdf file.(*)

I want to include individual pages at different points of the presentation.

I did Insert | File | External Material and selected PDFPages and 
browsed to and selected the pdf file.

On the LatTeX and LyX options tab I entered pages={1}.
Inline I see the last page of the document (page 3).  When I preview 
with ctl-R (pdflatex) I see the correct page.


Am I doing something wrong, or is the a bug?

I would appreciate being cc'd on the response.

Ross Boylan


LyX version 2.0.6 installed from the windows binary bundle.
Running windows 7

The pdf file was produced by R.


* The output pdf did not include the figure until I RTFM for Embedded 
Objects, which advises that figures should be outside of beamer frames 
and preceded by TeX code \setbeamertemplate{background canvas}{}


Re: Problems with Undefined control sequence - \newfloat \float \floatstyle

2013-05-14 Thread caio rodrigues
Hi Stefano,

The Makefile has solved my issues by just ignoring the error and forcing
the compilation by doing : make recompile. The Lyx version is : LyX 2.0.3 .

 The makefile  exports the lyx file to tex file and compiles by using:
   lyx -batch -f -e latex finalproject-report.lyx
and generates   finalproject-report.tex and compiles it.

There are a lot of errors in LaTex that aren't  important and annoying .  I
have installed all LaTex packages in Linux .

Here is the makefile code:  http://sprunge.us/WhPi

Going back to the error subject:
The  LyX gives three errors when I try to compile:

(1)

 \floatstyle

{}

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.


(2)

 \newfloat

{}{}{}

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.


(3)

 \floatname

{}{\protect\name}

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.



Here is the complete error log :  http://sprunge.us/aQXJ

Here is the latex generated preamble :  http://sprunge.us/eHWi


In the tex source code I 've seen that : Lyx automatically inserts this
codes.


\DeclareTextSymbol{\~}{LGR}{126}
%% Because html converters don't know tabularnewline
\providecommand{\tabularnewline}{\\}
\floatstyle{}
\newfloat{}{}{}
\providecommand{\name}{}
\floatname{}{\protect\name}


If I compile by exporting to tex  and doing :   pdflatex
monografia-parcial18.tex  it will give the same errors that are reported in
Lyx.

If I remove this codes in the tex file and compile it , there won't be any
errors reported and any issues.

If I don't remove this trouble code and export to Tex  and do:  pdflatex
 .tex   and hit CR every time and do all others steps like bibitex,
 makeindex and forcing the compilation. It will build the  target pdf file
as expected. That is what the makefile does.

I believe that another benefit of Makefile is more control  and make more
easier to find the errors by viewing the error log file and all the
compilation process.  In addition the user can add more automation like
version control , send to remote repository ...  The makefile is one the
best Unix tools.

I hope this Makefile be useful to someone.

Regards,
Caio







2013/5/14 stefano franchi 

>
>
>
> On Mon, May 13, 2013 at 11:08 AM, caio rodrigues <
> caiorss.rodrig...@gmail.com> wrote:
>
>> Thanks anyway. I have found the following solution.  It's better to use a
>> Makefile to compile the LyX file . One advantage of using the makefile is
>> that debugging is more easier and the folder gets more clean after
>> compilation and the  It can ignore the LaTex errors that are not critical
>> and perform intermediare operations. And makes the Unix Junkies more happy.
>>
>>
> Hi Caio,
>
> I am not really sure how switching to Latex export plus direct compilation
> with a makefile solved your original issues. What happened to those errors
> you got when compiling from within lyx? Did they magically disappear? That
> may indicate that lyx is not finding all your Tex packages.
>
> Cheers,
>
> S.
>
> --
> __
> Stefano Franchi
> Associate Research Professor
> Department of Hispanic StudiesPh:   +1 (979) 845-2125
> Texas A University  Fax:  +1 (979) 845-6421
> College Station, Texas, USA
>
> stef...@tamu.edu
> http://stefano.cleinias.org
>


Re: Converting lyx to odt

2013-05-14 Thread Scott Kostyshak
On Thu, May 2, 2013 at 9:18 AM, Richard Heck  wrote:
> On 05/01/2013 11:28 PM, Scott Kostyshak wrote:
>>
>> On Wed, May 1, 2013 at 10:59 PM, Jerry  wrote:
>>
>>> A while back I spent a lot of time evaluating the various  ways to
>>> convert LyX to .odt or .docx and found that none of them work well.
>>
>> You seemed more impressed a few months ago :)
>> "Mostly successful experiment: LyX -> LaTeX -> Word using pandoc"
>> http://comments.gmane.org/gmane.editors.lyx.general/76375
>>
>> But I imagine that sometimes "mostly" successful is still a failure if
>> a few key features are missing.
>>
>> Note that Pandoc support in LyX seems like it's just waiting for
>> someone to make a patch:
>> http://www.lyx.org/trac/ticket/6042
>
>
> The main question is simply what format conversions we want to support out
> of the box. Writing the configure.py stuff is otherwise trivial.

How do we decide this?

Scott


Re: Problem with pdflatex with LyX 2.0.6 and Adobe XI

2013-05-14 Thread Scott Kostyshak
On Tue, May 14, 2013 at 3:46 PM, F. W.  wrote:
> Hello,
>
> I just updated my LyX and Adobe Reader to 2.0.6 and XI, respective in
> Windows 7 and to my chigrin, pdflatex no long creates a PDF.  I have
> monitered the process with the task manager and pdflatex appears to close
> normally, followed by pdfview.exe starting and ending shortly thereafter
> (with no pdf being created).

Have you tried Sumatra? It's available for Windows, is free, and is open source.

Scott