Re: question about TOC

2023-05-20 Thread Dr Eberhard W Lisse
Even better,

el

On 16/05/2023 07:11, Herbert Voss wrote:
> 
> M.B. Schiekel schrieb:
[...]
> tocloft is incompatible to komascript. There is the tocstyle package for
> KomaScript ...
[...]

-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about TOC

2023-05-16 Thread M.B. Schiekel

Am 15.05.23 um 22:37 schrieb M.B. Schiekel:

Am 13.05.23 um 11:49 schrieb M.B. Schiekel:
 > ...

   1 Chapter-1
   1.1 Section-1.1
   ...
   1.10Section-1.10
...



Thank you very much Herbert and Jürgen,

it seems, that tocstyle is now withdrawn from the KOMA-script bundle and 
replaced by tocbasic, which is loaded automatically by KOMA-script.

After a little RTFM I tried and indeed had success :-)
  \RedeclareSectionCommand[tocnumwidth=3.2em]{section}
  \RedeclareSectionCommand[tocindent=1.5em]{subsection}

Again, many thanks!!
bernhard

--
M.B. Schiekel,
Email: mb.schie...@posteo.de
Homepage: https://www.mb-schiekel.de/
GnuPG: https://keys.openpgp.org/
posteo.de: SSL-Verschluesselung + Oekostrom

--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about TOC

2023-05-16 Thread Jürgen Spitzmüller
Am Montag, dem 15.05.2023 um 20:37 + schrieb M.B. Schiekel:
> I think, it would be helpful, if this TOC-indentation feature would
> be integrated in the Koma-script book class :-)

With KOMA script, just use in preamble

\RedeclareSectionCommand[tocnumwidth=4em]{section}

Change the 4em value to whatever you see fit.

-- 
Jürgen
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about TOC

2023-05-15 Thread Herbert Voss


M.B. Schiekel schrieb:

> 2.
>\usepackage{tocloft}%TOC section indentations
>\cftsetindents{sec}{1.5em}{3em}
>\cftsetindents{subsec}{4.5em}{3em}
> does the job
>
> I think, it would be helpful, if this TOC-indentation feature would be
> integrated in the Koma-script book class :-)
>


tocloft is incompatible to komascript. There is the tocstyle package for
KomaScript ...

Herbert


-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about TOC

2023-05-15 Thread M.B. Schiekel

Am 13.05.23 um 11:49 schrieb M.B. Schiekel:
> ...

   1 Chapter-1
   1.1 Section-1.1
   ...
   1.10Section-1.10
...



Thank you, Ricardo and thank you el.

I'm using the document class KOMA-Sript book and there I got the 
following results:


1.
  \makeatletter
  \renewcommand\l@chapter{\@dottedtocline{1}{1.5em}{3em}}
  \renewcommand\l@section{\@dottedtocline{2}{1.5em}{3em}}
  \renewcommand\l@subsection{\@dottedtocline{3}{1.5em}{3em}}
  \makeatother
does not work. I suppose, that Koma-script book uses other variables.

2.
  \usepackage{tocloft}%TOC section indentations
  \cftsetindents{sec}{1.5em}{3em}
  \cftsetindents{subsec}{4.5em}{3em}
does the job

I think, it would be helpful, if this TOC-indentation feature would be 
integrated in the Koma-script book class :-)


Again, many thanks.
bernhard

--
M.B. Schiekel,
Email: mb.schie...@posteo.de
Homepage: https://www.mb-schiekel.de/
GnuPG: https://keys.openpgp.org/
posteo.de: SSL-Verschluesselung + Oekostrom

--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about TOC

2023-05-13 Thread Dr Eberhard W Lisse
This is a LaTeX question.

I would not re-invent the wheel but read up on the tocloft
package which you would use in the LyX preamble.

https://ctan.org/pkg/tocloft?lang=en

el

On 13/05/2023 11:49, M.B. Schiekel wrote:
> Hi,
> 
> with LyX 2.3.7 and PDFLatex (pdfTeX 3.141592653-2.6-1.40.22) I do a
> normal Table Of Contents (TOC).
> When the section numbers have 2 digits then in the TOC there is no space
> between the section number and the following section header, i.e.
>   1 Chapter-1
>   1.1 Section-1.1
>   ...
>   1.10Section-1.10
> 
> What I'm missing?
> Thank you -
> bernhard
> 

-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about TOC

2023-05-13 Thread M.B. Schiekel

Am 13.05.23 um 13:00 schrieb Ricardo Berlasso:
>> ...

When the section numbers have 2 digits then in the TOC there is no space
between the section number and the following section header, i.e.
1 Chapter-1
1.1 Section-1.1
...
1.10Section-1.10
...

...
\makeatletter
\renewcommand\l@chapter{
 \@dottedtocline{2}{1.5em}{3em}}
\renewcommand\l@section{
 \@dottedtocline{2}{1.5em}{3em}}
\makeatother

That will change the spacing for chapters and sections, just play a bit
with the numbers (most of the time you'll only need to change the 3em).

> ...


Thank you, Ricardo,

well, I only needed the section changings, the chapter spacings with 2 
digits are correct.


In the meanwhile I found on stackexchange this suggestion:
https://tex.stackexchange.com/questions/436063/spacing-between-number-and-text-in-toc

\usepackage{tocloft}
\advance\cftsecnumwidth 0.5em\relax
\advance\cftsubsecindent 0.5em\relax
\advance\cftsubsecnumwidth 0.5em\relax

And this gives a fine output for me :-)

Thank you very much,
bernhard

--
M.B. Schiekel,
Email: mb.schie...@posteo.de
Homepage: https://www.mb-schiekel.de/
GnuPG: https://keys.openpgp.org/


--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about TOC

2023-05-13 Thread Ricardo Berlasso
El sáb, 13 may 2023 a las 11:49, M.B. Schiekel ()
escribió:

> Hi,
>
> with LyX 2.3.7 and PDFLatex (pdfTeX 3.141592653-2.6-1.40.22) I do a
> normal Table Of Contents (TOC).
> When the section numbers have 2 digits then in the TOC there is no space
> between the section number and the following section header, i.e.
>1 Chapter-1
>1.1 Section-1.1
>...
>1.10Section-1.10
>
> What I'm missing?
>

Don't worry, it's not your fault ;)

You need to change the spacing between the numbering and the heading
itself. You can do that by writing something like this in the preamble

\makeatletter
\renewcommand\l@chapter{
\@dottedtocline{2}{1.5em}{3em}}
\renewcommand\l@section{
\@dottedtocline{2}{1.5em}{3em}}
\makeatother

That will change the spacing for chapters and sections, just play a bit
with the numbers (most of the time you'll only need to change the 3em).

Regards,
Ricardo



> Thank you -
> bernhard
>
> --
> M.B. Schiekel
>
> --
> lyx-users mailing list
> lyx-users@lists.lyx.org
> http://lists.lyx.org/mailman/listinfo/lyx-users
>
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question

2022-09-22 Thread Pavel Sanda
On Tue, Sep 20, 2022 at 03:12:27PM +, Michael.Pearson2--- via lyx-users 
wrote:
> HI-
> 
> What version of lyx contains a version of Imagemagick that is not vulnerable?

What OS are you using?
Pavel
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question

2022-09-21 Thread Wolfgang Engelmann



Am 20.09.22 um 17:12 schrieb Michael.Pearson2--- via lyx-users:

HI-

What version of lyx contains a version of Imagemagick that is not 
vulnerable?


Thanks in advance,

*Michael Pearson*

WFT CTO | Enterprise Application Services (EAS)

Software Enablement Services (SES) | Product Portfolio Management

Mobile (515) 339-8592 | MAC F2505-03A

/To better manage and track requests related to the products aligned to 
the Applications Products Competency Center, please access the*SES 
Product Portfolio Service Center* 
 
page as a starting point for Product Owner engagement./




Could you explain, how to find out?
Wolfgang
--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: Question re bib file

2022-07-08 Thread Herbert Voss



Am 08.07.22 um 09:56 schrieb Wolfgang Engelmann:



Am 07.07.22 um 18:17 schrieb Herbert Voss:

biber --tool -V .bib


running Herberts proposal to find errors in a bib file
with biber gives me:

Overriding locale 'en_US' defaults 'variable = shifted' with 'variable 
= non-ignorable'
INFO - Overriding locale 'en_US' defaults 'normalization = NFD' with 
'normalization = prenormalized'
INFO - Sorting list 'tool/global//global/global' of type 'entry' with 
template 'tool' and locale 'en_US'

INFO - No sort tailoring available for locale 'en_US'


Wolfgang,

that is only an information, no more no less. You have to do nothing here.

form the documentation:

The locale will be used to look for a collation tailoring for that locale.
 It will generate an informational warning if it finds none. /
This is not a problem/ as most standard collation cases are covered
by the standard UCA and many locales neither have nor need any
special collation tailoring.

You do not get this info with

\usepackage[sortlocale=nb_NO]{biblatex}

Herbert
--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: Question re bib file

2022-07-08 Thread Wolfgang Engelmann




Am 07.07.22 um 18:17 schrieb Herbert Voss:

biber --tool -V .bib


running Herberts proposal to find errors in a bib file
with biber gives me:

Overriding locale 'en_US' defaults 'variable = shifted' with 'variable = 
non-ignorable'
INFO - Overriding locale 'en_US' defaults 'normalization = NFD' with 
'normalization = prenormalized'
INFO - Sorting list 'tool/global//global/global' of type 'entry' with 
template 'tool' and locale 'en_US'

INFO - No sort tailoring available for locale 'en_US'
sudo dpkg-reconfigure locales

There are answers given in
https://stackoverflow.com/questions/4632885/what-is-the-difference-between-creating-a-locale-for-en-us-and-en-us

but I don't understand what I should actually do

my java:
java -version
openjdk version "11.0.15" 2022-04-19
OpenJDK Runtime Environment (build 11.0.15+10-post-Debian-1deb11u1)
OpenJDK 64-Bit Server VM (build 11.0.15+10-post-Debian-1deb11u1, mixed 
mode, sharing)


Wolfgang

--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: Question re bib file

2022-07-07 Thread Wolfgang Engelmann




Am 07.07.22 um 18:17 schrieb Herbert Voss:

Am 07.07.22 um 18:06 schrieb Wolfgang Engelmann:



Am 07.07.22 um 10:12 schrieb Herbert Voss:

I have in the meantime started to check the bib file (I am using 
jabref) thoroughly and collect the references used in my document in a 
separate lyx file which has almost no text, and I set it to 'all 
references'. Frequent runs (e.g. after having checked all references 
with A..., then B...) of the pdf output show me whether 
errors/warnings are given. I know that I can in Jabref use 
Quality>check_integrity, but that did not disclose critical errors.



Wolfgang,
run in a terminal

|biber --tool -V .bib|

Herbert


cool! Did not know that.
I used
biber --tool -V my.bib > mybib.txt

I must now try to learn more about this tool

Thanks,
Wolfgang
--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: Question re bib file

2022-07-07 Thread Herbert Voss

Am 07.07.22 um 18:06 schrieb Wolfgang Engelmann:



Am 07.07.22 um 10:12 schrieb Herbert Voss:

I have in the meantime started to check the bib file (I am using 
jabref) thoroughly and collect the references used in my document in a 
separate lyx file which has almost no text, and I set it to 'all 
references'. Frequent runs (e.g. after having checked all references 
with A..., then B...) of the pdf output show me whether 
errors/warnings are given. I know that I can in Jabref use 
Quality>check_integrity, but that did not disclose critical errors.



Wolfgang,
run in a terminal

|biber --tool -V .bib|

Herbert
--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: Question re bib file

2022-07-07 Thread Wolfgang Engelmann




Am 07.07.22 um 10:12 schrieb Herbert Voss:



Am 07.07.22 um 09:55 schrieb Wolfgang Engelmann:

