Re: Irregularity with CambridgeUS theme in Beamer

2018-02-16 Thread Sam Lewis
Thanks for your swift reply Baris!
I'll do some further testing on my site. I'm using TexLive
Cheers!Sam

 

On Friday, 16 February 2018, 17:36, Baris Erkus <bariser...@hotmail.com> 
wrote:
 

 #yiv7916278218 #yiv7916278218 -- _filtered #yiv7916278218 
{font-family:Helvetica;panose-1:2 11 5 4 2 2 2 2 2 4;} _filtered #yiv7916278218 
{panose-1:2 4 5 3 5 4 6 3 2 4;} _filtered #yiv7916278218 
{font-family:DengXian;panose-1:2 1 6 0 3 1 1 1 1 1;} _filtered #yiv7916278218 
{font-family:Calibri;panose-1:2 15 5 2 2 2 4 3 2 4;} _filtered #yiv7916278218 
{panose-1:2 1 6 0 3 1 1 1 1 1;}#yiv7916278218 #yiv7916278218 
p.yiv7916278218MsoNormal, #yiv7916278218 li.yiv7916278218MsoNormal, 
#yiv7916278218 div.yiv7916278218MsoNormal 
{margin:0cm;margin-bottom:.0001pt;font-size:11.0pt;}#yiv7916278218 a:link, 
#yiv7916278218 span.yiv7916278218MsoHyperlink 
{color:blue;text-decoration:underline;}#yiv7916278218 a:visited, #yiv7916278218 
span.yiv7916278218MsoHyperlinkFollowed 
{color:#954F72;text-decoration:underline;}#yiv7916278218 
.yiv7916278218MsoChpDefault {} _filtered #yiv7916278218 {margin:72.0pt 72.0pt 
72.0pt 72.0pt;}#yiv7916278218 div.yiv7916278218WordSection1 {}#yiv7916278218 
Both boxes are black in my case. ? I am using Lyx 2.3.0rc2 Win edition and 
MikTeX.   Sent from Mail for Windows 10   From: Sam Lewis
Sent: Friday, February 16, 2018 12:29 PM
To: LyX Developers
Cc: LyX Users
Subject: Irregularity with CambridgeUS theme in Beamer   Hi,    This is a 
persistent irregularity with beamer when using CambridgeUS theme that I noticed 
since  2.2.x. Currently I'm using 2.3.0dev.    In a beamer frame, two boxes 
(minipages, drop shadow) are place in columns next to each other. Everything 
works fine, except in the first frame one of the boxes including text is always 
red.    Please see test file for more details.    What could this be? Many 
thank!    Cheers, Sam    

   

Test.pdf
Description: Adobe PDF document


Irregularity with CambridgeUS theme in Beamer

2018-02-16 Thread Sam Lewis
Hi,
This is a persistent irregularity with beamer when using CambridgeUS theme that 
I noticed since  2.2.x. Currently I'm using 2.3.0dev.

In a beamer frame, two boxes (minipages, drop shadow) are place in columns next 
to each other. Everything works fine, except in the first frame one of the 
boxes including text is always red.
Please see test file for more details. 

What could this be? Many thank!
Cheers,Sam


Test.lyx
Description: application/lyx


Re: 'noframenumbering' option for beamer

2018-01-03 Thread Sam Lewis
On Thursday, 4 January 2018, 11:34, Scott Kostyshak  wrote:


 
>the part in [] is called an "optional argument", and in LyX you can
>insert it by going to Insert > Frame Options. 

That's great! Thank you Scott. 

I'll peruse the documentation as you recommend. 

Best,
Sam



   

'noframenumbering' option for beamer

2018-01-03 Thread Sam Lewis

  Show original message 

Hi,

The following latex code creates a frame in beamer that does not count towards 
the total pager number.


\begin{frame}[noframenumbering]
\titlepage
\end{frame}


What would be a good way to achieve this in LyX? Alternatively, is there an 
easy way to suppress the total pager number in the theme of my choice, 
e.g.'CambridgeUS'?


Many thanks!

Cheers, Sam


-Sam Lewis
   

Re: LaTex question: KOMA-script headers and chapter bibliography

2015-04-29 Thread Sam Lewis





 On Thursday, 30 April 2015, 2:03, Johannes Böttcher wrote:
 You are defining `defbibheading` in a way that updates the running
 header with *Further Reading* via `markboth`. Deleting this line should
 fix your problem.
 
 If you really want to have the chapter titles on the starting pages of
 chapters, you can use 
 `\renewcommand*{\chapterpagestyle}{scrheadings}`
 or use the starred variant of the commands - `\ihead*{Chapter
 \headmark}`. An up to date version of KOMA-script is needed for that.
 
 Once you start the appendix, you have some trouble, as you are
 hard-coding the word *chapter*. You can use `\chapapp` instead.



Many thanks for pointing me in the right direction. I fixed it like this.


\documentclass[chapterprefix=on]{scrbook}



\usepackage[automark]{scrlayer-scrpage}
\pagestyle{scrheadings}
\ihead{\headmark}
\ohead[\pagemark]{\pagemark}
\chead{}
\cfoot[]{}