Hi,
I have a larger bib file for a book, for which a lyx file run spits 
this warning


[7580] Utils.pm:410> ERROR - BibTeX subsystem: 
/tmp/biber_tmp_SWLO/d7dc170ec507816e85d64326c042e07e_4336.utf8, line 
7118, syntax error: found ",", expected one of: number, name (entry 
type, key, field, or macro name), end of entry ("}" or ")") or quoted 
string ({...} or "...")


Wolfgang,

your bib datafile has a syntax error which is detected at line 7118 by 
biber

It looks like something as


foo = ,


Herbert



Thanks, Herbert,

yes, I could change that, but there are probably still many more errors 
left after that.

Therefore my question.

I have in the meantime started to check the bib file (I am using jabref) 
thoroughly and collect the references used in my document in a separate 
lyx file which has almost no text, and I set it to 'all references'. 
Frequent runs (e.g. after having checked all references with A..., then 
B...) of the pdf output show me whether errors/warnings are given. I 
know that I can in Jabref use Quality>check_integrity, but that did not 
disclose critical errors.


Wolfgang
--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: Question re bib file

2022-07-07 Thread Herbert Voss




Am 07.07.22 um 09:55 schrieb Wolfgang Engelmann:

Hi,
I have a larger bib file for a book, for which a lyx file run spits 
this warning


[7580] Utils.pm:410> ERROR - BibTeX subsystem: 
/tmp/biber_tmp_SWLO/d7dc170ec507816e85d64326c042e07e_4336.utf8, line 
7118, syntax error: found ",", expected one of: number, name (entry 
type, key, field, or macro name), end of entry ("}" or ")") or quoted 
string ({...} or "...")


Wolfgang,

your bib datafile has a syntax error which is detected at line 7118 by biber
It looks like something as


foo = ,


Herbert


--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about "itemize"

2022-02-07 Thread Tom Goldring via lyx-users
Setting the environment to "Standard" and indenting did exactly what I 
wanted. Thanks to everyone who responded!


--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about "itemize"

2022-02-05 Thread Steve Litt via lyx-users
Paul A. Rubin via lyx-users said on Sat, 5 Feb 2022 16:04:28 -0500

>On 2/5/22 15:57, Daniel via lyx-users wrote:
>> On 2022-02-05 16:23, Daniel via lyx-users wrote:  
>>> On 2022-02-05 16:21, Daniel via lyx-users wrote:  
 On 2022-02-05 07:25, Tom Goldring via lyx-users wrote:  
> Suppose I have an itemized list like
>
>     paragraph 1
>
>    - paragraph 2
>
>     paragraph 3
>
> where paragraph 2 is nested. If I enter this by choosing the 
> "itemize" environment, then typing

[snip]


 Try setting paragraph 3 with the Standard layout and indent it.
 Hope I understood what you meant.  
>>>
>>> By "indent it", I meant "increase the depth" (by pressing the tab 
>>> key, for example).  
>>
>> Paul's answer makes me think that my answer wasn't fully clear. So, 
>> I'll attach an example document. Looks reasonable in LyX' work area
>> too.
>>
>> Daniel
>>  
>I grafted my answer onto Daniel's example (as paragraphs 4 through 6), 
>and the PDF output shows no differences that I can see between the two 
>approaches.
>
>Paul

The OP's question was ambiguous because he showed no bullets at level
1. He's received an easy and correct answer from three different
people, in a timely manner. The OP has not responded. This was the OP's
one and only post to this list. At this point I think we can mark this
issue as closed.

SteveT

Steve Litt 
Spring 2021 featured book: Troubleshooting Techniques of the Successful
Technologist http://www.troubleshooters.com/techniques
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about "itemize"

2022-02-05 Thread Paul A. Rubin via lyx-users

On 2/5/22 15:57, Daniel via lyx-users wrote:

On 2022-02-05 16:23, Daniel via lyx-users wrote:

On 2022-02-05 16:21, Daniel via lyx-users wrote:

On 2022-02-05 07:25, Tom Goldring via lyx-users wrote:

Suppose I have an itemized list like

    paragraph 1

   - paragraph 2

    paragraph 3

where paragraph 2 is nested. If I enter this by choosing the 
"itemize" environment, then typing


paragraph 1   paragraph 2   
paragraph 3


LyX creates paragraph 3 as a new item. Is there a way to have 
paragraph 3 not be a new item? For example, if I enter paragraph 3 
in the "Quote" environment, it will look like I want it to on the 
left (i.e. it will have the same indentation as paragraph 1 without 
the large dot that indicates a new item) but if it's a long 
paragraph it will also be indented on the right, which I don't 
want. In other words, I would like it to have the same indentation 
(both right and left) as if paragraph 3 were a new item, but 
without the dot preceding paragraph 3. Hope this makes sense.


Try setting paragraph 3 with the Standard layout and indent it. Hope 
I understood what you meant.


By "indent it", I meant "increase the depth" (by pressing the tab 
key, for example).


Paul's answer makes me think that my answer wasn't fully clear. So, 
I'll attach an example document. Looks reasonable in LyX' work area too.


Daniel

I grafted my answer onto Daniel's example (as paragraphs 4 through 6), 
and the PDF output shows no differences that I can see between the two 
approaches.


Paul

--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about "itemize"

2022-02-05 Thread Daniel via lyx-users

On 2022-02-05 16:23, Daniel via lyx-users wrote:

On 2022-02-05 16:21, Daniel via lyx-users wrote:

On 2022-02-05 07:25, Tom Goldring via lyx-users wrote:

Suppose I have an itemized list like

    paragraph 1

   - paragraph 2

    paragraph 3

where paragraph 2 is nested. If I enter this by choosing the 
"itemize" environment, then typing


paragraph 1   paragraph 2   paragraph 3

LyX creates paragraph 3 as a new item. Is there a way to have 
paragraph 3 not be a new item? For example, if I enter paragraph 3 in 
the "Quote" environment, it will look like I want it to on the left 
(i.e. it will have the same indentation as paragraph 1 without the 
large dot that indicates a new item) but if it's a long paragraph it 
will also be indented on the right, which I don't want. In other 
words, I would like it to have the same indentation (both right and 
left) as if paragraph 3 were a new item, but without the dot 
preceding paragraph 3. Hope this makes sense.


Try setting paragraph 3 with the Standard layout and indent it. Hope I 
understood what you meant.


By "indent it", I meant "increase the depth" (by pressing the tab key, 
for example).


Paul's answer makes me think that my answer wasn't fully clear. So, I'll 
attach an example document. Looks reasonable in LyX' work area too.


Daniel
#LyX 2.3 created this file. For more info see http://www.lyx.org/
\lyxformat 544
\begin_document
\begin_header
\save_transient_properties true
\origin unavailable
\textclass article
\use_default_options true
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding auto
\fontencoding global
\font_roman "default" "default"
\font_sans "default" "default"
\font_typewriter "default" "default"
\font_math "auto" "auto"
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100 100
\font_tt_scale 100 100
\use_microtype false
\use_dash_ligatures true
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize default
\spacing single
\use_hyperref true
\pdf_bookmarks true
\pdf_bookmarksnumbered false
\pdf_bookmarksopen false
\pdf_bookmarksopenlevel 1
\pdf_breaklinks false
\pdf_pdfborder false
\pdf_colorlinks false
\pdf_backref false
\pdf_pdfusetitle true
\papersize default
\use_geometry false
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 1
\use_package esint 1
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 1
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\justification false
\use_refstyle 1
\use_minted 0
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\is_math_indent 0
\math_numbering_side default
\quotes_style english
\dynamic_quotes 0
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header

\begin_body

\begin_layout Itemize
paragraph 1
\end_layout

\begin_deeper
\begin_layout Itemize
paragraph 2
\end_layout

\begin_layout Standard
paragraph 3
\end_layout

\end_deeper
\end_body
\end_document
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about "itemize"

2022-02-05 Thread Steve Litt via lyx-users
Tom Goldring via lyx-users said on Sat, 5 Feb 2022 01:25:33 -0500

>Suppose I have an itemized list like
>
>    paragraph 1
>
>   - paragraph 2
>
>    paragraph 3
>
>where paragraph 2 is nested. If I enter this by choosing the "itemize" 
>environment, then typing
>
>paragraph 1   paragraph 2   paragraph 3
>
>LyX creates paragraph 3 as a new item. Is there a way to have
>paragraph 3 not be a new item? 

Yes. In the LyX environment, press the Enter key twice, and you'll
start a new paragraph. If for some reason that doesn't work, go to the
Environment dropdown and chooose Standard.

SteveT

Steve Litt 
Spring 2021 featured book: Troubleshooting Techniques of the Successful
Technologist http://www.troubleshooters.com/techniques
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about "itemize"

2022-02-05 Thread Paul A. Rubin via lyx-users

On 2/5/22 01:25, Tom Goldring via lyx-users wrote:

Suppose I have an itemized list like

   paragraph 1

  - paragraph 2

   paragraph 3

where paragraph 2 is nested. If I enter this by choosing the "itemize" 
environment, then typing


paragraph 1   paragraph 2   paragraph 3

LyX creates paragraph 3 as a new item. Is there a way to have 
paragraph 3 not be a new item? For example, if I enter paragraph 3 in 
the "Quote" environment, it will look like I want it to on the left 
(i.e. it will have the same indentation as paragraph 1 without the 
large dot that indicates a new item) but if it's a long paragraph it 
will also be indented on the right, which I don't want. In other 
words, I would like it to have the same indentation (both right and 
left) as if paragraph 3 were a new item, but without the dot preceding 
paragraph 3. Hope this makes sense.
After doing everything as above, with the cursor in paragraph 3, use 
Insert > Custom Item to open a custom item inset. Leave the inset empty. 
I would put it at the start of the paragraph (just after the bullet 
inserted by LyX) for neatness, but I don't think it actually matters 
where in the paragraph you put it. The undesired bullet will still 
appear in the LyX GUI, but when you view the document it should be gone.


Paul

--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about "itemize"

2022-02-05 Thread Daniel via lyx-users

On 2022-02-05 16:21, Daniel via lyx-users wrote:

On 2022-02-05 07:25, Tom Goldring via lyx-users wrote:

Suppose I have an itemized list like

    paragraph 1

   - paragraph 2

    paragraph 3

where paragraph 2 is nested. If I enter this by choosing the "itemize" 
environment, then typing


paragraph 1   paragraph 2   paragraph 3

LyX creates paragraph 3 as a new item. Is there a way to have 
paragraph 3 not be a new item? For example, if I enter paragraph 3 in 
the "Quote" environment, it will look like I want it to on the left 
(i.e. it will have the same indentation as paragraph 1 without the 
large dot that indicates a new item) but if it's a long paragraph it 
will also be indented on the right, which I don't want. In other 
words, I would like it to have the same indentation (both right and 
left) as if paragraph 3 were a new item, but without the dot preceding 
paragraph 3. Hope this makes sense.


Try setting paragraph 3 with the Standard layout and indent it. Hope I 
understood what you meant.


By "indent it", I meant "increase the depth" (by pressing the tab key, 
for example).


Daniel



--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: question about "itemize"

2022-02-05 Thread Daniel via lyx-users

On 2022-02-05 07:25, Tom Goldring via lyx-users wrote:

Suppose I have an itemized list like

    paragraph 1

   - paragraph 2

    paragraph 3

where paragraph 2 is nested. If I enter this by choosing the "itemize" 
environment, then typing


paragraph 1   paragraph 2   paragraph 3

LyX creates paragraph 3 as a new item. Is there a way to have paragraph 
3 not be a new item? For example, if I enter paragraph 3 in the "Quote" 
environment, it will look like I want it to on the left (i.e. it will 
have the same indentation as paragraph 1 without the large dot that 
indicates a new item) but if it's a long paragraph it will also be 
indented on the right, which I don't want. In other words, I would like 
it to have the same indentation (both right and left) as if paragraph 3 
were a new item, but without the dot preceding paragraph 3. Hope this 
makes sense.


Try setting paragraph 3 with the Standard layout and indent it. Hope I 
understood what you meant.


Daniel


--
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: Question

2019-06-24 Thread Dr Eberhard Lisse
Vertical Space Fill above
Paragraph Centered
Vertical Space Fill below

el

On 2019-06-24 03:47 , Paul A. Rubin wrote:
> On 6/23/19 8:46 PM, Carlos Knauer wrote:
>> Hello. How do I write a sentence in the center of a page, for example?
>>
>> Carlos F. Knauer
>>
> By itself (the only thing on the page), with other text above and below
> but not to the sides, or with other text above, below, left and right of
> it?
> 
> Paul
> 
> 



Re: Question

2019-06-23 Thread Paul A. Rubin

On 6/23/19 8:46 PM, Carlos Knauer wrote:

Hello. How do I write a sentence in the center of a page, for example?

Carlos F. Knauer

By itself (the only thing on the page), with other text above and below 
but not to the sides, or with other text above, below, left and right of it?


Paul



Re: Question on advanced find and replace

2019-05-21 Thread Paul Smith
On Wed, May 15, 2019 at 2:41 PM Helge Hafting  wrote:
> >
> > I have a large document where I have many lines that are only
> >
> > @@
> >
> > Now, I want to insert all lines between two consecutive lines of @@
> > into a minipage. Can one do that automatically and not one by one?
>
> Not to my knowledge, no.
>
> Advanced search & replace lets you search for and/or replace stuff that
> isn't only normal text. So you can replace an image with another. You
> can search for & replace math formulas. You may also replace "@@" with a
> minipage.
>
> But if I understand correctly, you want to search for:
>
> @@
>
> some
>
> lines
>
> @@
>
> and have it replaced with:
>
> ---start minipage--
>
> some
>
> lines
>
> ---end minipage--
>
>
> And you want this to happen several times through your document, where
> the exact contents of "some lines" vary. This is not possible.  You may
> only search for fixed content, not variable. So you can search for
>
> @@
>
> some
>
> lines
>
> @@
>
> But such a search will only match exactly, you can't get it to also match
>
> @@
>
> other
>
> lines
>
> @@
>
> And I guess that is what you wanted?
>
>
> LyX lets you mark "some lines", you can then Insert->Box->Simple Frame
> and get your lines inside a minipage. And then repeat this mark & insert
> operation for all other occurences.
>
> If you want to automate this, consider taking advantage of the fact that
> a LyX file is a kind of text file. Software that deals with text (sed,
> awk, or many others) may be able to do what you want. And if there are
> hundreds of cases, writing a one-off program to do this may pay off.
> (Pay off in that it may be faster than editing it all by hand.)
> Otherwise, or if you aren't into programming, just edit manually.

Thanks, Helge. Indeed, I want to automate the procedure you describe
in your penultimate paragraph. And, as you suggest, I will try to
accomplish that by writing a program, as I have dozens of minipages to
insert.

Paul


Re: Question on advanced find and replace

2019-05-15 Thread Helge Hafting



Den 12.05.2019 18:22, skrev Paul Smith:

Dear All,

I have a large document where I have many lines that are only

@@

Now, I want to insert all lines between two consecutive lines of @@
into a minipage. Can one do that automatically and not one by one?


Not to my knowledge, no.

Advanced search & replace lets you search for and/or replace stuff that 
isn't only normal text. So you can replace an image with another. You 
can search for & replace math formulas. You may also replace "@@" with a 
minipage.


But if I understand correctly, you want to search for:

@@

some

lines

@@

and have it replaced with:

---start minipage--

some

lines

---end minipage--


And you want this to happen several times through your document, where 
the exact contents of "some lines" vary. This is not possible.  You may 
only search for fixed content, not variable. So you can search for


@@

some

lines

@@

But such a search will only match exactly, you can't get it to also match

@@

other

lines

@@

And I guess that is what you wanted?


LyX lets you mark "some lines", you can then Insert->Box->Simple Frame 
and get your lines inside a minipage. And then repeat this mark & insert 
operation for all other occurences.


If you want to automate this, consider taking advantage of the fact that 
a LyX file is a kind of text file. Software that deals with text (sed, 
awk, or many others) may be able to do what you want. And if there are 
hundreds of cases, writing a one-off program to do this may pay off. 
(Pay off in that it may be faster than editing it all by hand.)  
Otherwise, or if you aren't into programming, just edit manually.


Helge Hafting







Re: Fwd: Re: Question regarding the form of the aspect of the text in the main window

2019-04-30 Thread Jean-Marc Lasgouttes

Le 30/04/2019 à 18:50, Axel Dessecker a écrit :

I just found your messages in my spam... Could this issue be related to
https://www.lyx.org/trac/ticket/11233
(that one is a KDE bug)




I'm not so sure about that. Should we see italics on the screen even without
having them installed as a part of the font series?


To be frank, I do not know...

JMarc


Re: Fwd: Re: Question regarding the form of the aspect of the text in the main window

2019-04-30 Thread Axel Dessecker
Am Donnerstag, 25. April 2019, 19:17:35 CEST schrieb Jean-Marc Lasgouttes:
> Le 03/04/2019 à 11:43, Axel Dessecker a écrit :
> > Just to follow up: This behaviour seems to be related to the screen fonts
> > used. No problem with Times New Roman, which is the default, and other
> > font
> > series with a complete set of shape options installed.
> 
> Hello,
> 
> I just found your messages in my spam... Could this issue be related to
> https://www.lyx.org/trac/ticket/11233
> (that one is a KDE bug)
> 
> JMarc

Jean-Marc,

I'm not so sure about that. Should we see italics on the screen even without 
having them installed as a part of the font series?

Axel



> 
> > --  Weitergeleitete Nachricht  --
> > 
> > Betreff: Re: Question regarding the form of the aspect of the text in the
> > main window
> > Datum: Freitag, 29. März 2019, 11:37:29 CEST
> > Von: Axel Dessecker 
> > An: lyx-users@lists.lyx.org
> > Kopie: lasgout...@lyx.org
> > 
> > Jean-Marc,
> > 
> >> Le 21/03/2019 à 10:30, Harold Mouras a écrit :
> >>  Hello,
> >>  I run Lyx 2.3.1 on Mac OS 10.14.3.
> >>  Thanks
> >> 
> >> Could you try to update to 2.3.2 and tell us whether the problem is still
> >> present?
> >> 
> >> 
> >> JMarc
> > 
> > Same problem here with LyX 2.3.2 and Linux (openSUSE Leap 15.0).
> > 
> > Axel
> > 
> >>  Le 21 mars 2019 à 10:26, Jean-Marc Lasgouttes
> >>   a
> >>  écrit :
> >>  
> >>  Le 21/03/2019 à 10:19, Harold Mouras a écrit :
> >>  Dear Lyx Users,
> >>  I remember having worked with a version of LyX in which the
> >>  bold
> >>  text did
> >>  appear as bold when typing. In my current version (2.3.1),
> >>  this
> >>  is no more the case.
> >>  Is that possible to set LyX to put the text in bold and
> >>  italic
> >>  in when typing
> >>  it ?
> >>  Thank you very much in advance,
> >>  Regards,
> >>  
> >>  Hello,
> >>  
> >>  On what kind of system are you running LyX? Some times ago we
> >>  had
> >>  issues with
> >>  macOS Mojave, but they are sorted out now.
> >>  
> >>  JMarc
> > 
> > -



signature.asc
Description: This is a digitally signed message part.


Re: Fwd: Re: Question regarding the form of the aspect of the text in the main window

2019-04-25 Thread Jean-Marc Lasgouttes

Le 03/04/2019 à 11:43, Axel Dessecker a écrit :

Just to follow up: This behaviour seems to be related to the screen fonts
used. No problem with Times New Roman, which is the default, and other font
series with a complete set of shape options installed.


Hello,

I just found your messages in my spam... Could this issue be related to
https://www.lyx.org/trac/ticket/11233
(that one is a KDE bug)

JMarc


--  Weitergeleitete Nachricht  --

Betreff: Re: Question regarding the form of the aspect of the text in the main
window
Datum: Freitag, 29. März 2019, 11:37:29 CEST
Von: Axel Dessecker 
An: lyx-users@lists.lyx.org
Kopie: lasgout...@lyx.org

Jean-Marc,


Le 21/03/2019 à 10:30, Harold Mouras a écrit :
 Hello,
 I run Lyx 2.3.1 on Mac OS 10.14.3.
 Thanks

Could you try to update to 2.3.2 and tell us whether the problem is still
present?


JMarc


Same problem here with LyX 2.3.2 and Linux (openSUSE Leap 15.0).

Axel


 Le 21 mars 2019 à 10:26, Jean-Marc Lasgouttes  a
 écrit :
 
 Le 21/03/2019 à 10:19, Harold Mouras a écrit :

 Dear Lyx Users,
 I remember having worked with a version of LyX in which the bold
 text did
 appear as bold when typing. In my current version (2.3.1), this
 is no more the case.
 Is that possible to set LyX to put the text in bold and italic
 in when typing
 it ?
 Thank you very much in advance,
 Regards,
 
 Hello,
 
 On what kind of system are you running LyX? Some times ago we had

 issues with
 macOS Mojave, but they are sorted out now.
 
 JMarc

-





Fwd: Re: Question regarding the form of the aspect of the text in the main window

2019-04-03 Thread Axel Dessecker
Just to follow up: This behaviour seems to be related to the screen fonts 
used. No problem with Times New Roman, which is the default, and other font 
series with a complete set of shape options installed.

Axel


--  Weitergeleitete Nachricht  --

Betreff: Re: Question regarding the form of the aspect of the text in the main 
window
Datum: Freitag, 29. März 2019, 11:37:29 CEST
Von: Axel Dessecker 
An: lyx-users@lists.lyx.org
Kopie: lasgout...@lyx.org

Jean-Marc,

> Le 21/03/2019 à 10:30, Harold Mouras a écrit :
> Hello,
> I run Lyx 2.3.1 on Mac OS 10.14.3.
> Thanks
> 
> Could you try to update to 2.3.2 and tell us whether the problem is still
> present?
> 
> 
> JMarc

Same problem here with LyX 2.3.2 and Linux (openSUSE Leap 15.0).

Axel

> Le 21 mars 2019 à 10:26, Jean-Marc Lasgouttes  a
> écrit :
> 
> Le 21/03/2019 à 10:19, Harold Mouras a écrit :
> Dear Lyx Users,
> I remember having worked with a version of LyX in which the bold
> text did
> appear as bold when typing. In my current version (2.3.1), this
> is no more the case.
> Is that possible to set LyX to put the text in bold and italic
> in when typing
> it ?
> Thank you very much in advance,
> Regards,
> 
> Hello,
> 
> On what kind of system are you running LyX? Some times ago we had
> issues with
> macOS Mojave, but they are sorted out now.
> 
> JMarc
-

signature.asc
Description: This is a digitally signed message part.


Re: Question regarding the form of the aspect of the text in the main window

2019-03-29 Thread Axel Dessecker
Jean-Marc,

> Le 21/03/2019 à 10:30, Harold Mouras a écrit :
> Hello,
> I run Lyx 2.3.1 on Mac OS 10.14.3.
> Thanks
> 
> Could you try to update to 2.3.2 and tell us whether the problem is still
> present?
> 
> 
> JMarc

Same problem here with LyX 2.3.2 and Linux (openSUSE Leap 15.0).

Axel

> Le 21 mars 2019 à 10:26, Jean-Marc Lasgouttes  a
> écrit :
> 
> Le 21/03/2019 à 10:19, Harold Mouras a écrit :
> Dear Lyx Users,
> I remember having worked with a version of LyX in which the bold
> text did
> appear as bold when typing. In my current version (2.3.1), this
> is no more the case.
> Is that possible to set LyX to put the text in bold and italic
> in when typing
> it ?
> Thank you very much in advance,
> Regards,
> 
> Hello,
> 
> On what kind of system are you running LyX? Some times ago we had
> issues with
> macOS Mojave, but they are sorted out now.
> 
> JMarc