\defbibheading{subbibliography}{%
\addsec{#1}}


\chapter{...}
\begin{refsection}
...
\printbibliography[heading=subbibliography,title={Further 
Reading},notcategory=cited]
\printbibliography[heading=subbibliography,title={Bibliography},category=cited]

\end{refsection}

Now works like a charm!

Again many thanks. 


Cheers, Sam


Re: LaTex question: KOMA-script headers and chapter bibliography

2015-04-29 Thread Sam Lewis





 On Thursday, 30 April 2015, 2:03, Johannes Böttcher wrote:
 You are defining `defbibheading` in a way that updates the running
 header with *Further Reading* via `markboth`. Deleting this line should
 fix your problem.
 
 If you really want to have the chapter titles on the starting pages of
 chapters, you can use 
 `\renewcommand*{\chapterpagestyle}{scrheadings}`
 or use the starred variant of the commands - `\ihead*{Chapter
 \headmark}`. An up to date version of KOMA-script is needed for that.
 
 Once you start the appendix, you have some trouble, as you are
 hard-coding the word *chapter*. You can use `\chapapp` instead.



Many thanks for pointing me in the right direction. I fixed it like this.


\documentclass[chapterprefix=on]{scrbook}



\usepackage[automark]{scrlayer-scrpage}
\pagestyle{scrheadings}
\ihead{\headmark}
\ohead[\pagemark]{\pagemark}
\chead{}
\cfoot[]{}


\defbibheading{subbibliography}{%
\addsec{#1}}


\chapter{...}
\begin{refsection}
...
\printbibliography[heading=subbibliography,title={Further 
Reading},notcategory=cited]
\printbibliography[heading=subbibliography,title={Bibliography},category=cited]

\end{refsection}

Now works like a charm!

Again many thanks. 


Cheers, Sam


Re: LaTex question: KOMA-script headers and chapter bibliography

2015-04-29 Thread Sam Lewis





> On Thursday, 30 April 2015, 2:03, Johannes Böttcher wrote:
> You are defining `defbibheading` in a way that updates the running
> header with *Further Reading* via `markboth`. Deleting this line should
> fix your problem.
> 
> If you really want to have the chapter titles on the starting pages of
> chapters, you can use 
> `\renewcommand*{\chapterpagestyle}{scrheadings}`
> or use the starred variant of the commands -> `\ihead*{Chapter
> \headmark}`. An up to date version of KOMA-script is needed for that.
> 
> Once you start the appendix, you have some trouble, as you are
> hard-coding the word *chapter*. You can use `\chapapp` instead.



Many thanks for pointing me in the right direction. I fixed it like this.


\documentclass[chapterprefix=on]{scrbook}



\usepackage[automark]{scrlayer-scrpage}
\pagestyle{scrheadings}
\ihead{\headmark}
\ohead[\pagemark]{\pagemark}
\chead{}
\cfoot[]{}


\defbibheading{subbibliography}{%
\addsec{#1}}


\chapter{...}
\begin{refsection}
...
\printbibliography[heading=subbibliography,title={Further 
Reading},notcategory=cited]
\printbibliography[heading=subbibliography,title={Bibliography},category=cited]

\end{refsection}

Now works like a charm!

Again many thanks. 


Cheers, Sam


LaTex question: KOMA-script headers and chapter bibliography

2015-04-28 Thread Sam Lewis
I create running headers in a Koma-script book with the following. This gives 
me a page number and the chapter heading on each page, except on the first page 
of each chapter as desired.

\usepackage[automark]{scrlayer-scrpage}
\pagestyle{scrheadings}
\ihead{Chapter \headmark}
\ohead[\pagemark]{\pagemark}
\chead{}
\cfoot[]{}


In this book, I have a bibliography and a further reading section at the end of 
each chapter via this code in the preamble 


\defbibheading{subbibliography}[\bibname]{%
\section*{#1}%
\markboth{#1}{#1}}

and this ERT at the end of each chapter.


\printbibliography[heading=subbibintoc,title={Further 
Reading},notcategory=cited]
\printbibliography[heading=subbibintoc,category=cited]
\end{refsection}
\begin{refsection}


Everything works fine, except that the header on the last page of each chapter 
is called Further Reading instead of the name of the chapter. 


How to fix this?


Many thanks!


LaTex question: KOMA-script headers and chapter bibliography

2015-04-28 Thread Sam Lewis
I create running headers in a Koma-script book with the following. This gives 
me a page number and the chapter heading on each page, except on the first page 
of each chapter as desired.

\usepackage[automark]{scrlayer-scrpage}
\pagestyle{scrheadings}
\ihead{Chapter \headmark}
\ohead[\pagemark]{\pagemark}
\chead{}
\cfoot[]{}


In this book, I have a bibliography and a further reading section at the end of 
each chapter via this code in the preamble 


\defbibheading{subbibliography}[\bibname]{%
\section*{#1}%
\markboth{#1}{#1}}

and this ERT at the end of each chapter.


\printbibliography[heading=subbibintoc,title={Further 
Reading},notcategory=cited]
\printbibliography[heading=subbibintoc,category=cited]
\end{refsection}
\begin{refsection}


Everything works fine, except that the header on the last page of each chapter 
is called Further Reading instead of the name of the chapter. 


How to fix this?


Many thanks!


LaTex question: KOMA-script headers and chapter bibliography

2015-04-28 Thread Sam Lewis
I create running headers in a Koma-script book with the following. This gives 
me a page number and the chapter heading on each page, except on the first page 
of each chapter as desired.

\usepackage[automark]{scrlayer-scrpage}
\pagestyle{scrheadings}
\ihead{Chapter \headmark}
\ohead[\pagemark]{\pagemark}
\chead{}
\cfoot[]{}


In this book, I have a bibliography and a further reading section at the end of 
each chapter via this code in the preamble 


\defbibheading{subbibliography}[\bibname]{%
\section*{#1}%
\markboth{#1}{#1}}

and this ERT at the end of each chapter.


\printbibliography[heading=subbibintoc,title={Further 
Reading},notcategory=cited]
\printbibliography[heading=subbibintoc,category=cited]
\end{refsection}
\begin{refsection}


Everything works fine, except that the header on the last page of each chapter 
is called "Further Reading" instead of the name of the chapter. 


How to fix this?


Many thanks!


Bibliography environments -- poll results

2015-04-01 Thread Sam Lewis
Dear all,

This is the result of our poll on bibliography environments. The poll is now 
closed.


Summary: We had 22 responses. Currently the majority of the respondents deploy 
either Natbib or BibTex. In the future, 
Biblatex is projected to be the most popular choice by the respondents. 

Detailed data: See attachments.


Many thanks to those who responded.


Best wishes,
Sam


Bibliography environments -- poll results

2015-04-01 Thread Sam Lewis
Dear all,

This is the result of our poll on bibliography environments. The poll is now 
closed.


Summary: We had 22 responses. Currently the majority of the respondents deploy 
either Natbib or BibTex. In the future, 
Biblatex is projected to be the most popular choice by the respondents. 

Detailed data: See attachments.


Many thanks to those who responded.


Best wishes,
Sam


Bibliography environments -- poll results

2015-04-01 Thread Sam Lewis
Dear all,

This is the result of our poll on bibliography environments. The poll is now 
closed.


Summary: We had 22 responses. Currently the majority of the respondents deploy 
either Natbib or BibTex. In the future, 
Biblatex is projected to be the most popular choice by the respondents. 

Detailed data: See attachments.


Many thanks to those who responded.


Best wishes,
Sam


Your Bibliography Environment -- 1 min poll

2015-03-23 Thread Sam Lewis
Dear all,

LyX supports a range of different bibliography environments. Some of them are 
very mature and well integrated others are relatively new.


This is to find out what LyX users mainly use. Please completed this quick poll 
(two questions) and I will post the results here in about two weeks.


https://www.surveymonkey.com/s/LKNGDFB

Many thanks!


Best wishes,
Sam


Your Bibliography Environment -- 1 min poll

2015-03-23 Thread Sam Lewis
Dear all,

LyX supports a range of different bibliography environments. Some of them are 
very mature and well integrated others are relatively new.


This is to find out what LyX users mainly use. Please completed this quick poll 
(two questions) and I will post the results here in about two weeks.


https://www.surveymonkey.com/s/LKNGDFB

Many thanks!


Best wishes,
Sam


Your Bibliography Environment -- 1 min poll

2015-03-23 Thread Sam Lewis
Dear all,

LyX supports a range of different bibliography environments. Some of them are 
very mature and well integrated others are relatively new.


This is to find out what LyX users mainly use. Please completed this quick poll 
(two questions) and I will post the results here in about two weeks.


https://www.surveymonkey.com/s/LKNGDFB

Many thanks!


Best wishes,
Sam


LuaTex and biblatex: LyX insert reference irregularity

2015-03-18 Thread Sam Lewis
I generate a pdf via LuaTex with a reference entry that contains two authors. 
The output is produced as expected without any problems.

However, the inserted citation for the two authors reference entry, results 
in an intext citation in LyX of *Author et al.* despite that the citation does 
not have three or more authors. Please see attachments for reproducing.  


Has a bug report been filed for this?

Cheers!

Test.lyx
Description: application/lyx
% This file was created with JabRef 2.10.
% Encoding: UTF-8


@Article{ReeGar03,
  Title= {Analysing competence: Gender and identity at work},
  Author   = {Bronwen Rees and Elizabeth Garnsey},
  Journal  = {Gender, Work \ Organization},
  Year = {2003},
  Number   = {5},
  Pages= {551--578},
  Volume   = {10}
}



LuaTex and biblatex: LyX insert reference irregularity

2015-03-18 Thread Sam Lewis
I generate a pdf via LuaTex with a reference entry that contains two authors. 
The output is produced as expected without any problems.

However, the inserted citation for the two authors reference entry, results 
in an intext citation in LyX of *Author et al.* despite that the citation does 
not have three or more authors. Please see attachments for reproducing.  


Has a bug report been filed for this?

Cheers!

Test.lyx
Description: application/lyx
% This file was created with JabRef 2.10.
% Encoding: UTF-8


@Article{ReeGar03,
  Title= {Analysing competence: Gender and identity at work},
  Author   = {Bronwen Rees and Elizabeth Garnsey},
  Journal  = {Gender, Work \ Organization},
  Year = {2003},
  Number   = {5},
  Pages= {551--578},
  Volume   = {10}
}



LuaTex and biblatex: LyX insert reference irregularity

2015-03-18 Thread Sam Lewis
I generate a pdf via LuaTex with a reference entry that contains two authors. 
The output is produced as expected without any problems.

However, the inserted citation for the "two authors" reference entry, results 
in an intext citation in LyX of *Author et al.* despite that the citation does 
not have three or more authors. Please see attachments for reproducing.  


Has a bug report been filed for this?

Cheers!

Test.lyx
Description: application/lyx
% This file was created with JabRef 2.10.
% Encoding: UTF-8


@Article{ReeGar03,
  Title= {Analysing competence: Gender and identity at work},
  Author   = {Bronwen Rees and Elizabeth Garnsey},
  Journal  = {Gender, Work \& Organization},
  Year = {2003},
  Number   = {5},
  Pages= {551--578},
  Volume   = {10}
}



Hanging paragraphs and \printbibliography

2013-09-22 Thread Sam Lewis
I have the \usepackage{hanging} in my document's preamble and successfully
compile with XeTeX. I create hanging paragraphs by using this ERT:

\begin{hangparas}{1em}{1}
Text 
\end{hangparas}

However I would like to have hanging paragraphs in my reference section
which is a biblatex output from \printbibliography.

How do I sensibly integrate the \printbibliography and {hangparas} commands?

Cheers!
Sam





Re: Hanging paragraphs and \printbibliography

2013-09-22 Thread Sam Lewis
Sam Lewis stroboscopicallyconfluent at yahoo.co.uk writes:

 
 I have the \usepackage{hanging} in my document's preamble and successfully

 How do I sensibly integrate the \printbibliography and {hangparas} commands?

Just found the answer! It's controlled by biblatex and not by hanging
package. I.e.:


\setlength{\bibhang}{1em}
\printbibliography


Cheers Sam!



Hanging paragraphs and \printbibliography

2013-09-22 Thread Sam Lewis
I have the \usepackage{hanging} in my document's preamble and successfully
compile with XeTeX. I create hanging paragraphs by using this ERT:

\begin{hangparas}{1em}{1}
Text 
\end{hangparas}

However I would like to have hanging paragraphs in my reference section
which is a biblatex output from \printbibliography.

How do I sensibly integrate the \printbibliography and {hangparas} commands?

Cheers!
Sam





Re: Hanging paragraphs and \printbibliography

2013-09-22 Thread Sam Lewis
Sam Lewis stroboscopicallyconfluent at yahoo.co.uk writes:

 
 I have the \usepackage{hanging} in my document's preamble and successfully

 How do I sensibly integrate the \printbibliography and {hangparas} commands?

Just found the answer! It's controlled by biblatex and not by hanging
package. I.e.:


\setlength{\bibhang}{1em}
\printbibliography


Cheers Sam!



Hanging paragraphs and \printbibliography

2013-09-22 Thread Sam Lewis
I have the \usepackage{hanging} in my document's preamble and successfully
compile with XeTeX. I create hanging paragraphs by using this ERT:

\begin{hangparas}{1em}{1}
Text 
\end{hangparas}

However I would like to have hanging paragraphs in my reference section
which is a biblatex output from \printbibliography.

How do I sensibly integrate the \printbibliography and {hangparas} commands?

Cheers!
Sam





Re: Hanging paragraphs and \printbibliography

2013-09-22 Thread Sam Lewis
Sam Lewis  yahoo.co.uk> writes:

> 
> I have the \usepackage{hanging} in my document's preamble and successfully

> How do I sensibly integrate the \printbibliography and {hangparas} commands?

Just found the answer! It's controlled by biblatex and not by hanging
package. I.e.:


\setlength{\bibhang}{1em}
\printbibliography


Cheers Sam!



Re: RCS user name

2013-09-09 Thread Sam Lewis
Denniston, Todd A CIV NAVSURFWARCENDIV Crane todd.denniston at navy.mil
writes:

 check the file in, but do not check back out a LOCKED copy of the file,
 and then you should be able to
 checkout a LOCKED copy on the other computer.
 
 Version Control is GOOD :)

Very useful! 

Thanks!
Sam




Re: RCS user name

2013-09-09 Thread Sam Lewis
Denniston, Todd A CIV NAVSURFWARCENDIV Crane todd.denniston at navy.mil
writes:

 check the file in, but do not check back out a LOCKED copy of the file,
 and then you should be able to
 checkout a LOCKED copy on the other computer.
 
 Version Control is GOOD :)

Very useful! 

Thanks!
Sam




Re: RCS user name

2013-09-09 Thread Sam Lewis
Denniston, Todd A CIV NAVSURFWARCENDIV Crane  navy.mil>
writes:

> check the file in, but do not check back out a LOCKED copy of the file,
> and then you should be able to
> checkout a LOCKED copy on the other computer.
> 
> Version Control is GOOD :)

Very useful! 

Thanks!
Sam




RCS user name

2013-08-29 Thread Sam Lewis
Dear all,

I am using RCS for all my LyX documents to control version changes.

I usually synchronize my data to any other Linux computer at a different 
office. However, when working on a different machine from where the initial 
document was registered I am unable to check in the document changes, because I 
log onto each system with different a username.


Is there a way around this? Does someone know how to configure RCS, because the 
username in LyX identity settings does not seem to affect this issues.

Many thanks!
Sam



RCS user name

2013-08-29 Thread Sam Lewis
Dear all,

I am using RCS for all my LyX documents to control version changes.

I usually synchronize my data to any other Linux computer at a different 
office. However, when working on a different machine from where the initial 
document was registered I am unable to check in the document changes, because I 
log onto each system with different a username.


Is there a way around this? Does someone know how to configure RCS, because the 
username in LyX identity settings does not seem to affect this issues.

Many thanks!
Sam



RCS user name

2013-08-29 Thread Sam Lewis
Dear all,

I am using RCS for all my LyX documents to control version changes.

I usually synchronize my data to any other Linux computer at a different 
office. However, when working on a different machine from where the initial 
document was registered I am unable to check in the document changes, because I 
log onto each system with different a username.


Is there a way around this? Does someone know how to configure RCS, because the 
username in LyX identity settings does not seem to affect this issues.

Many thanks!
Sam



Re: Converting lyx to odt

2013-05-04 Thread Sam Lewis
Sotiris Hasapis shasapis at gmail.com writes:

 I ' m trying to convert lyx to odt file using the methods described 
 here: http://wiki.lyx.org/Tools/LyX2OpenOffice
 but nothing seems to work. 

Does any have some success converting lyx documents that use biblatex. There
seem to be considerable more problems with this type. 

Cheers! Sam




Re: Converting lyx to odt

2013-05-04 Thread Sam Lewis
Sotiris Hasapis shasapis at gmail.com writes:

 I ' m trying to convert lyx to odt file using the methods described 
 here: http://wiki.lyx.org/Tools/LyX2OpenOffice
 but nothing seems to work. 

Does any have some success converting lyx documents that use biblatex. There
seem to be considerable more problems with this type. 

Cheers! Sam




Re: Converting lyx to odt

2013-05-04 Thread Sam Lewis
Sotiris Hasapis  gmail.com> writes:

> I ' m trying to convert lyx to odt file using the methods described 
> here: http://wiki.lyx.org/Tools/LyX2OpenOffice
> but nothing seems to work. 

Does any have some success converting lyx documents that use biblatex. There
seem to be considerable more problems with this type. 

Cheers! Sam




Re: Non-Latin font in document

2012-07-17 Thread Sam Lewis
Walter walter.stanish at gmail.com writes:

 
 I have found XeTeX the best for foreign font output.
 
 I use the following under Document|Settings|LaTeX preamble:
 
 % required for xelatex
 \usepackage{doc} % defines \bibtex macro
 \usepackage{fontspec}
 \usepackage{xunicode}
 \usepackage{xltxtra}
 
 % apparently for fontspec, not sure if actually needed
 \defaultfontfeatures{Mapping=tex-text}
 
 %: --- set up commands for different fonts for each language.
 
 %: - thai font
 \newfontfamily{\TH}[Scale=1.2]{Norasi}
 \newcommand{\thai}[1]{{\TH #1}}


Thank you for the swift reply. It works fine; I can produce pdfs with Thai words
with the correct font!

I have added \newfontfamily\Thai{Norasi} to the preamble and use the ERT
\Thai\emph{a Thai word} in the LyX document. I got an error with the suggested
\newfontfamily{\TH}[Scale=1.2]{Norasi} But that's not a problem. A little bit of
ERT is fine.

I was wondering whether it is also possible to generate OpenDocument outputs
with XeTex, like pdflatex can do. I only got xhtml now, but that seems limited
as I believe there is no way to import this into libreoffice.





Re: Non-Latin font in document

2012-07-17 Thread Sam Lewis
Walter walter.stanish at gmail.com writes:

 
 I have found XeTeX the best for foreign font output.
 
 I use the following under Document|Settings|LaTeX preamble:
 
 % required for xelatex
 \usepackage{doc} % defines \bibtex macro
 \usepackage{fontspec}
 \usepackage{xunicode}
 \usepackage{xltxtra}
 
 % apparently for fontspec, not sure if actually needed
 \defaultfontfeatures{Mapping=tex-text}
 
 %: --- set up commands for different fonts for each language.
 
 %: - thai font
 \newfontfamily{\TH}[Scale=1.2]{Norasi}
 \newcommand{\thai}[1]{{\TH #1}}


Thank you for the swift reply. It works fine; I can produce pdfs with Thai words
with the correct font!

I have added \newfontfamily\Thai{Norasi} to the preamble and use the ERT
\Thai\emph{a Thai word} in the LyX document. I got an error with the suggested
\newfontfamily{\TH}[Scale=1.2]{Norasi} But that's not a problem. A little bit of
ERT is fine.

I was wondering whether it is also possible to generate OpenDocument outputs
with XeTex, like pdflatex can do. I only got xhtml now, but that seems limited
as I believe there is no way to import this into libreoffice.





Re: Non-Latin font in document

2012-07-17 Thread Sam Lewis
Walter  gmail.com> writes:

> 
> I have found XeTeX the best for foreign font output.
> 
> I use the following under Document|Settings|LaTeX preamble:
> 
> % required for xelatex
> \usepackage{doc} % defines \bibtex macro
> \usepackage{fontspec}
> \usepackage{xunicode}
> \usepackage{xltxtra}
> 
> % apparently for fontspec, not sure if actually needed
> \defaultfontfeatures{Mapping=tex-text}
> 
> %: --- set up commands for different fonts for each language.
> 
> %: - thai font
> \newfontfamily{\TH}[Scale=1.2]{Norasi}
> \newcommand{\thai}[1]{{\TH #1}}


Thank you for the swift reply. It works fine; I can produce pdfs with Thai words
with the correct font!

I have added \newfontfamily\Thai{Norasi} to the preamble and use the ERT
\Thai\emph{a Thai word} in the LyX document. I got an error with the suggested
\newfontfamily{\TH}[Scale=1.2]{Norasi} But that's not a problem. A little bit of
ERT is fine.

I was wondering whether it is also possible to generate OpenDocument outputs
with XeTex, like pdflatex can do. I only got xhtml now, but that seems limited
as I believe there is no way to import this into libreoffice.





Non-Latin font in document

2012-07-16 Thread Sam Lewis
I have an article (Koma-script) LyX document that is written in British English
and produces PDFs at its default encoding via Texlive.

This document shall contain in addition to the main text in English some Thai
words in Thai font. What would be the best setting to produce PDFs and
OpenDocuments outputs for this document?

Many thanks!

Cheers, Sam



Non-Latin font in document

2012-07-16 Thread Sam Lewis
I have an article (Koma-script) LyX document that is written in British English
and produces PDFs at its default encoding via Texlive.

This document shall contain in addition to the main text in English some Thai
words in Thai font. What would be the best setting to produce PDFs and
OpenDocuments outputs for this document?

Many thanks!

Cheers, Sam



Non-Latin font in document

2012-07-16 Thread Sam Lewis
I have an article (Koma-script) LyX document that is written in British English
and produces PDFs at its default encoding via Texlive.

This document shall contain in addition to the main text in English some Thai
words in Thai font. What would be the best setting to produce PDFs and
OpenDocuments outputs for this document?

Many thanks!

Cheers, Sam



Re: Using LyX to edit organise bibliographies

2012-04-24 Thread Sam Lewis
 From: Liviu Andronic landronim...@gmail.com
 It may be nice, perhaps, for LyX to provide an 'Edit BibTeX refs'
 button that would allow to easily launch your preferred reference
 manager on your ref library.

+1

Cheers, Sam


Re: Using LyX to edit organise bibliographies

2012-04-24 Thread Sam Lewis
 From: Liviu Andronic landronim...@gmail.com
 It may be nice, perhaps, for LyX to provide an 'Edit BibTeX refs'
 button that would allow to easily launch your preferred reference
 manager on your ref library.

+1

Cheers, Sam


Re: Using LyX to edit & organise bibliographies

2012-04-24 Thread Sam Lewis
> From: Liviu Andronic 
> It may be nice, perhaps, for LyX to provide an 'Edit BibTeX refs'
> button that would allow to easily launch your preferred reference
> manager on your ref library.

+1

Cheers, Sam


Beamer, usebackgroundtemplate, and background colour for ratio-maintained images

2012-01-09 Thread Sam Lewis
Hi,

I successfully create beamer presentations that contain individual slides that
have full-screen (background) images, with the following latex code:

{\usebackgroundtemplate {\includegraphics[bb=0bp 0bp 1024bp
666bp,width=1\paperwidth]{image}}
\begin{frame}[plain]~\end{frame} }


However, when using a ratio-maintained image that incidentally does not have the
same aspect as the slide size, I get a white strip for the uncovered part of the
slide. Adding \setbeamercolor to the preamble or to specific frames leaves the
frame that contains the \usebackgroundtemplate command unaffected.

How can one control the colour of the *remaining* background for a frame that
uses the \usebackgroundtemplate command?

Many thanks!

Cheers, Sam



Beamer, usebackgroundtemplate, and background colour for ratio-maintained images

2012-01-09 Thread Sam Lewis
Hi,

I successfully create beamer presentations that contain individual slides that
have full-screen (background) images, with the following latex code:

{\usebackgroundtemplate {\includegraphics[bb=0bp 0bp 1024bp
666bp,width=1\paperwidth]{image}}
\begin{frame}[plain]~\end{frame} }


However, when using a ratio-maintained image that incidentally does not have the
same aspect as the slide size, I get a white strip for the uncovered part of the
slide. Adding \setbeamercolor to the preamble or to specific frames leaves the
frame that contains the \usebackgroundtemplate command unaffected.

How can one control the colour of the *remaining* background for a frame that
uses the \usebackgroundtemplate command?

Many thanks!

Cheers, Sam



Beamer, usebackgroundtemplate, and background colour for ratio-maintained images

2012-01-09 Thread Sam Lewis
Hi,

I successfully create beamer presentations that contain individual slides that
have full-screen (background) images, with the following latex code:

{\usebackgroundtemplate {\includegraphics[bb=0bp 0bp 1024bp
666bp,width=1\paperwidth]{image}}
\begin{frame}[plain]~\end{frame} }


However, when using a ratio-maintained image that incidentally does not have the
same aspect as the slide size, I get a white strip for the uncovered part of the
slide. Adding \setbeamercolor to the preamble or to specific frames leaves the
frame that contains the \usebackgroundtemplate command unaffected.

How can one control the colour of the *remaining* "background for a frame that
uses the \usebackgroundtemplate command?

Many thanks!

Cheers, Sam



Re: Goodbye message and the search for a new LyX Debian package maintainer

2011-07-15 Thread Sam Lewis
Thank you for the good work over the years, Sven! Your effort will be greatly 
missed.

Best wishes,
Sam



 
 Sven Hoexter wrote:
 
  Hi all,
  I already switched my work focus away from things where LyX is involved
  (about half a year ago), but only recently settled for a new fulltime
  employment starting next week. So after about five years maintaining the
  LyX package in Debian together with Per this is kind of my goodbye message
  to all the marvelous people who helped me/us along the way.[+]
 
 Hi Sven,
 
 I am amazed that is was such a long time. Thank you very much for your 
 effort, it surely has helped a lot of people. For me it was a pleasure to 
 work together with you. I hope that we soon get a new maintaner who keeps up 
 the good work.
 
 
 Georg



Re: Goodbye message and the search for a new LyX Debian package maintainer

2011-07-15 Thread Sam Lewis
Thank you for the good work over the years, Sven! Your effort will be greatly 
missed.

Best wishes,
Sam



 
 Sven Hoexter wrote:
 
  Hi all,
  I already switched my work focus away from things where LyX is involved
  (about half a year ago), but only recently settled for a new fulltime
  employment starting next week. So after about five years maintaining the
  LyX package in Debian together with Per this is kind of my goodbye message
  to all the marvelous people who helped me/us along the way.[+]
 
 Hi Sven,
 
 I am amazed that is was such a long time. Thank you very much for your 
 effort, it surely has helped a lot of people. For me it was a pleasure to 
 work together with you. I hope that we soon get a new maintaner who keeps up 
 the good work.
 
 
 Georg



Re: Goodbye message and the search for a new LyX Debian package maintainer

2011-07-15 Thread Sam Lewis
Thank you for the good work over the years, Sven! Your effort will be greatly 
missed.

Best wishes,
Sam



 
> Sven Hoexter wrote:
> 
>>  Hi all,
>>  I already switched my work focus away from things where LyX is involved
>>  (about half a year ago), but only recently settled for a new fulltime
>>  employment starting next week. So after about five years maintaining the
>>  LyX package in Debian together with Per this is kind of my goodbye message
>>  to all the marvelous people who helped me/us along the way.[+]
> 
> Hi Sven,
> 
> I am amazed that is was such a long time. Thank you very much for your 
> effort, it surely has helped a lot of people. For me it was a pleasure to 
> work together with you. I hope that we soon get a new maintaner who keeps up 
> the good work.
> 
> 
> Georg
>


Erratic cursor position in relation to displayed lines of text

2011-06-07 Thread Sam Lewis
Hi,


Just to check whether this apparent bug has been reported for LyX 2.0.

I have experienced several times erratic changes in the position of the cursor 
in relation to the displayed lines of text. At some point when the cursor is 
positioned in the lower parts of the displayed lines of text, a sudden scroll 
occurs and the displayed lines of text changes by moving the line 
of current cursor position into the place of the firsted displayed line 
of text on screen.

Cheers, Sam    


Erratic cursor position in relation to displayed lines of text

2011-06-07 Thread Sam Lewis
Hi,


Just to check whether this apparent bug has been reported for LyX 2.0.

I have experienced several times erratic changes in the position of the cursor 
in relation to the displayed lines of text. At some point when the cursor is 
positioned in the lower parts of the displayed lines of text, a sudden scroll 
occurs and the displayed lines of text changes by moving the line 
of current cursor position into the place of the firsted displayed line 
of text on screen.

Cheers, Sam    


Erratic cursor position in relation to displayed lines of text

2011-06-07 Thread Sam Lewis
Hi,


Just to check whether this apparent bug has been reported for LyX 2.0.

I have experienced several times erratic changes in the position of the cursor 
in relation to the displayed lines of text. At some point when the cursor is 
positioned in the lower parts of the displayed lines of text, a sudden scroll 
occurs and the displayed lines of text changes by moving the line 
of current cursor position into the place of the firsted displayed line 
of text on screen.

Cheers, Sam    


Most suitable image format

2011-05-31 Thread Sam Lewis
Hello,

I have a lyx document in which I would like to insert a high-quality 
colour photography of me. The output document will be pdf.

The photo is currently in RAW format (NEF) and I would like to find out what 
will the most suitable image format for converting the raw format into. I 
presume it will be some lossless format. 

Any suggestions? Many thanks!

Cheers, Sam

--
Sam Lewis


Re: Most suitable image format

2011-05-31 Thread Sam Lewis
Thanks for your quick reply. 

I intent to both print it and distribute it online. I guess two versions of the 
document might be useful.  What lossy format, would you recommend for the 
latter?

Cheers, Sam



- Original Message -
 From: Rob Oakes lyx-de...@oak-tree.us
 To: Sam Lewis stroboscopicallyconflu...@yahoo.co.uk
 Cc: lyx-users@lists.lyx.org
 Sent: Tuesday, 31 May 2011, 20:22
 Subject: Re: Most suitable image format
 
 It actually depends on how you intend to use the resulting document. If you 
 will 
 be printing the resulting PDF on a professional press, then you will want to 
 use 
 a lossless format (most likely tiff), or a high quality jpeg.  
 
 If the PDF is to be put on your website, you will probably want to use a 
 lossy 
 format of some type. It will give a better quality to file size ratio, even 
 though it will introduce some artifacts into the image.  But unless your 
 readers 
 will be viewing the image at very high resolution (onscreen), they are not 
 going 
 to notice.
 
 Hope that's of some help.
 
 Cheers,
 
 Rob



Most suitable image format

2011-05-31 Thread Sam Lewis
Hello,

I have a lyx document in which I would like to insert a high-quality 
colour photography of me. The output document will be pdf.

The photo is currently in RAW format (NEF) and I would like to find out what 
will the most suitable image format for converting the raw format into. I 
presume it will be some lossless format. 

Any suggestions? Many thanks!

Cheers, Sam

--
Sam Lewis


Re: Most suitable image format

2011-05-31 Thread Sam Lewis
Thanks for your quick reply. 

I intent to both print it and distribute it online. I guess two versions of the 
document might be useful.  What lossy format, would you recommend for the 
latter?

Cheers, Sam



- Original Message -
 From: Rob Oakes lyx-de...@oak-tree.us
 To: Sam Lewis stroboscopicallyconflu...@yahoo.co.uk
 Cc: lyx-users@lists.lyx.org
 Sent: Tuesday, 31 May 2011, 20:22
 Subject: Re: Most suitable image format
 
 It actually depends on how you intend to use the resulting document. If you 
 will 
 be printing the resulting PDF on a professional press, then you will want to 
 use 
 a lossless format (most likely tiff), or a high quality jpeg.  
 
 If the PDF is to be put on your website, you will probably want to use a 
 lossy 
 format of some type. It will give a better quality to file size ratio, even 
 though it will introduce some artifacts into the image.  But unless your 
 readers 
 will be viewing the image at very high resolution (onscreen), they are not 
 going 
 to notice.
 
 Hope that's of some help.
 
 Cheers,
 
 Rob



Most suitable image format

2011-05-31 Thread Sam Lewis
Hello,

I have a lyx document in which I would like to insert a high-quality 
colour photography of me. The output document will be pdf.

The photo is currently in RAW format (NEF) and I would like to find out what 
will the most suitable image format for converting the raw format into. I 
presume it will be some lossless format. 

Any suggestions? Many thanks!

Cheers, Sam

--
Sam Lewis


Re: Most suitable image format

2011-05-31 Thread Sam Lewis
Thanks for your quick reply. 

I intent to both print it and distribute it online. I guess two versions of the 
document might be useful.  What lossy format, would you recommend for the 
latter?

Cheers, Sam



- Original Message -
> From: Rob Oakes <lyx-de...@oak-tree.us>
> To: Sam Lewis <stroboscopicallyconflu...@yahoo.co.uk>
> Cc: lyx-users@lists.lyx.org
> Sent: Tuesday, 31 May 2011, 20:22
> Subject: Re: Most suitable image format
> 
> It actually depends on how you intend to use the resulting document. If you 
> will 
> be printing the resulting PDF on a professional press, then you will want to 
> use 
> a lossless format (most likely tiff), or a high quality jpeg.  
> 
> If the PDF is to be put on your website, you will probably want to use a 
> lossy 
> format of some type. It will give a better quality to file size ratio, even 
> though it will introduce some artifacts into the image.  But unless your 
> readers 
> will be viewing the image at very high resolution (onscreen), they are not 
> going 
> to notice.
> 
> Hope that's of some help.
> 
> Cheers,
> 
> Rob
>


Re: ANNOUNCE: LyX version 2.0.0 is released

2011-05-08 Thread Sam Lewis
Many congratulations!

LyX has been turned into a mature product. Thank you to the whole community.

Cheers, Sam
  


- Original Message -
 From: Pavel Sanda sa...@lyx.org
 To: LyX devel lyx-de...@lists.lyx.org
 Cc: lyx-users@lists.lyx.org; lyx-annou...@lists.lyx.org
 Sent: Sunday, 8 May 2011, 10:00
 Subject: Re: ANNOUNCE: LyX version 2.0.0 is released
 
 Public release of LyX version 2.0.0
 ===
 
 We are proud to announce the public release of LyX 2.0.0.
 
 With this release, LyX celebrates 15 years of existence, and we start 
 a new family of 2.x releases to acknowledge LyX's passing from a child
 to an adult. We hope you will celebrate this anniversary with us.
 
 LyX 2.0.0 is the culmination of two and half years of hard work. This 
 release begins a new series of 2.0.x which will incrementally improve its 
 stability as the time passes.
 
 An overview of the new features can be found here:
   http://wiki.lyx.org/LyX/NewInLyX20
 
 You can download LyX 2.0.0 from http://www.lyx.org/Download/ .
 
 We hope you will enjoy the result!
 
 The file RELEASE-NOTES lists some known issues and problems compared
 to the current stable releases (LyX 1.6.x). We strongly recommend that 
 packagers of LyX on various platforms and distributions read this file.
 
 As with any major release, this one comes with lot of new features but 
 also some bugs. If you think you have found a bug in LyX 2.0.0, either email 
 the LyX developers' mailing list (lyx-devel at lists.lyx.org), or open a bug
 report at http://www.lyx.org/trac/wiki/BugTrackerHome .
 
 If you have trouble using LyX or have a question, consult the
 documentation that comes with LyX (under Help) and the LyX wiki, which you 
 will find at http://wiki.lyx.org/ . You can also send email to the LyX 
 users'
 list (lyx-users at lists.lyx.org).
 
 The LyX team.
 http://www.lyx.org



Re: ANNOUNCE: LyX version 2.0.0 is released

2011-05-08 Thread Sam Lewis
Many congratulations!

LyX has been turned into a mature product. Thank you to the whole community.

Cheers, Sam
  


- Original Message -
 From: Pavel Sanda sa...@lyx.org
 To: LyX devel lyx-de...@lists.lyx.org
 Cc: lyx-users@lists.lyx.org; lyx-annou...@lists.lyx.org
 Sent: Sunday, 8 May 2011, 10:00
 Subject: Re: ANNOUNCE: LyX version 2.0.0 is released
 
 Public release of LyX version 2.0.0
 ===
 
 We are proud to announce the public release of LyX 2.0.0.
 
 With this release, LyX celebrates 15 years of existence, and we start 
 a new family of 2.x releases to acknowledge LyX's passing from a child
 to an adult. We hope you will celebrate this anniversary with us.
 
 LyX 2.0.0 is the culmination of two and half years of hard work. This 
 release begins a new series of 2.0.x which will incrementally improve its 
 stability as the time passes.
 
 An overview of the new features can be found here:
   http://wiki.lyx.org/LyX/NewInLyX20
 
 You can download LyX 2.0.0 from http://www.lyx.org/Download/ .
 
 We hope you will enjoy the result!
 
 The file RELEASE-NOTES lists some known issues and problems compared
 to the current stable releases (LyX 1.6.x). We strongly recommend that 
 packagers of LyX on various platforms and distributions read this file.
 
 As with any major release, this one comes with lot of new features but 
 also some bugs. If you think you have found a bug in LyX 2.0.0, either email 
 the LyX developers' mailing list (lyx-devel at lists.lyx.org), or open a bug
 report at http://www.lyx.org/trac/wiki/BugTrackerHome .
 
 If you have trouble using LyX or have a question, consult the
 documentation that comes with LyX (under Help) and the LyX wiki, which you 
 will find at http://wiki.lyx.org/ . You can also send email to the LyX 
 users'
 list (lyx-users at lists.lyx.org).
 
 The LyX team.
 http://www.lyx.org



Re: ANNOUNCE: LyX version 2.0.0 is released

2011-05-08 Thread Sam Lewis
Many congratulations!

LyX has been turned into a mature product. Thank you to the whole community.

Cheers, Sam
  


- Original Message -
> From: Pavel Sanda 
> To: LyX devel 
> Cc: lyx-users@lists.lyx.org; lyx-annou...@lists.lyx.org
> Sent: Sunday, 8 May 2011, 10:00
> Subject: Re: ANNOUNCE: LyX version 2.0.0 is released
> 
> Public release of LyX version 2.0.0
> ===
> 
> We are proud to announce the public release of LyX 2.0.0.
> 
> With this release, LyX celebrates 15 years of existence, and we start 
> a new family of 2.x releases to acknowledge LyX's passing from a child
> to an adult. We hope you will celebrate this anniversary with us.
> 
> LyX 2.0.0 is the culmination of two and half years of hard work. This 
> release begins a new series of 2.0.x which will incrementally improve its 
> stability as the time passes.
> 
> An overview of the new features can be found here:
>   http://wiki.lyx.org/LyX/NewInLyX20
> 
> You can download LyX 2.0.0 from http://www.lyx.org/Download/ .
> 
> We hope you will enjoy the result!
> 
> The file RELEASE-NOTES lists some known issues and problems compared
> to the current stable releases (LyX 1.6.x). We strongly recommend that 
> packagers of LyX on various platforms and distributions read this file.
> 
> As with any major release, this one comes with lot of new features but 
> also some bugs. If you think you have found a bug in LyX 2.0.0, either email 
> the LyX developers' mailing list (lyx-devel at lists.lyx.org), or open a bug
> report at http://www.lyx.org/trac/wiki/BugTrackerHome .
> 
> If you have trouble using LyX or have a question, consult the
> documentation that comes with LyX (under Help) and the LyX wiki, which you 
> will find at http://wiki.lyx.org/ . You can also send email to the LyX 
> users'
> list (lyx-users at lists.lyx.org).
> 
> The LyX team.
> http://www.lyx.org
>


Re: A basic requested feature

2011-04-13 Thread Sam Lewis
 IMO, we need to improve the functionality of
 LyX, and not block good ideas.

Of course everybody is welcome to make suggestions and put forward ideas on 
functionality. But it does not mean that everything gets implemented; it needs 
to be realistic and accepted by the community of users and developers.

Cheers, Sam


Re: A basic requested feature

2011-04-13 Thread Sam Lewis
 IMO, we need to improve the functionality of
 LyX, and not block good ideas.

Of course everybody is welcome to make suggestions and put forward ideas on 
functionality. But it does not mean that everything gets implemented; it needs 
to be realistic and accepted by the community of users and developers.

Cheers, Sam


Re: A basic requested feature

2011-04-13 Thread Sam Lewis
> IMO, we need to improve the functionality of
> LyX, and not block good ideas.

Of course everybody is welcome to make suggestions and put forward ideas on 
functionality. But it does not mean that everything gets implemented; it needs 
to be realistic and accepted by the community of users and developers.

Cheers, Sam


Re: Dissertation Finished! Thank you LyXers!

2011-04-08 Thread Sam Lewis
Excellent! 

  I also have a number of tips/tricks I accumulated along the way. If
  interested I'd be happy to combine these and post them here.

This would be useful, particularly any kind on using LyX in the Humanities. 
Please add them to the wiki and post the link here.

Many thanks! Cheers, Sam





Re: lmodern?

2011-04-08 Thread Sam Lewis

 LyX already departs from LaTeX defaults by changing the font encoding
 from OT1 to T1. (See the line
   \usepackage[T1]{inputenc}

Is this not absurd for a default setting: I.e. T1 and CM? If the majority of 
users supposedly not primarily write in English, should it not be T1 + LM? If 
however most write in English should it not be OT1 + LM? Why bother with CM? Or 
am I missing something? Perhaps a survey might shed light on the situation.

Cheers, Sam




Re: Friends, Fellows, Comrades!

2011-04-08 Thread Sam Lewis

 What I mean is when you go to 'Insert  Note  Comment' for example, you 
 get a comment icon on the page. It is called 'Comment' but I would like 
 to change that to say 'May Ideas' 'Important Page Numbers' or whatever.

Don't think so. You have to use Label that you place before the note. But 
this 
will not show up in the outliner.

Cheers, Sam



Re: Dissertation Finished! Thank you LyXers!

2011-04-08 Thread Sam Lewis
Excellent! 

  I also have a number of tips/tricks I accumulated along the way. If
  interested I'd be happy to combine these and post them here.

This would be useful, particularly any kind on using LyX in the Humanities. 
Please add them to the wiki and post the link here.

Many thanks! Cheers, Sam





Re: lmodern?

2011-04-08 Thread Sam Lewis

 LyX already departs from LaTeX defaults by changing the font encoding
 from OT1 to T1. (See the line
   \usepackage[T1]{inputenc}

Is this not absurd for a default setting: I.e. T1 and CM? If the majority of 
users supposedly not primarily write in English, should it not be T1 + LM? If 
however most write in English should it not be OT1 + LM? Why bother with CM? Or 
am I missing something? Perhaps a survey might shed light on the situation.

Cheers, Sam




Re: Friends, Fellows, Comrades!

2011-04-08 Thread Sam Lewis

 What I mean is when you go to 'Insert  Note  Comment' for example, you 
 get a comment icon on the page. It is called 'Comment' but I would like 
 to change that to say 'May Ideas' 'Important Page Numbers' or whatever.

Don't think so. You have to use Label that you place before the note. But 
this 
will not show up in the outliner.

Cheers, Sam



Re: Dissertation Finished! Thank you LyXers!

2011-04-08 Thread Sam Lewis
Excellent! 

> > I also have a number of tips/tricks I accumulated along the way. If
> > interested I'd be happy to combine these and post them here.

This would be useful, particularly any kind on using LyX in the Humanities. 
Please add them to the wiki and post the link here.

Many thanks! Cheers, Sam





Re: lmodern?

2011-04-08 Thread Sam Lewis

> LyX already departs from LaTeX defaults by changing the font encoding
> from OT1 to T1. (See the line
>   \usepackage[T1]{inputenc}

Is this not absurd for a default setting: I.e. T1 and CM? If the majority of 
users supposedly not primarily write in English, should it not be T1 + LM? If 
however most write in English should it not be OT1 + LM? Why bother with CM? Or 
am I missing something? Perhaps a survey might shed light on the situation.

Cheers, Sam




Re: Friends, Fellows, Comrades!

2011-04-08 Thread Sam Lewis

> What I mean is when you go to 'Insert > Note > Comment' for example, you 
> get a comment icon on the page. It is called 'Comment' but I would like 
> to change that to say 'May Ideas' 'Important Page Numbers' or whatever.

Don't think so. You have to use "Label" that you place before the note. But 
this 
will not show up in the outliner.

Cheers, Sam



Re: Copypaste irregularity (2.0-B4) [how to reproduce]

2011-02-28 Thread Sam Lewis
Sam Lewis stroboscopicallyconfluent at yahoo.co.uk writes:

 A random text copied from a pdf into lyx (as done many times before), 
 produces 
some spacing/ wrapping
 irregularities. See attachment. How do I remove any formatting? How it it 

It seems to be only happening with pdf documents from this journal. Copying 
from 
other pdf documents works fine.

Reproduce:

* Copy from here (open journal): 
http://www.germanlawjournal.com/pdfs/Vol11-No1/PDF_Vol_11_No_01_9-
32_GG60_Mahlmann.pdf

*Paste into new document


Cheers, Sam 






Re: Copypaste irregularity (2.0-B4) [how to reproduce]

2011-02-28 Thread Sam Lewis
Sam Lewis stroboscopicallyconfluent at yahoo.co.uk writes:

 A random text copied from a pdf into lyx (as done many times before), 
 produces 
some spacing/ wrapping
 irregularities. See attachment. How do I remove any formatting? How it it 

It seems to be only happening with pdf documents from this journal. Copying 
from 
other pdf documents works fine.

Reproduce:

* Copy from here (open journal): 
http://www.germanlawjournal.com/pdfs/Vol11-No1/PDF_Vol_11_No_01_9-
32_GG60_Mahlmann.pdf

*Paste into new document


Cheers, Sam 






Re: Copy irregularity (2.0-B4) [how to reproduce]

2011-02-28 Thread Sam Lewis
Sam Lewis  yahoo.co.uk> writes:

> A random text copied from a pdf into lyx (as done many times before), 
> produces 
some spacing/ wrapping
> irregularities. See attachment. How do I remove any formatting? How it it 

It seems to be only happening with pdf documents from this journal. Copying 
from 
other pdf documents works fine.

Reproduce:

* Copy from here (open journal): 
http://www.germanlawjournal.com/pdfs/Vol11-No1/PDF_Vol_11_No_01_9-
32_GG60_Mahlmann.pdf

*Paste into new document


Cheers, Sam 






LyX and TexLive2010

2011-01-17 Thread Sam Lewis
Dear All,

Does anyone successfully use LyX (1.6.7) with TexLive2010?

Since I have change to TL2010, LyX brings up the fatal error that I don't have 
e-Tex. I have update TL2010 via tlnet update, as previously suggested. TL2009 
works perfectly well. Any idea? Many thanks.

Cheers, Sam






Re: LyX and TexLive2010

2011-01-17 Thread Sam Lewis
 Both 1.6.7 as well as 2.0 work fine here with TL2010.

Thank you for letting me know. Cheers, Sam





LyX and TexLive2010

2011-01-17 Thread Sam Lewis
Dear All,

Does anyone successfully use LyX (1.6.7) with TexLive2010?

Since I have change to TL2010, LyX brings up the fatal error that I don't have 
e-Tex. I have update TL2010 via tlnet update, as previously suggested. TL2009 
works perfectly well. Any idea? Many thanks.

Cheers, Sam






Re: LyX and TexLive2010

2011-01-17 Thread Sam Lewis
 Both 1.6.7 as well as 2.0 work fine here with TL2010.

Thank you for letting me know. Cheers, Sam





LyX and TexLive2010

2011-01-17 Thread Sam Lewis
Dear All,

Does anyone successfully use LyX (1.6.7) with TexLive2010?

Since I have change to TL2010, LyX brings up the fatal error that I don't have 
e-Tex. I have update TL2010 via tlnet update, as previously suggested. TL2009 
works perfectly well. Any idea? Many thanks.

Cheers, Sam






Re: LyX and TexLive2010

2011-01-17 Thread Sam Lewis
> Both 1.6.7 as well as 2.0 work fine here with TL2010.

Thank you for letting me know. Cheers, Sam





Re: biblatex: elatex and texlive

2011-01-13 Thread Sam Lewis
 Use the TeXLive Utility and update.

Thanks. I'll try this.

Cheers, Sam






Re: biblatex: elatex and texlive

2011-01-13 Thread Sam Lewis
 Use the TeXLive Utility and update.

Thanks. I'll try this.

Cheers, Sam






Re: biblatex: elatex and texlive

2011-01-13 Thread Sam Lewis
> Use the TeXLive Utility and update.

Thanks. I'll try this.

Cheers, Sam






biblatex: elatex and texlive

2011-01-12 Thread Sam Lewis
Dear All,

This is slightly off-topic.

I have successfully used biblatex with LyX for a long time. Today after 
changing my TexLive DVD installation from 2009 to 2010, I am not able to 
compile documents anymore that use the biblatex package. I now get a fatal 
error message that elatex is not found.

Does anyone know about changes in TexLive 2010 and how this relates to 
biblatex? Any suggestions?

Many thanks!

Cheers, Sam





biblatex: elatex and texlive

2011-01-12 Thread Sam Lewis
Dear All,

This is slightly off-topic.

I have successfully used biblatex with LyX for a long time. Today after 
changing my TexLive DVD installation from 2009 to 2010, I am not able to 
compile documents anymore that use the biblatex package. I now get a fatal 
error message that elatex is not found.

Does anyone know about changes in TexLive 2010 and how this relates to 
biblatex? Any suggestions?

Many thanks!

Cheers, Sam





biblatex: elatex and texlive

2011-01-12 Thread Sam Lewis
Dear All,

This is slightly off-topic.

I have successfully used biblatex with LyX for a long time. Today after 
changing my TexLive DVD installation from 2009 to 2010, I am not able to 
compile documents anymore that use the biblatex package. I now get a fatal 
error message that elatex is not found.

Does anyone know about changes in TexLive 2010 and how this relates to 
biblatex? Any suggestions?

Many thanks!

Cheers, Sam





Hyperlink: No action defined!?

2010-08-20 Thread Sam Lewis
Hi,

What is the purpose of right clicking on a hyperlink *inside* LyX?

Reproduce: [Insert]  [Hyperlink]; add a link; right click on inserted hyperlink
icon and the following pop up message appears: No action defined!

What can I define where? Can I open this link from *within* LyX? That would be
perfect. 

Anybody any idea? Many thanks!

Cheers, Sam



Re: Hyperlink: amp;quot;No action defined!amp;quot;?

2010-08-20 Thread Sam Lewis
  icon and the following pop up message appears: No action defined!
  What can I define where?
 Absent your modifying the source code, I suspect you cannot define any 
 actions.

I see, this is just some kind of place holder in the source. Why not use this
for opening the defined link? Might be useful to improve the
writing-reading-writing flow.

Cheers, Sam






Hyperlink: No action defined!?

2010-08-20 Thread Sam Lewis
Hi,

What is the purpose of right clicking on a hyperlink *inside* LyX?

Reproduce: [Insert]  [Hyperlink]; add a link; right click on inserted hyperlink
icon and the following pop up message appears: No action defined!

What can I define where? Can I open this link from *within* LyX? That would be
perfect. 

Anybody any idea? Many thanks!

Cheers, Sam



Re: Hyperlink: amp;quot;No action defined!amp;quot;?

2010-08-20 Thread Sam Lewis
  icon and the following pop up message appears: No action defined!
  What can I define where?
 Absent your modifying the source code, I suspect you cannot define any 
 actions.

I see, this is just some kind of place holder in the source. Why not use this
for opening the defined link? Might be useful to improve the
writing-reading-writing flow.

Cheers, Sam






Hyperlink: "No action defined!"?

2010-08-20 Thread Sam Lewis
Hi,

What is the purpose of right clicking on a hyperlink *inside* LyX?

Reproduce: [Insert] > [Hyperlink]; add a link; right click on inserted hyperlink
icon and the following pop up message appears: "No action defined!"

What can I define where? Can I open this link from *within* LyX? That would be
perfect. 

Anybody any idea? Many thanks!

Cheers, Sam



Re: Hyperlink: quot;No action defined!quot;?

2010-08-20 Thread Sam Lewis
> > icon and the following pop up message appears: "No action defined!"
> > What can I define where?
> Absent your modifying the source code, I suspect you cannot define any 
> actions.

I see, this is just some kind of place holder in the source. Why not use this
for opening the defined link? Might be useful to improve the
writing-reading-writing flow.

Cheers, Sam






Re: texlive2008 Debian + any linux distro

2009-01-19 Thread Sam Lewis
 How could I install texlive2008 under debian?
 I have the TeX Collection DVD of September 2008
 but would not like to mess things up 


TexLive 2008 has now also an online installer.
http://tug.org/texlive/acquire.html

Best to uninstall the TeX packages that comes with your current Linux
distribution and follow the above instruction if you don't have a DVD. You need
to check how in your Linux distribution LyX is coupled in terms of its
requirements for TeX packages.

For Debian users, LyX does not require any TeX packages. If your distro does,
obviously, leave thoses packages which are necessary for LyX installed.

Using the TexLive 2008 Package Manager is very easy and should be considered a
serious advantage in terms of convince, updating and recovery of a complex
production system that should be independent from the distribution's package
manager that controls your operating system.


Cheers, Sam







Re: texlive2008 Debian + any linux distro

2009-01-19 Thread Sam Lewis
 How could I install texlive2008 under debian?
 I have the TeX Collection DVD of September 2008
 but would not like to mess things up 


TexLive 2008 has now also an online installer.
http://tug.org/texlive/acquire.html

Best to uninstall the TeX packages that comes with your current Linux
distribution and follow the above instruction if you don't have a DVD. You need
to check how in your Linux distribution LyX is coupled in terms of its
requirements for TeX packages.

For Debian users, LyX does not require any TeX packages. If your distro does,
obviously, leave thoses packages which are necessary for LyX installed.

Using the TexLive 2008 Package Manager is very easy and should be considered a
serious advantage in terms of convince, updating and recovery of a complex
production system that should be independent from the distribution's package
manager that controls your operating system.


Cheers, Sam







Re: texlive2008 Debian + any linux distro

2009-01-19 Thread Sam Lewis
> How could I install texlive2008 under debian?
> I have the TeX Collection DVD of September 2008
> but would not like to mess things up 


TexLive 2008 has now also an online installer.
http://tug.org/texlive/acquire.html

Best to uninstall the TeX packages that comes with your current Linux
distribution and follow the above instruction if you don't have a DVD. You need
to check how in your Linux distribution LyX is coupled in terms of its
requirements for TeX packages.

For Debian users, LyX does not "require" any TeX packages. If your distro does,
obviously, leave thoses packages which are necessary for LyX installed.

Using the TexLive 2008 Package Manager is very easy and should be considered a
serious advantage in terms of convince, updating and recovery of a complex
production system that should be independent from the distribution's package
manager that controls your operating system.


Cheers, Sam







Re: 1.6.0-RC4: Layout menue for Section, Subsection or how to use mini-buffer

2008-11-07 Thread Sam Lewis
rgheck [EMAIL PROTECTED] writes:

  The layout menu for these three commands seems not to work in 1.6.0-RC4. I
  presume this bug has been filed. If not let me know and I file it.
 

 No, there's no known bug for that. What platform, etc, are you on?

GNU/Linux, Debian. I'll go ahead and make an entry.


Any idea about using the mini-buffer to get around this? Or is this not a
function of the mini-buffer for structuring the layout?

Cheers, Sam





Re: [1.6.0-RC4: Layout menue for Section, Subsection or how to use mini-buffer] Bug 5464

2008-11-07 Thread Sam Lewis
rgheck [EMAIL PROTECTED] writes:

 So what happens when you try to use the layout combo? Just nothing? If 
 you run from a terminal, do you get any messages? Try lyx -dbg all, 
 and see if you get any messages when you try the layout thingy.

Setting debug level to all
../../../../src/frontends/qt4/GuiToolbar.cpp(658): ERROR (layoutSelected):
layout not found!


  Any idea about using the mini-buffer to get around this? Or is this not a
  function of the mini-buffer for structuring the layout?

 layout Section, etc.

Thanks! Does the job.

Cheers, Sam



lyx 1.6.x on debian

2008-11-07 Thread Sam Lewis
Hi,

It's great to to have the 1.6.0~beta4-1 package in experimental, with matching
dependencies of testing. Thank you kindly, maintainer Sven Hoexter, for your
effort!

Does anyone know whether, RC5 is a candidate for experimental? Or how close is
1.6.0 to make it into any Debian stream?

This might reduce the duplication of old bugs this:
http://bugzilla.lyx.org/show_bug.cgi?id=5464


Cheers, Sam



  1   2   3   >