signature.asc
Description: This is a digitally signed message part.


Re: Question regarding the form of the aspect of the text in the main window

2019-03-21 Thread Jean-Marc Lasgouttes

Le 21/03/2019 à 10:30, Harold Mouras a écrit :

Hello,
I run Lyx 2.3.1 on Mac OS 10.14.3.
Thanks


Could you try to update to 2.3.2 and tell us whether the problem is 
still present?


JMarc




Le 21 mars 2019 à 10:26, Jean-Marc Lasgouttes  a écrit :

Le 21/03/2019 à 10:19, Harold Mouras a écrit :

Dear Lyx Users,
I remember having worked with a version of LyX in which the bold text did 
appear as bold when typing. In my current version (2.3.1), this is no more the 
case.
Is that possible to set LyX to put the text in bold and italic in when typing 
it ?
Thank you very much in advance,
Regards,


Hello,

On what kind of system are you running LyX? Some times ago we had issues with 
macOS Mojave, but they are sorted out now.

JMarc






Re: Question regarding the form of the aspect of the text in the main window

2019-03-21 Thread Harold Mouras
Hello,
I run Lyx 2.3.1 on Mac OS 10.14.3.
Thanks

> Le 21 mars 2019 à 10:26, Jean-Marc Lasgouttes  a écrit :
> 
> Le 21/03/2019 à 10:19, Harold Mouras a écrit :
>> Dear Lyx Users,
>> I remember having worked with a version of LyX in which the bold text did 
>> appear as bold when typing. In my current version (2.3.1), this is no more 
>> the case.
>> Is that possible to set LyX to put the text in bold and italic in when 
>> typing it ?
>> Thank you very much in advance,
>> Regards,
> 
> Hello,
> 
> On what kind of system are you running LyX? Some times ago we had issues with 
> macOS Mojave, but they are sorted out now.
> 
> JMarc



Re: Question regarding the form of the aspect of the text in the main window

2019-03-21 Thread Jean-Marc Lasgouttes

Le 21/03/2019 à 10:19, Harold Mouras a écrit :

Dear Lyx Users,
I remember having worked with a version of LyX in which the bold text did 
appear as bold when typing. In my current version (2.3.1), this is no more the 
case.
Is that possible to set LyX to put the text in bold and italic in when typing 
it ?
Thank you very much in advance,
Regards,


Hello,

On what kind of system are you running LyX? Some times ago we had issues 
with macOS Mojave, but they are sorted out now.


JMarc


Re: Question: how to run Reconfigure without GUI

2019-02-08 Thread Dr Eberhard Lisse
I futureproofed it a little :-)-O

#!/bin/bash
function lyxconfigure
{
if [[ "$OSTYPE" == "darwin"* ]]
then
BASEDIR="/Users/$(whoami)/Library/Application Support/LyX"
LYXVER=$(lyx --version 2>&1 \
| perl -ne 'if (/^LyX/) {
@v = split(/\s+/);
($j,$i) = split(/\./,$v[1],3);
print "$j.$i"
}'
)
pushd "$BASEDIR-$LYXVER"
python -tt 
"/Applications/LyX.app/Contents/Resources/configure.py"
popd
else
echo "This only works on a Mac"
fi
}

If someone can come up with a clever way of finding the maJor and miNor 
versions of LyX, please let me know.

Heartbleed was an OpenSSL vulnerability by the way, and, though Bashdoor
was an issue in 2014, I use bash as my login shell so I don't really
think it matters much.  But as Steve wrote it's trivial to change.


On 06/02/2019 10:49, Dr Eberhard Lisse wrote:
[...]
> On 06/02/2019 09:53, Steve Litt wrote:
[...]
>> Beware that pushd and popd are bash-only, and do not appear in dash or
>> any /bin/sh one should be using for shellscripts. I'm of the opinion,
>> especially after the Heartbleed fiasco, that bash is just too big an
>> attack surface to use for shellscripts.
>>
>> In more lightweight shells, it's done more like this:
>>
>> #!/bin/sh
>> orgdir=`pwd`
>> cd /home/you/application/directory
>> ./my_special_application arg1 arg2 arg3
>> cd $orgdir
[...]




Re: Question: how to run Reconfigure without GUI

2019-02-06 Thread Dr Eberhard Lisse
That was a first stab at it :-)-O

When I have a moment I'll do it right :-)-O

greetings, el


On 06/02/2019 09:53, Steve Litt wrote:
> On Tue, 5 Feb 2019 13:49:31 -0500
> Scott Kostyshak  wrote:
> 
>> On Tue, Feb 05, 2019 at 12:35:55PM +0200, Dr Eberhard Lisse wrote:
>>> Scott,
>>>
>>> this is very helpful for my alias file on the Mac.
>>>
>>> function lyxconfigure
>>> {
>>> pushd ~/
>>> python -tt
>>> "/Applications/LyX.app/Contents/Resources/configure.py" popd
>>> }  
>>
>> Nice. Thanks for sharing I actually never saw that trick for saving
>> the directory in a bash function (I've only used pushd and popd
>> interactively). I am used to saving "$(pwd)" to a variable and then
>> "cd" back to it. I like your trick instead.
> 
> Beware that pushd and popd are bash-only, and do not appear in dash or
> any /bin/sh one should be using for shellscripts. I'm of the opinion,
> especially after the Heartbleed fiasco, that bash is just too big an
> attack surface to use for shellscripts.
> 
> In more lightweight shells, it's done more like this:
> 
> #!/bin/sh
> orgdir=`pwd`
> cd /home/you/application/directory
> ./my_special_application arg1 arg2 arg3
> cd $orgdir
> 
> SteveT
> 



Re: Question: how to run Reconfigure without GUI

2019-02-05 Thread Steve Litt
On Tue, 5 Feb 2019 13:49:31 -0500
Scott Kostyshak  wrote:

> On Tue, Feb 05, 2019 at 12:35:55PM +0200, Dr Eberhard Lisse wrote:
> > Scott,
> > 
> > this is very helpful for my alias file on the Mac.
> > 
> > function lyxconfigure
> > {
> > pushd ~/
> > python -tt
> > "/Applications/LyX.app/Contents/Resources/configure.py" popd
> > }  
> 
> Nice. Thanks for sharing I actually never saw that trick for saving
> the directory in a bash function (I've only used pushd and popd
> interactively). I am used to saving "$(pwd)" to a variable and then
> "cd" back to it. I like your trick instead.

Beware that pushd and popd are bash-only, and do not appear in dash or
any /bin/sh one should be using for shellscripts. I'm of the opinion,
especially after the Heartbleed fiasco, that bash is just too big an
attack surface to use for shellscripts.

In more lightweight shells, it's done more like this:

#!/bin/sh
orgdir=`pwd`
cd /home/you/application/directory
./my_special_application arg1 arg2 arg3
cd $orgdir

SteveT
-- 
Steve Litt 
January 2019 featured book: Troubleshooting: Just the Facts
http://www.troubleshooters.com/tjust


Re: Question: how to run Reconfigure without GUI

2019-02-05 Thread Jean-Marc Lasgouttes

Le 05/02/2019 à 19:49, Scott Kostyshak a écrit :

On Tue, Feb 05, 2019 at 12:35:55PM +0200, Dr Eberhard Lisse wrote:

Scott,

this is very helpful for my alias file on the Mac.

function lyxconfigure
{
pushd ~/
python -tt "/Applications/LyX.app/Contents/Resources/configure.py"
popd
}


Nice. Thanks for sharing I actually never saw that trick for saving the
directory in a bash function (I've only used pushd and popd
interactively). I am used to saving "$(pwd)" to a variable and then "cd"
back to it. I like your trick instead.


One can also do
( cd dir ; ./command )

But concerning the alias, I am a bit surprised because it seems to 
create files at the root of the home directory.


JMarc


Re: Question: how to run Reconfigure without GUI

2019-02-05 Thread Scott Kostyshak
On Tue, Feb 05, 2019 at 12:35:55PM +0200, Dr Eberhard Lisse wrote:
> Scott,
> 
> this is very helpful for my alias file on the Mac.
> 
> function lyxconfigure
> {
>   pushd ~/
>   python -tt "/Applications/LyX.app/Contents/Resources/configure.py"
>   popd
> }

Nice. Thanks for sharing I actually never saw that trick for saving the
directory in a bash function (I've only used pushd and popd
interactively). I am used to saving "$(pwd)" to a variable and then "cd"
back to it. I like your trick instead.

Scott


signature.asc
Description: PGP signature


Re: Question: how to run Reconfigure without GUI

2019-02-05 Thread Dr Eberhard Lisse
Scott,

this is very helpful for my alias file on the Mac.

function lyxconfigure
{
pushd ~/
python -tt "/Applications/LyX.app/Contents/Resources/configure.py"
popd
}

greetings, el

On 15/01/2019 19:02, Scott Kostyshak wrote:
> On Tue, Jan 15, 2019 at 11:27:34AM -0500, Daniel Gómez Martínez wrote:
>> I found out I can start the action I want with "lyx -x reconfigure";
>> however, GUI is triggered at the end.
> 
> You can call the configure script directly. For example,
> 
>   python -tt "/usr/local/share/lyx/configure.py"
> 
> Be sure to run it inside your home directory. On Linux, this is ~/.lyx.
> (note that you can set your home directory at run-time to any directory
> when launching LyX)
> 
> Best,
> 
> Scott
> 




signature.asc
Description: OpenPGP digital signature


Re: Question: how to run Reconfigure without GUI

2019-01-15 Thread Scott Kostyshak
On Tue, Jan 15, 2019 at 11:27:34AM -0500, Daniel Gómez Martínez wrote:
> I found out I can start the action I want with "lyx -x reconfigure";
> however, GUI is triggered at the end.

You can call the configure script directly. For example,

  python -tt "/usr/local/share/lyx/configure.py"

Be sure to run it inside your home directory. On Linux, this is ~/.lyx.
(note that you can set your home directory at run-time to any directory
when launching LyX)

Best,

Scott


signature.asc
Description: PGP signature


Re: Question: how to run Reconfigure without GUI

2019-01-15 Thread Paul A. Rubin

On 1/15/19 11:27 AM, Daniel Gómez Martínez wrote:
I found out I can start the action I want with "lyx -x reconfigure"; 
however, GUI is triggered at the end.


Already tried "lyx -batch -x reconfigure" but lyx ask for an input 
file, which I consider should not happen; I’m considering a bug report.
I tried the same thing, with the same result (even if I surround 
"reconfigure" with quotes), so I agree that it's probably a bug.


Re: Question: how to run Reconfigure without GUI

2019-01-15 Thread Daniel Gómez Martínez
I found out I can start the action I want with "lyx -x reconfigure";
however, GUI is triggered at the end.

Already tried "lyx -batch -x reconfigure" but lyx ask for an input file,
which I consider should not happen; I’m considering a bug report.

Regards,

*Daniel Gómez Martínez | Profesional en ingeniería eléctrica*
*Universidad Nacional de Colombia*
*Automatización industrial, ingeniería de patentes, instalaciones
eléctricas.*
*Sistemas de potencia, control de sistemas.*
Tel: (+57)
*312 824 8697 <3044313476>*


El mar., 15 ene. 2019 a las 9:42, Daniel Gómez Martínez (<
dangome...@gmail.com>) escribió:

> Hello everyone,
>
> I was wondering if there's a way to execute Tools>Reconfigure without GUI
> (i.e. from the terminal) in Linux.
>
> Thanks in advance,
>
>
> *Daniel Gómez Martínez*
> * <3044313476>*
>


Re: Question on header and footer

2018-06-13 Thread Ricardo Berlasso
2018-06-13 16:20 GMT+02:00 Harold Mouras :

> Dears Users,
> thank you for your help regarding a preliminary question on header and
> footer.
> With such a LateX preamble :
>
> \usepackage{fancyhdr}
> \pagestyle{fancy}
> \renewcommand\footrulewidth{0.4pt}
> \fancyfoot[C]{\small Harold Mouras \\ Professor of Neuroscience |
> Editor-in-Chief "Socioaffective Neuroscience & Psychology"
> \\ harold.mou...@u-picardie.fr | +33 (7) 83 62 93 31 \\ University of
> Picardy Jules Verne | Psychology Department | Chemin du Thil | 80 025
> Amiens Cedex 1, France \\ Pathological Neurosciences Laboratory | CURS Rue
> René Laennec | 80054 Amiens Cedex 1, France}
>
> I have want I want but I observe the separation line both in the head and
> the foot of the page. How is that possible to get it only at the foot ?
>

Just add

\renewcommand{\headrulewidth}{0pt}

to the preamble.

Regards,
Ricardo




> Thank you,
> Best,
> Harold


Re: QUESTION & A REQUEST

2017-03-23 Thread David L. Johnson

On 03/23/2017 11:32 AM, Richard Heck wrote:

On 03/22/2017 02:25 PM, Bozdogan, Hamparsum (Ham) wrote:

I have installed LyX on my new PC laptop Win 10 system. This is the
new version 222.When I use the equation editor and the superscript for
minus (-) sign it gives me left-upward arrow. Do you know why this is
caused?

Are you sure you are using superscript? I get that symbol if I use the
script *font* and try to type a minus. How are you getting the superscript?
This problem occurs when the character you put the superscript on is a 
special type.  For example, I often use \mathbb{R}^n and terms like it.  
In LyX, if you type \mathbb  and hit space, or use the menu selection, 
you are put in that blackboard bold mode.  If you don't hit another 
space after the  R to get out of that mode --- there are red corners 
indicating the special mode on-screen --- then you actually are entering 
\mathbb{R^n}, and TeX gets very confused about what that n is.  With the 
tap on the spacebar, the red corners disappear and all works as it 
should.  The same holds for scripted characters like \mathcal{A}  and 
similar things.



--

David L. Johnson
Department of Mathematics
Lehigh University



Re: QUESTION & A REQUEST

2017-03-23 Thread Richard Heck
On 03/22/2017 02:25 PM, Bozdogan, Hamparsum (Ham) wrote:
> I have installed LyX on my new PC laptop Win 10 system. This is the
> new version 222.When I use the equation editor and the superscript for
> minus (-) sign it gives me left-upward arrow. Do you know why this is
> caused?

Are you sure you are using superscript? I get that symbol if I use the
script *font* and try to type a minus. How are you getting the superscript?

Richard



Re: Question

2017-02-14 Thread Oliver Margraf
Concerning the latest release of TeX-Live, I'd recommend an installation
directly from CTAN: https://www.tug.org/texlive/acquire-netinstall.html
The packages from the relevant distro repositories may not be the lastest.

Oliver

Am 14.02.2017 um 20:09 schrieb gordon cooper:
>  tex-live full certainly does have everything, including many 'other
> language'
> packages that you may not need.  If disk space is a problem then it may be
> better to work through the associated repository and delete the unwanted.
> 
> Gordon.
> 
> 
> On 15/02/17 03:24, Maria Gouskova wrote:
>> $ sudo apt install texlive-full
>>
>> it's a hefty install but it will have everything.
>>
>> On Sun, Feb 12, 2017 at 12:43 PM, Dr.Islam El-Masry
>> 
>> wrote:
>>
>>> Please I need help about installing unavailable packages for lyx in
>>> linux.
>>> I cannot find package manager for linux as windows. Please help me to do
>>> that.
>>>
>>>
>>> *Best Regards*
>>>
>>>
>>> *Islam Elmasry*
>>>
>>> *Software Engineer*
>>>


Re: Question

2017-02-14 Thread gordon cooper
 tex-live full certainly does have everything, including many 'other 
language'

packages that you may not need.  If disk space is a problem then it may be
better to work through the associated repository and delete the unwanted.

Gordon.


On 15/02/17 03:24, Maria Gouskova wrote:

$ sudo apt install texlive-full

it's a hefty install but it will have everything.

On Sun, Feb 12, 2017 at 12:43 PM, Dr.Islam El-Masry 
wrote:


Please I need help about installing unavailable packages for lyx in linux.
I cannot find package manager for linux as windows. Please help me to do
that.


*Best Regards*


*Islam Elmasry*

*Software Engineer*





Re: Question

2017-02-14 Thread Paul A. Rubin

On 02/12/2017 12:43 PM, Dr.Islam El-Masry wrote:


Please I need help about installing unavailable packages for lyx in 
linux. I cannot find package manager for linux as windows. Please help 
me to do that.




If you are using TeXLive, open a terminal and run 'man tlmgr'.

Paul




Re: Question

2017-02-14 Thread Alessandro Bandeira Duarte
 

What is the Distro that you are using? 

In case of Debian and
derived 

apt install texlive-full 

In case of Fedora, to install all
Latex: dnf install texlive-* 

Sometimes it it necessary to reconfigure
Lyx, when a package or class was installed manually 

Em 14.02.2017
12:24, Maria Gouskova escreveu: 

> $ sudo apt install texlive-full 
>

> it's a hefty install but it will have everything. 
> 
> On Sun, Feb
12, 2017 at 12:43 PM, Dr.Islam El-Masry 
wrote:
> 
>> Please I need help about installing unavailable packages
for lyx in linux. I cannot find package manager for linux as windows.
Please help me to do that. 
>> 
>>   
>> 
>> BEST REGARDS 
>> 
>>   
>>

>> ISLAM ELMASRY 
>> 
>> SOFTWARE ENGINEER

-- 

Alessandro Bandeira
Duarte
UFRRJ
www.alessandroduarte.com.br
[1]
http://grupofilosofiadamatematica.com.br [2]
(Usa
GNU/Linux)
"Colaborar atrai amigos, competir atrai inimigos
…"
https://github.com/dedekindbr/UFRuralRJ
[3]
alessandrodua...@ekiga.net [4]
https://quitter.se/fregebr [5]
apesar
da crise...

 

Links:
--
[1] http://www.alessandroduarte.com.br
[2]
http://grupofilosofiadamatematica.com.br
[3]
https://github.com/dedekindbr/UFRuralRJ
[4]
http://webmail-seguro.com.br/alessandrodua...@ekiga.net
[5]
https://quitter.se/fregebr


Re: Question

2017-02-14 Thread Maria Gouskova
$ sudo apt install texlive-full

it's a hefty install but it will have everything.

On Sun, Feb 12, 2017 at 12:43 PM, Dr.Islam El-Masry 
wrote:

> Please I need help about installing unavailable packages for lyx in linux.
> I cannot find package manager for linux as windows. Please help me to do
> that.
>
>
> *Best Regards*
>
>
> *Islam Elmasry*
>
> *Software Engineer*
>


Re: Question on installation of Lyx from distro and/or over internet

2016-07-15 Thread Michael Berger



On 07/14/2016 11:56 PM, Jean-Pierre Chrétien wrote:

Le 14/07/2016 07:13, Buenas Noticias a écrit :

Hi Michael:

TeXlive can work because each is in a different folder and you are 
the one you

decide on your route which you work (/usr/local/texlive/2013 or 2016).

I think that if you have installed an earlier version of lyx and 
install later,

the lyx executable will be overwritten and the current work anymore.


You may install a more recent version of lyx and keep both version 
running (the one which comes with your version manager and the one you 
install yourself) by running ./configure with option 
--with-version-suffix.
/usr/bin/lyx will call lyx-2.1 and /usr/local/bin/lyx-2.2.0 will call 
lyx-2.2.
tex2lyx and lyxclient will be suffixed as well, and your local changes 
will lie

in ~/.lyx and ~/.lyx-2.2.0


Thanks Jean-Pierre,
that explains precisely what needed to be done (in case) and how it 
would function!

Your explanation adds to my very limited comprehension of such system.
Michael


Re: Question on installation of Lyx from distro and/or over internet

2016-07-14 Thread Buenas Noticias

Hi Michael:

TeXlive can work because each is in a different folder and you are the 
one you decide on your route which you work (/usr/local/texlive/2013 or 
2016).


I think that if you have installed an earlier version of lyx and install 
later, the lyx executable will be overwritten and the current work anymore.


Regards

Miguel from Spain



On 14/07/16 06:05, Michael Berger wrote:

Mageia5's software manager offers to install LyX 2.1 and if done will
automatically install Texlive 2013 along with it.

I decided to install the  most recent versions available and found LyX
2.2 and Texlive 2016 that could be installed over the internet.

Thinking of possible conflicts I removed Lyx 2.1 and Texlive2013 and
then installed first Texlive2016 (as user) and then LyX 2.2 (as
administrator). Meanwhile things are running as I want them to.

Question:
Would there have been a conflict without prior removal of the old versions?
Or putting it the other way around: Would there be a conflict if
installing these older versions again using Mageia's software manager
and then have both versions installed?

PS: I think there is an option to mark packages as "never install" or
something.

Thanks and cheers,
Michael




Re: Question about development of non-linear writing project

2016-06-08 Thread Scott Kostyshak
On Tue, May 31, 2016 at 09:35:29AM +, Tobias wrote:
> tom  gmx.at> writes:
> 
> > 
> > 
> > > I am worried about this issue too. No traces of this on the webpages and
> > > lyx-outline which was a working fork with the corkboard developed by Rob
> > > Oakes seems dead for a while now. This i a giant improvement for Lyx and 
> > > it
> > > would be really sad if it was abandoned!
> > 
> > +1 for corkboard.
> > 
> > Anyone heard news about the state of this project as of 2015?
> > 
> > 
> 
> Hey there! 
> 
> I’ve also been searching the web for quite a while and could not figure out
> the current status of the project. Is it still planned to be implemented?
> (as was discussed in 2014 for the 2.2 release)
> 
> Does anyone have information about this awesome project?

I don't think anything has changed, i.e. work still needs to be done to
finish it. Rob, did I understand that right?

Scott


signature.asc
Description: PGP signature


Re: Question about development of non-linear writing project

2016-05-31 Thread Tobias
tom  gmx.at> writes:

> 
> 
> > I am worried about this issue too. No traces of this on the webpages and
> > lyx-outline which was a working fork with the corkboard developed by Rob
> > Oakes seems dead for a while now. This i a giant improvement for Lyx and it
> > would be really sad if it was abandoned!
> 
> +1 for corkboard.
> 
> Anyone heard news about the state of this project as of 2015?
> 
> 

Hey there! 

I’ve also been searching the web for quite a while and could not figure out
the current status of the project. Is it still planned to be implemented?
(as was discussed in 2014 for the 2.2 release)

Does anyone have information about this awesome project?

Re: Fwd: Re: Question on creating layouts

2016-04-26 Thread gordon cooper

 You are right! Many thanks Michael.

Gordon.


On 27/04/16 01:33, Michael Berger wrote:

Gordon probably forgot to address the list!?
Michael Berger


 Forwarded Message 
Subject: Re: Question on creating layouts
Date: Tue, 26 Apr 2016 19:27:25 +1200
From: gordon cooper <gordon_coo...@kinect.co.nz>
To: Michael Berger <id...@online.de>



Have successfully done this style of class using Koma Article for a

100+ page technical manual.

Gordon.



On 26/04/16 19:13, Michael Berger wrote:



On 04/26/2016 12:15 AM, Ryan Nicholl wrote:

Hello! I have a problem, I need to create a custom class, but I can't
figure out how to do this using the online documentation. It's rather
confusing to me...

I need several levels of organization:

Title
Chapter
Article
Part
Section
Subsection

All of these need to show up in the table of contents, each is nested
except subsection which does not nest within a section.

A section would look like:

Section -- Foo

in the document, and subsection like:


Section
--. Foo

Could anyone point me towards guide(s) for doing this type of thing?

Thank you,
Ryan P. Nicholl
(678)358-7765
r.p.nich...@gmail.com <mailto:r.p.nich...@gmail.com>


Hi Ryan,
may be this will help:
http://stefaanlippens.net/customLaTeXclassesinLyX

Don't you think one of the KOMA classes offered by LyX can satisfy
your requirements?

Michael Berger












Re: Question on creating layouts

2016-04-26 Thread Richard Heck
On 04/25/2016 06:15 PM, Ryan Nicholl wrote:
> Hello! I have a problem, I need to create a custom class, but I can't
> figure out how to do this using the online documentation. It's rather
> confusing to me...

If you need a completely customized class, then there are two sorts of
things you need to do. The first is at the LaTeX level: You need to
write a class (cls) file, or else at least write a pacakge file (sty)
that provides the additional functionality. I'm afraid there is not much
to say about how to do this other than: You will need to learn a lot of
LaTeX. I personally find the /Guide to LaTeX/ and /LaTeX Companion/
really helpful. Looking at how the basic files that are provided with
LaTeX work is also helpful. In your case, I'd guess that book.cls is
pretty close to what you need. As someone else mentioned, though, the
Koma Script classes are extremely flexible, and it may be that you could
adapt them to your needs. They come with extensive documentation. Look
for the file scrguien.pdf on your computer. Or just look online.

If you can handle the LaTeX part, then you will need a LyX layout file
for the new class. Writing these is less difficult, and you can probably
just adapt the one for book.cls or, if you use Koma Script, for
scrbook.cls. Documentation for this is found in the Customization
manual, chapter 5. People here will be happy to offer help on the LyX
part and, in so far as we can, on the LaTeX part. But not everyone here
is really expert with LaTeX.

Richard

PS It looks as if maybe you are trying to create a collection of
articles. If so, then you might have a look at the combine.cls class.
See these web resources, too:

https://pastcounts.wordpress.com/2010/12/20/how-to-construct-a-collection-of-articles-with-latex/

http://latex-community.org/forum/viewtopic.php?f=4=12030

http://tex.stackexchange.com/questions/110544/book-option-of-the-combine-document-class




Fwd: Re: Question on creating layouts

2016-04-26 Thread Michael Berger

Gordon probably forgot to address the list!?
Michael Berger


 Forwarded Message 
Subject:Re: Question on creating layouts
Date:   Tue, 26 Apr 2016 19:27:25 +1200
From:   gordon cooper <gordon_coo...@kinect.co.nz>
To: Michael Berger <id...@online.de>



Have successfully done this style of class using Koma Article for a

100+ page technical manual.

Gordon.



On 26/04/16 19:13, Michael Berger wrote:



On 04/26/2016 12:15 AM, Ryan Nicholl wrote:

Hello! I have a problem, I need to create a custom class, but I can't
figure out how to do this using the online documentation. It's rather
confusing to me...

I need several levels of organization:

Title
Chapter
Article
Part
Section
Subsection

All of these need to show up in the table of contents, each is nested
except subsection which does not nest within a section.

A section would look like:

Section -- Foo

in the document, and subsection like:


Section
--. Foo

Could anyone point me towards guide(s) for doing this type of thing?

Thank you,
Ryan P. Nicholl
(678)358-7765
r.p.nich...@gmail.com <mailto:r.p.nich...@gmail.com>


Hi Ryan,
may be this will help:
http://stefaanlippens.net/customLaTeXclassesinLyX

Don't you think one of the KOMA classes offered by LyX can satisfy
your requirements?

Michael Berger









Re: Question on creating layouts

2016-04-26 Thread Michael Berger



On 04/26/2016 12:15 AM, Ryan Nicholl wrote:
Hello! I have a problem, I need to create a custom class, but I can't 
figure out how to do this using the online documentation. It's rather 
confusing to me...


I need several levels of organization:

Title
Chapter
Article
Part
Section
Subsection

All of these need to show up in the table of contents, each is nested 
except subsection which does not nest within a section.


A section would look like:

Section -- Foo

in the document, and subsection like:


Section 
--. Foo


Could anyone point me towards guide(s) for doing this type of thing?

Thank you,
Ryan P. Nicholl
(678)358-7765
r.p.nich...@gmail.com 


Hi Ryan,
may be this will help:
http://stefaanlippens.net/customLaTeXclassesinLyX

Don't you think one of the KOMA classes offered by LyX can satisfy your 
requirements?


Michael Berger



Re: Question about row table color & error

2015-12-20 Thread Pedro Neves

On 20-12-2015 21:40, Paul A Rubin wrote:


Don't ask me why, but apparenty \rowcolor does not play well with 
multicolumn table cells. If you leave the first instance of \rowcolor 
alone but change the second instance to \cellcolor{lightgray}, I think 
you get what you want.

Hi Paul:

Yes, I do. It works fine using \cellcolor.

Thanks a lot.

Pedro


Re: Question about row table color & error

2015-12-20 Thread Paul A Rubin

Pedro,

Please reply to (or copy) the list in the future, so that the 
conversation stays visible.


Don't ask me why, but apparenty \rowcolor does not play well with 
multicolumn table cells. If you leave the first instance of \rowcolor 
alone but change the second instance to \cellcolor{lightgray}, I think 
you get what you want. (Cf. http://wiki.lyx.org/LyX/Tables#toc6)


Paul

On 12/20/2015 04:03 PM, Pedro Neves wrote:

On 20-12-2015 20:29, Paul A. Rubin wrote:

Most likely you are inserting the ERT in the designated
row in a place that offends LaTeX's sensibilities. If you can post a
minimal
example, perhaps someone can diagnose it.


Probably...
Here goes a small example, where it works on the first table and fails
on the second.


Cheers:

Pedro




Re: Question about row table color & error

2015-12-20 Thread Paul A . Rubin
I am unable to reproduce the problem here (LyX 2.1.4 on Linux Mint 17.2);
the document compiles correctly (with a gray table row) the first time, with
no error messages. Most likely you are inserting the ERT in the designated
row in a place that offends LaTeX's sensibilities. If you can post a minimal
example, perhaps someone can diagnose it.



Re: Question about development of non-linear writing project

2015-09-19 Thread tom

> I am worried about this issue too. No traces of this on the webpages and
> lyx-outline which was a working fork with the corkboard developed by Rob
> Oakes seems dead for a while now. This i a giant improvement for Lyx and it
> would be really sad if it was abandoned!

+1 for corkboard.

Anyone heard news about the state of this project as of 2015?






Re: Question regarding the correction mode of LyX

2015-03-02 Thread Richard Heck

On 03/02/2015 10:27 AM, Harold Mouras wrote:

Dear LyX users,
I have question regarding the correction mode of Lyx. In a document, I 
used this correction mode and I would like to export my LyX document 
in a word document in which I could see my LyX corrections under word 
corrections ? Is that possible ?


Do you mean change tracking? so LyX shows what you've deleted and added? 
If so, I have no idea if this is possible. It depends entirely upon 
whether whatever LaTeX -- Word program you are using to do the export. 
But I'd suspect that oolatex would support this.


Richard



Re: Question regarding the correction mode of LyX

2015-03-02 Thread Richard Heck

On 03/02/2015 10:27 AM, Harold Mouras wrote:

Dear LyX users,
I have question regarding the correction mode of Lyx. In a document, I 
used this correction mode and I would like to export my LyX document 
in a word document in which I could see my LyX corrections under word 
corrections ? Is that possible ?


Do you mean change tracking? so LyX shows what you've deleted and added? 
If so, I have no idea if this is possible. It depends entirely upon 
whether whatever LaTeX -- Word program you are using to do the export. 
But I'd suspect that oolatex would support this.


Richard



Re: Question regarding the correction mode of LyX

2015-03-02 Thread Richard Heck

On 03/02/2015 10:27 AM, Harold Mouras wrote:

Dear LyX users,
I have question regarding the correction mode of Lyx. In a document, I 
used this correction mode and I would like to export my LyX document 
in a word document in which I could see my LyX corrections under word 
corrections ? Is that possible ?


Do you mean change tracking? so LyX shows what you've deleted and added? 
If so, I have no idea if this is possible. It depends entirely upon 
whether whatever LaTeX --> Word program you are using to do the export. 
But I'd suspect that oolatex would support this.


Richard



Re: Question - all document classes gone

2014-10-27 Thread Scott Kostyshak
On Mon, Oct 27, 2014 at 3:29 PM, Kopf, Sebastian
sebastian.k...@charite.de wrote:
 Dear Scott,

 The advice worked well and document classes are back.

 Thank you very much!

 Sebastian

Good to know.

Best,

Scott


Re: Question - all document classes gone

2014-10-27 Thread Scott Kostyshak
On Mon, Oct 27, 2014 at 3:29 PM, Kopf, Sebastian
sebastian.k...@charite.de wrote:
 Dear Scott,

 The advice worked well and document classes are back.

 Thank you very much!

 Sebastian

Good to know.

Best,

Scott


Re: Question - all document classes gone

2014-10-27 Thread Scott Kostyshak
On Mon, Oct 27, 2014 at 3:29 PM, Kopf, Sebastian
 wrote:
> Dear Scott,
>
> The advice worked well and document classes are back.
>
> Thank you very much!
>
> Sebastian

Good to know.

Best,

Scott


Re: Question - all document classes gone

2014-10-26 Thread Scott Kostyshak
On Sun, Oct 26, 2014 at 3:55 PM, Kopf, Sebastian
sebastian.k...@charite.de wrote:
 Dear all,

 Unfortunately almost all document classes are gone in Lyx including natbib.
 In the past, I installed some additional classes e.g. Springer SV global V3,
 which are gone in LYX too even the files are still available in the folder
 (e.g. usr/local/texlive/texmf-local/tex/latex/local).
 Lyx version 2.12 and MacTex is uptodate including all updates. MacOsX is
 Yosemite. I noticed that „Reconfigure“ is way quicker after this bug came.
 „Texhash“ and $ sudo -H mktexlsr“ did not help either.

 Any idea?

 Thank you very much in advance,

Please take a look here fore an explanation:
http://tex.stackexchange.com/questions/208181/why-did-my-tex-related-gui-program-stop-working-in-mac-os-x-yosemite

Can you please report the bug to Apple (and let us know what they say)?

A workaround is being worked on in LyX and should be out somewhat
soon. The might be an experimental build available if you are willing
to test it.

Best,

Scott


Re: Question - all document classes gone

2014-10-26 Thread Scott Kostyshak
On Sun, Oct 26, 2014 at 3:55 PM, Kopf, Sebastian
sebastian.k...@charite.de wrote:
 Dear all,

 Unfortunately almost all document classes are gone in Lyx including natbib.
 In the past, I installed some additional classes e.g. Springer SV global V3,
 which are gone in LYX too even the files are still available in the folder
 (e.g. usr/local/texlive/texmf-local/tex/latex/local).
 Lyx version 2.12 and MacTex is uptodate including all updates. MacOsX is
 Yosemite. I noticed that „Reconfigure“ is way quicker after this bug came.
 „Texhash“ and $ sudo -H mktexlsr“ did not help either.

 Any idea?

 Thank you very much in advance,

Please take a look here fore an explanation:
http://tex.stackexchange.com/questions/208181/why-did-my-tex-related-gui-program-stop-working-in-mac-os-x-yosemite

Can you please report the bug to Apple (and let us know what they say)?

A workaround is being worked on in LyX and should be out somewhat
soon. The might be an experimental build available if you are willing
to test it.

Best,

Scott


Re: Question - all document classes gone

2014-10-26 Thread Scott Kostyshak
On Sun, Oct 26, 2014 at 3:55 PM, Kopf, Sebastian
 wrote:
> Dear all,
>
> Unfortunately almost all document classes are gone in Lyx including natbib.
> In the past, I installed some additional classes e.g. Springer SV global V3,
> which are gone in LYX too even the files are still available in the folder
> (e.g. usr/local/texlive/texmf-local/tex/latex/local).
> Lyx version 2.12 and MacTex is uptodate including all updates. MacOsX is
> Yosemite. I noticed that „Reconfigure“ is way quicker after this bug came.
> „Texhash“ and "$ sudo -H mktexlsr“ did not help either.
>
> Any idea?
>
> Thank you very much in advance,

Please take a look here fore an explanation:
http://tex.stackexchange.com/questions/208181/why-did-my-tex-related-gui-program-stop-working-in-mac-os-x-yosemite

Can you please report the bug to Apple (and let us know what they say)?

A workaround is being worked on in LyX and should be out somewhat
soon. The might be an experimental build available if you are willing
to test it.

Best,

Scott


Re: Question about development of non-linear writing project

2014-10-17 Thread Ketil Thorgersen

 Richard Heck rgheck at lyx.org writes:
 

  
   half a year ago Iearned about the NonLinear Writing project at the 
   Google Summer School:
  
   http://wiki.lyx.org/GSoC/NonLinearWriting
  
   Anyone any idea what happened to that?
  
  Some work was done. It may find its way into 2.2, but that is not clear yet.


Does anyone have any news on this issue? Lyx-outline that was the origin of
this, developed by Rob Oaks, was already a useable software when this was
picked up by the google summer code project. Now it seems to have died
somehow. I really believe this to be a fantastic enhancement to Lyx and hope
it will be incorporated into the main line software asap!

Ketil



Re: Question about development of non-linear writing project

2014-10-17 Thread Ketil Thorgersen

Richard Heck rgheck at lyx.org writes:

 
 On 01/09/2014 08:13 AM, Jan David Hauck wrote:
  Hi there,
 
  half a year ago Iearned about the NonLinear Writing project at the 
  Google Summer School:
 
  http://wiki.lyx.org/GSoC/NonLinearWriting
 
  Anyone any idea what happened to that?
 
 Some work was done. It may find its way into 2.2, but that is not clear yet.
 
 Richard
 

I am worried about this issue too. No traces of this on the webpages and
lyx-outline which was a working fork with the corkboard developed by Rob
Oakes seems dead for a while now. This i a giant improvement for Lyx and it
would be really sad if it was abandoned!

All the best
Ketil






Re: Question about development of non-linear writing project

2014-10-17 Thread Ketil Thorgersen

 Richard Heck rgheck at lyx.org writes:
 

  
   half a year ago Iearned about the NonLinear Writing project at the 
   Google Summer School:
  
   http://wiki.lyx.org/GSoC/NonLinearWriting
  
   Anyone any idea what happened to that?
  
  Some work was done. It may find its way into 2.2, but that is not clear yet.


Does anyone have any news on this issue? Lyx-outline that was the origin of
this, developed by Rob Oaks, was already a useable software when this was
picked up by the google summer code project. Now it seems to have died
somehow. I really believe this to be a fantastic enhancement to Lyx and hope
it will be incorporated into the main line software asap!

Ketil



Re: Question about development of non-linear writing project

2014-10-17 Thread Ketil Thorgersen

Richard Heck rgheck at lyx.org writes:

 
 On 01/09/2014 08:13 AM, Jan David Hauck wrote:
  Hi there,
 
  half a year ago Iearned about the NonLinear Writing project at the 
  Google Summer School:
 
  http://wiki.lyx.org/GSoC/NonLinearWriting
 
  Anyone any idea what happened to that?
 
 Some work was done. It may find its way into 2.2, but that is not clear yet.
 
 Richard
 

I am worried about this issue too. No traces of this on the webpages and
lyx-outline which was a working fork with the corkboard developed by Rob
Oakes seems dead for a while now. This i a giant improvement for Lyx and it
would be really sad if it was abandoned!

All the best
Ketil






Re: Question about development of non-linear writing project

2014-10-17 Thread Ketil Thorgersen

> Richard Heck  lyx.org> writes:
> 

> > >
> > > half a year ago Iearned about the NonLinear Writing project at the 
> > > Google Summer School:
> > >
> > > http://wiki.lyx.org/GSoC/NonLinearWriting
> > >
> > > Anyone any idea what happened to that?
> > 
> > Some work was done. It may find its way into 2.2, but that is not clear yet.


Does anyone have any news on this issue? Lyx-outline that was the origin of
this, developed by Rob Oaks, was already a useable software when this was
picked up by the google summer code project. Now it seems to have died
somehow. I really believe this to be a fantastic enhancement to Lyx and hope
it will be incorporated into the main line software asap!

Ketil



Re: Question about development of non-linear writing project

2014-10-17 Thread Ketil Thorgersen

Richard Heck  lyx.org> writes:

> 
> On 01/09/2014 08:13 AM, Jan David Hauck wrote:
> > Hi there,
> >
> > half a year ago Iearned about the NonLinear Writing project at the 
> > Google Summer School:
> >
> > http://wiki.lyx.org/GSoC/NonLinearWriting
> >
> > Anyone any idea what happened to that?
> 
> Some work was done. It may find its way into 2.2, but that is not clear yet.
> 
> Richard
> 

I am worried about this issue too. No traces of this on the webpages and
lyx-outline which was a working fork with the corkboard developed by Rob
Oakes seems dead for a while now. This i a giant improvement for Lyx and it
would be really sad if it was abandoned!

All the best
Ketil






Re: Question about Document format failure

2014-08-25 Thread Scott Kostyshak
On Mon, Aug 25, 2014 at 6:46 AM, raymond lam lamwengma...@gmail.com wrote:
 Hi,
 I am using the latest version of Lyx and my uni pc is in version 2.0.3. When
 I am trying to open the Lyx documen I created from my laptop in my
 university pc. a error pop out an said:
 Document format failure:

 C:\Users\myusername\AppData\Local\Temp\lyx_tmpdir.Hp4252
 \Buffer_convertLyxFormat.em4252 is not a readable LyX document.

 Is there anything I can do to solve this problem?
 Thank a lot,
 Weng Lam

Hi Raymond,

It's common to ask your Uni's administrators to upgrade the LyX
version there. 2.0.3 is quite old and if they are responsible they
should have an easy way of doing it.

Failing that, you either use 2.0.8.1 on your laptop (this is what I
would personally do if I used both computers frequently) or you can
use 2.1.x and export to 2.0.x (file  export) whenever you want to use
the file on the uni computer.

Best,

Scott


Re: Question about Document format failure

2014-08-25 Thread Richard Heck

On 08/25/2014 06:46 AM, raymond lam wrote:

Hi,
I am using the latest version of Lyx and my uni pc is in version 
2.0.3. When I am trying to open the Lyx documen I created from my 
laptop in my university pc. a error pop out an said:

Document format failure:
C:\Users\myusername\AppData\Local\Temp\lyx_tmpdir.Hp4252
\Buffer_convertLyxFormat.em4252 is not a readable LyX document.

Is there anything I can do to solve this problem?


You need to export the document to the 2.0.x format: File Export 
2.0.x. LyX 2.0.3 cannot read 2.1.x documents. The 2.1.x format did not 
exist when 2.0.3 was released!


Richard



Re: Question about Document format failure

2014-08-25 Thread Scott Kostyshak
On Mon, Aug 25, 2014 at 6:46 AM, raymond lam lamwengma...@gmail.com wrote:
 Hi,
 I am using the latest version of Lyx and my uni pc is in version 2.0.3. When
 I am trying to open the Lyx documen I created from my laptop in my
 university pc. a error pop out an said:
 Document format failure:

 C:\Users\myusername\AppData\Local\Temp\lyx_tmpdir.Hp4252
 \Buffer_convertLyxFormat.em4252 is not a readable LyX document.

 Is there anything I can do to solve this problem?
 Thank a lot,
 Weng Lam

Hi Raymond,

It's common to ask your Uni's administrators to upgrade the LyX
version there. 2.0.3 is quite old and if they are responsible they
should have an easy way of doing it.

Failing that, you either use 2.0.8.1 on your laptop (this is what I
would personally do if I used both computers frequently) or you can
use 2.1.x and export to 2.0.x (file  export) whenever you want to use
the file on the uni computer.

Best,

Scott


Re: Question about Document format failure

2014-08-25 Thread Richard Heck

On 08/25/2014 06:46 AM, raymond lam wrote:

Hi,
I am using the latest version of Lyx and my uni pc is in version 
2.0.3. When I am trying to open the Lyx documen I created from my 
laptop in my university pc. a error pop out an said:

Document format failure:
C:\Users\myusername\AppData\Local\Temp\lyx_tmpdir.Hp4252
\Buffer_convertLyxFormat.em4252 is not a readable LyX document.

Is there anything I can do to solve this problem?


You need to export the document to the 2.0.x format: File Export 
2.0.x. LyX 2.0.3 cannot read 2.1.x documents. The 2.1.x format did not 
exist when 2.0.3 was released!


Richard



Re: Question about Document format failure

2014-08-25 Thread Scott Kostyshak
On Mon, Aug 25, 2014 at 6:46 AM, raymond lam  wrote:
> Hi,
> I am using the latest version of Lyx and my uni pc is in version 2.0.3. When
> I am trying to open the Lyx documen I created from my laptop in my
> university pc. a error pop out an said:
> Document format failure:
>
> C:\Users\myusername\AppData\Local\Temp\lyx_tmpdir.Hp4252
> \Buffer_convertLyxFormat.em4252 is not a readable LyX document.
>
> Is there anything I can do to solve this problem?
> Thank a lot,
> Weng Lam

Hi Raymond,

It's common to ask your Uni's administrators to upgrade the LyX
version there. 2.0.3 is quite old and if they are responsible they
should have an easy way of doing it.

Failing that, you either use 2.0.8.1 on your laptop (this is what I
would personally do if I used both computers frequently) or you can
use 2.1.x and export to 2.0.x (file > export) whenever you want to use
the file on the uni computer.

Best,

Scott


Re: Question about Document format failure

2014-08-25 Thread Richard Heck

On 08/25/2014 06:46 AM, raymond lam wrote:

Hi,
I am using the latest version of Lyx and my uni pc is in version 
2.0.3. When I am trying to open the Lyx documen I created from my 
laptop in my university pc. a error pop out an said:

Document format failure:
C:\Users\myusername\AppData\Local\Temp\lyx_tmpdir.Hp4252
\Buffer_convertLyxFormat.em4252 is not a readable LyX document.

Is there anything I can do to solve this problem?


You need to export the document to the 2.0.x format: File> Export> 
2.0.x. LyX 2.0.3 cannot read 2.1.x documents. The 2.1.x format did not 
exist when 2.0.3 was released!


Richard



Re: Question about development of non-linear writing project

2014-03-10 Thread menelic
Richard Heck rgheck at lyx.org writes:

 
 On 01/09/2014 08:13 AM, Jan David Hauck wrote:
  Hi there,
 
  half a year ago Iearned about the NonLinear Writing project at the 
  Google Summer School:
 
  http://wiki.lyx.org/GSoC/NonLinearWriting
 
  Anyone any idea what happened to that?
 
 Some work was done. It may find its way into 2.2, but that is not clear yet.
 
 Richard
 
 

This feature is of great interest o me as well, I am waiting for it for
quite a while and have tried to check the progress of the GSOC project and
any eventual follow up, but have not found any info after the (abortive?)
GSOC project.

I also could not find it in the road map. Richard, could you point me to a
page where I can find out about the current status? Also, a guesstimate as
to when 2.2 would be very helpful. Thanks a lot.

M 



Re: Question about development of non-linear writing project

2014-03-10 Thread Steve Litt
On Tue, 4 Mar 2014 09:35:46 + (UTC)
menelic mene...@gmail.com wrote:

 Richard Heck rgheck at lyx.org writes:
 
  
  On 01/09/2014 08:13 AM, Jan David Hauck wrote:
   Hi there,
  
   half a year ago Iearned about the NonLinear Writing project at
   the Google Summer School:
  
   http://wiki.lyx.org/GSoC/NonLinearWriting
  
   Anyone any idea what happened to that?
  
  Some work was done. It may find its way into 2.2, but that is not
  clear yet.
  
  Richard
  
  
 
 This feature is of great interest o me as well, I am waiting for it
 for quite a while and have tried to check the progress of the GSOC
 project and any eventual follow up, but have not found any info after
 the (abortive?) GSOC project.
 
 I also could not find it in the road map. Richard, could you point me
 to a page where I can find out about the current status? Also, a
 guesstimate as to when 2.2 would be very helpful. Thanks a lot.

When you make the outliner module, please keep in mind that if an
outline is not lightning fast for the touch-typist, it's worse than
useless, because the author forgets the point he was trying to make
while reaching for the mouse or typing an arcane and difficult key
combination. An outliner must be faster than the author's thought
processes, and must take zero thought to operate. Otherwise, it gets in
the way.

I'm the originator of VimOutliner, and if anyone has any questions
about outlines, I'll be glad to share what I've learned.

Thanks,

SteveT

Steve Litt*  http://www.troubleshooters.com/
Troubleshooting Training  *  Human Performance


Re: Question about development of non-linear writing project

2014-03-10 Thread menelic
Richard Heck rgheck at lyx.org writes:

 
 On 01/09/2014 08:13 AM, Jan David Hauck wrote:
  Hi there,
 
  half a year ago Iearned about the NonLinear Writing project at the 
  Google Summer School:
 
  http://wiki.lyx.org/GSoC/NonLinearWriting
 
  Anyone any idea what happened to that?
 
 Some work was done. It may find its way into 2.2, but that is not clear yet.
 
 Richard
 
 

This feature is of great interest o me as well, I am waiting for it for
quite a while and have tried to check the progress of the GSOC project and
any eventual follow up, but have not found any info after the (abortive?)
GSOC project.

I also could not find it in the road map. Richard, could you point me to a
page where I can find out about the current status? Also, a guesstimate as
to when 2.2 would be very helpful. Thanks a lot.

M 



Re: Question about development of non-linear writing project

2014-03-10 Thread Steve Litt
On Tue, 4 Mar 2014 09:35:46 + (UTC)
menelic mene...@gmail.com wrote:

 Richard Heck rgheck at lyx.org writes:
 
  
  On 01/09/2014 08:13 AM, Jan David Hauck wrote:
   Hi there,
  
   half a year ago Iearned about the NonLinear Writing project at
   the Google Summer School:
  
   http://wiki.lyx.org/GSoC/NonLinearWriting
  
   Anyone any idea what happened to that?
  
  Some work was done. It may find its way into 2.2, but that is not
  clear yet.
  
  Richard
  
  
 
 This feature is of great interest o me as well, I am waiting for it
 for quite a while and have tried to check the progress of the GSOC
 project and any eventual follow up, but have not found any info after
 the (abortive?) GSOC project.
 
 I also could not find it in the road map. Richard, could you point me
 to a page where I can find out about the current status? Also, a
 guesstimate as to when 2.2 would be very helpful. Thanks a lot.

When you make the outliner module, please keep in mind that if an
outline is not lightning fast for the touch-typist, it's worse than
useless, because the author forgets the point he was trying to make
while reaching for the mouse or typing an arcane and difficult key
combination. An outliner must be faster than the author's thought
processes, and must take zero thought to operate. Otherwise, it gets in
the way.

I'm the originator of VimOutliner, and if anyone has any questions
about outlines, I'll be glad to share what I've learned.

Thanks,

SteveT

Steve Litt*  http://www.troubleshooters.com/
Troubleshooting Training  *  Human Performance


Re: Question about development of non-linear writing project

2014-03-10 Thread menelic
Richard Heck  lyx.org> writes:

> 
> On 01/09/2014 08:13 AM, Jan David Hauck wrote:
> > Hi there,
> >
> > half a year ago Iearned about the NonLinear Writing project at the 
> > Google Summer School:
> >
> > http://wiki.lyx.org/GSoC/NonLinearWriting
> >
> > Anyone any idea what happened to that?
> 
> Some work was done. It may find its way into 2.2, but that is not clear yet.
> 
> Richard
> 
> 

This feature is of great interest o me as well, I am waiting for it for
quite a while and have tried to check the progress of the GSOC project and
any eventual follow up, but have not found any info after the (abortive?)
GSOC project.

I also could not find it in the road map. Richard, could you point me to a
page where I can find out about the current status? Also, a guesstimate as
to when 2.2 would be very helpful. Thanks a lot.

M 



Re: Question about development of non-linear writing project

2014-03-10 Thread Steve Litt
On Tue, 4 Mar 2014 09:35:46 + (UTC)
menelic  wrote:

> Richard Heck  lyx.org> writes:
> 
> > 
> > On 01/09/2014 08:13 AM, Jan David Hauck wrote:
> > > Hi there,
> > >
> > > half a year ago Iearned about the NonLinear Writing project at
> > > the Google Summer School:
> > >
> > > http://wiki.lyx.org/GSoC/NonLinearWriting
> > >
> > > Anyone any idea what happened to that?
> > 
> > Some work was done. It may find its way into 2.2, but that is not
> > clear yet.
> > 
> > Richard
> > 
> > 
> 
> This feature is of great interest o me as well, I am waiting for it
> for quite a while and have tried to check the progress of the GSOC
> project and any eventual follow up, but have not found any info after
> the (abortive?) GSOC project.
> 
> I also could not find it in the road map. Richard, could you point me
> to a page where I can find out about the current status? Also, a
> guesstimate as to when 2.2 would be very helpful. Thanks a lot.

When you make the outliner module, please keep in mind that if an
outline is not lightning fast for the touch-typist, it's worse than
useless, because the author forgets the point he was trying to make
while reaching for the mouse or typing an arcane and difficult key
combination. An outliner must be faster than the author's thought
processes, and must take zero thought to operate. Otherwise, it gets in
the way.

I'm the originator of VimOutliner, and if anyone has any questions
about outlines, I'll be glad to share what I've learned.

Thanks,

SteveT

Steve Litt*  http://www.troubleshooters.com/
Troubleshooting Training  *  Human Performance


Re: Question about development of non-linear writing project

2014-01-09 Thread Richard Heck

On 01/09/2014 08:13 AM, Jan David Hauck wrote:

Hi there,

half a year ago Iearned about the NonLinear Writing project at the 
Google Summer School:


http://wiki.lyx.org/GSoC/NonLinearWriting

Anyone any idea what happened to that?


Some work was done. It may find its way into 2.2, but that is not clear yet.

Richard



Re: Question about development of non-linear writing project

2014-01-09 Thread Richard Heck

On 01/09/2014 08:13 AM, Jan David Hauck wrote:

Hi there,

half a year ago Iearned about the NonLinear Writing project at the 
Google Summer School:


http://wiki.lyx.org/GSoC/NonLinearWriting

Anyone any idea what happened to that?


Some work was done. It may find its way into 2.2, but that is not clear yet.

Richard



Re: Question about development of non-linear writing project

2014-01-09 Thread Richard Heck

On 01/09/2014 08:13 AM, Jan David Hauck wrote:

Hi there,

half a year ago Iearned about the NonLinear Writing project at the 
Google Summer School:


http://wiki.lyx.org/GSoC/NonLinearWriting

Anyone any idea what happened to that?


Some work was done. It may find its way into 2.2, but that is not clear yet.

Richard



Re: Question Lyx

2013-10-17 Thread Liviu Andronic
Dear Erik,
Please address your questions to lyx-users (cc'ed).

Could you provide a _minimal_ LyX file that exhibits the issue that
you're having? (See http://wiki.lyx.org/FAQ/MinimalExample .)

Regards,
Liviu

On Thu, Oct 17, 2013 at 7:19 PM, Erik Vázquez k_i_...@hotmail.com wrote:
 Hi. I have one problem. Lyx is perfect but when I compile. I keep getting
 this error:

 : LaTeX Error: File 'esint.sty' not found., and below it says: ***
 (cannot \read from terminal in nonstop modes)

 My problem is when I try to insert the integral simbol

  Can you help me please?

 Thanks.



-- 
Do you know how to read?
http://www.alienetworks.com/srtest.cfm
http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
Do you know how to write?
http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail


Re: Question Lyx

2013-10-17 Thread Liviu Andronic
Dear Erik,
Please address your questions to lyx-users (cc'ed).

Could you provide a _minimal_ LyX file that exhibits the issue that
you're having? (See http://wiki.lyx.org/FAQ/MinimalExample .)

Regards,
Liviu

On Thu, Oct 17, 2013 at 7:19 PM, Erik Vázquez k_i_...@hotmail.com wrote:
 Hi. I have one problem. Lyx is perfect but when I compile. I keep getting
 this error:

 : LaTeX Error: File 'esint.sty' not found., and below it says: ***
 (cannot \read from terminal in nonstop modes)

 My problem is when I try to insert the integral simbol

  Can you help me please?

 Thanks.



-- 
Do you know how to read?
http://www.alienetworks.com/srtest.cfm
http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
Do you know how to write?
http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail


Re: Question Lyx

2013-10-17 Thread Liviu Andronic
Dear Erik,
Please address your questions to lyx-users (cc'ed).

Could you provide a _minimal_ LyX file that exhibits the issue that
you're having? (See http://wiki.lyx.org/FAQ/MinimalExample .)

Regards,
Liviu

On Thu, Oct 17, 2013 at 7:19 PM, Erik Vázquez  wrote:
> Hi. I have one problem. Lyx is perfect but when I compile. I keep getting
> this error:
>
> : "LaTeX Error: File 'esint.sty' not found.", and below it says: "***
> (cannot \read from terminal in nonstop modes)"
>
> My problem is when I try to insert the integral simbol
>
>  Can you help me please?
>
> Thanks.



-- 
Do you know how to read?
http://www.alienetworks.com/srtest.cfm
http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
Do you know how to write?
http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail


Re: Question concerning lyx pdf documents and German Umlaute

2013-09-08 Thread Guenter Milde
On 2013-09-08, Matthias Jobst wrote:

 [-- Type: text/plain, Encoding: quoted-printable --]

 Hello!

 I have got a question concerning the font encoding in lyx.

 I want to create a German document, that is searchable. Unfortunenatly
 it is not possible to search for words like Bücher oder Dänemark.
 If I want to copy the word from the document into a text editor, all
 German umlaute are broken. (Bucher or Danemark)

This is strange. It works very nice here with the LyX default (T1) font
encoding. Maybe you use the OT1 font encoding.

...

 I also tried some of the font encoding options like utf8 or utf8x, but
 that doesn't work

These are not *font* encodings but the encoding of the LaTeX input (the
*.tex source file).

 Does anybody know a solution to this problem?

Try to figure out how to set the font encoding to T1 (e.g. in
ToolsConfiguration).

Günter



Re: Question concerning lyx pdf documents and German Umlaute

2013-09-08 Thread Marcus Glöder

Am 08.09.2013 18:08, schrieb Matthias Jobst:

Hello!

I have got a question concerning the font encoding in lyx.


Hello Matthias,

I have download your document. If you go to Dokument – Einstellungen – 
Sprache – Kodierung (in English: Document – Preferences – Language – 
Encoding) and click at »Voreinstellung der gewählten Sprache« (in 
English: Default of the selected language), than it works.



Does anybody know a solution to this problem?


I hope, that is helpfully.



Matthias



Best regards
Marcus

--
PMs:  m.gloe...@gmx.de


  1   2   3   4   5   6   7   8   9   10   >