Patch for Export Bug

2023-12-20 Thread Richard Kimberly Heck
There's a patch for a nasty export bug here:     https://www.lyx.org/trac/ticket/13017 I thought it best not to commit it yet, but I'd really like to solve this before 2.4.0. I think we'll get reports if we don't. From a testing point of view, I'm less interested in whether it fixes that bug

Re: [PATCH] Re: New warning (or at least I only noticed it now)

2023-11-10 Thread Jean-Marc Lasgouttes
Le 10/11/2023 à 12:16, Pavel Sanda a écrit : On Fri, Nov 10, 2023 at 10:55:56AM +0100, Jean-Marc Lasgouttes wrote: PS: I have to admit that I have a kink with weird uses of preprocessor macros: https://gitlab.inria.fr/lasgoutt/parameters Funny, I found # and ## operators very handy for

Re: [PATCH] Re: New warning (or at least I only noticed it now)

2023-11-10 Thread Pavel Sanda
On Fri, Nov 10, 2023 at 10:55:56AM +0100, Jean-Marc Lasgouttes wrote: > PS: I have to admit that I have a kink with weird uses of preprocessor > macros: https://gitlab.inria.fr/lasgoutt/parameters Funny, I found # and ## operators very handy for writing commandline parameter parsing via simple

Re: [PATCH] Re: New warning (or at least I only noticed it now)

2023-11-10 Thread Jean-Marc Lasgouttes
Le 09/11/2023 à 21:54, José Matos a écrit : On Thu, 2023-11-09 at 20:34 +0100, Pavel Sanda wrote: Looks reasonable. Pavel I agree. After so many dark spells I fear for Jean-Marc's sanity. :-D You mean that I should not rewrite parts of LyX in preprocessor macros as I intended to? JMarc

Re: [PATCH] Re: New warning (or at least I only noticed it now)

2023-11-09 Thread José Matos
On Thu, 2023-11-09 at 20:34 +0100, Pavel Sanda wrote: > Looks reasonable. Pavel I agree. After so many dark spells I fear for Jean-Marc's sanity. :-D -- José Abílio -- lyx-devel mailing list lyx-devel@lists.lyx.org http://lists.lyx.org/mailman/listinfo/lyx-devel

Re: [PATCH] Re: New warning (or at least I only noticed it now)

2023-11-09 Thread Pavel Sanda
On Thu, Nov 09, 2023 at 06:21:03PM +0100, Jean-Marc Lasgouttes wrote: > Thoughts? Looks reasonable. Pavel -- lyx-devel mailing list lyx-devel@lists.lyx.org http://lists.lyx.org/mailman/listinfo/lyx-devel

Re: [PATCH] Re: New warning (or at least I only noticed it now)

2023-11-09 Thread Jean-Marc Lasgouttes
that they will not care anymore (despite of ongoing grivance from other projects). So the most appropriate response from our side seems to be just disable this warning... Here is a new version of the patch that * is more readable in the sources (+1), * handles the three functions that cause trouble (+1), * can

Re: [PATCH] Re: New warning (or at least I only noticed it now)

2023-11-08 Thread Pavel Sanda
On Wed, Nov 08, 2023 at 06:09:44PM +0100, Jean-Marc Lasgouttes wrote: > Le 22/11/2022 ?? 03:04, Pavel Sanda a écrit : > >On Tue, Nov 22, 2022 at 01:47:26AM +, José Matos wrote: > >>On Mon, 2022-11-21 at 23:08 +0100, Pavel Sanda wrote: > >>>Can you try whether the attached changes anything? P >

[PATCH] Re: New warning (or at least I only noticed it now)

2023-11-08 Thread Jean-Marc Lasgouttes
: Wed, 8 Nov 2023 18:07:14 +0100 Subject: [PATCH] Avoid dangling-reference warning with theFontMetrics() --- src/frontends/FontMetrics.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/src/frontends/FontMetrics.h b/src/frontends/FontMetrics.h index f3952706ae..1647552def 100644

Re: [PATCH] Always use \newcommandx instead of \def

2023-10-19 Thread Enrico Forestieri
On Wed, Oct 18, 2023 at 02:05:51AM +, Isaac Oscar Gariano wrote: So sorry about that, I should really have looked at the issue tracker. But yes, it will probably break lots of pre-existing documents. So I've uploaded a new version of my patch that is backwards compatible. I've added

Re: [PATCH] Always use \newcommandx instead of \def

2023-10-18 Thread Richard Kimberly Heck
the command, you can just put \let\mycommand=\undefined in your LaTeX preamble, although with unicode-math I often have to put this in an \AtBeginDocument). This very simple patch just makes LyX always output \newcommandx instead of \def for math macros. Unfortunately, this means if you want to have

Re: [PATCH] Always use \newcommandx instead of \def

2023-10-18 Thread Scott Kostyshak
On Wed, Oct 18, 2023 at 03:35:33PM +, Isaac Oscar Gariano wrote: > The new.lyx and renew.lyx files won't load if you haven't applied my patch to > the master branch and recompiled lyx. > > The def.lyx file should however not require my patch (at least on the version >

Re: [PATCH] Always use \newcommandx instead of \def

2023-10-18 Thread Isaac Oscar Gariano
The new.lyx and renew.lyx files won't load if you haven't applied my patch to the master branch and recompiled lyx. The def.lyx file should however not require my patch (at least on the version of master I had checked out) And if you're happy to handle the tests, that would be great. I should

Re: [PATCH] Always use \newcommandx instead of \def

2023-10-18 Thread Scott Kostyshak
On Wed, Oct 18, 2023 at 02:05:51AM +, Isaac Oscar Gariano wrote: > I've attached three example lyx files that try and redefine the \section​ > command; the only difference between def.lyx​ and new.lyx​ is whether the > checkbox is checked or not; renew.lyx​ shows how to suecesfully do the

Re: [PATCH] Always use \newcommandx instead of \def

2023-10-17 Thread Isaac Oscar Gariano
So sorry about that, I should really have looked at the issue tracker. But yes, it will probably break lots of pre-existing documents. So I've uploaded a new version of my patch that is backwards compatible. I've added a checkbox at the bottom of Document Settings -> Math Options to always

Re: [PATCH] Always use \newcommandx instead of \def

2023-10-17 Thread Enrico Forestieri
=\undefined in your LaTeX preamble, although with unicode-math I often have to put this in an \AtBeginDocument). This very simple patch just makes LyX always output \newcommandx instead of \def for math macros. Unfortunately, this means if you want to have any math macros you'll always need

Re: [PATCH] Always use \newcommandx instead of \def

2023-10-17 Thread Enrico Forestieri
have to put this in an \AtBeginDocument). This very simple patch just makes LyX always output \newcommandx instead of \def for math macros. Unfortunately, this means if you want to have any math macros you'll always need the xargs package (but it's a small package release all they way back

Re: [PATCH] Always use \newcommandx instead of \def

2023-10-17 Thread Richard Kimberly Heck
, and this gives a helpful error message if the command is already defined. (if you really do want to override the command, you can just put \let\mycommand=\undefined in your LaTeX preamble, although with unicode-math I often have to put this in an \AtBeginDocument). This very simple patch just

Re: [PATCH] Always use \newcommandx instead of \def

2023-10-17 Thread Scott Kostyshak
n an \AtBeginDocument). > > This very simple patch just makes LyX always output \newcommandx instead of > \def for math macros. > Unfortunately, this means if you want to have any math macros you'll always > need the xargs package (but it's a small package release all they

[PATCH] Always use \newcommandx instead of \def

2023-10-16 Thread Isaac Oscar Gariano
if the command is already defined. (if you really do want to override the command, you can just put \let\mycommand=\undefined in your LaTeX preamble, although with unicode-math I often have to put this in an \AtBeginDocument). This very simple patch just makes LyX always output \newcommandx instead

Re: [PATCH] Added some options to configure.py allowing for faster partial-reconfigures.

2023-10-15 Thread Isaac Oscar Gariano
Thanks for looking at my patch! I'm happy to add a simple "Refresh" button to the "Document Settings -> Module" window if you think this would be a good idea? — Isaac Oscar Gariano​ -- lyx-devel mailing list lyx-devel@lists.lyx.org http://lists.lyx.org/mailman/listinfo/lyx-devel

Re: [PATCH] Added some options to configure.py allowing for faster partial-reconfigures.

2023-10-11 Thread Pavel Sanda
On Wed, Oct 11, 2023 at 04:17:30PM +0200, Thibaut Cuvelier wrote: > On Wed, 11 Oct 2023 at 11:03, Pavel Sanda wrote: > > > On Tue, Oct 10, 2023 at 02:38:01PM +0200, Jürgen Spitzmüller wrote: > > >> 4) *lot* of latex packages > > > All we query is needed for something for sure. > > > > Let's

Re: [PATCH] Added some options to configure.py allowing for faster partial-reconfigures.

2023-10-11 Thread Thibaut Cuvelier
On Wed, 11 Oct 2023 at 11:03, Pavel Sanda wrote: > On Tue, Oct 10, 2023 at 02:38:01PM +0200, Jürgen Spitzmüller wrote: > >> 4) *lot* of latex packages > > All we query is needed for something for sure. > > Let's stick with point 4. > > By *needed* you mean that we have e.g. some specific feature

Re: [PATCH] Added some options to configure.py allowing for faster partial-reconfigures.

2023-10-11 Thread Pavel Sanda
On Tue, Oct 10, 2023 at 02:38:01PM +0200, Jürgen Spitzmüller wrote: >> 4) *lot* of latex packages > All we query is needed for something for sure. Let's stick with point 4. By *needed* you mean that we have e.g. some specific feature requiring it for proper typesetting (I agree with that) or

Re: [PATCH] Added some options to configure.py allowing for faster partial-reconfigures.

2023-10-10 Thread Jürgen Spitzmüller
Am Dienstag, dem 10.10.2023 um 14:27 +0200 schrieb Pavel Sanda: > As I see we do: > 2) Indexing cls/sty/bst/bib/bbx/cbx (do we need those for something?) Yes, (bib)latex settings for bst/bib/bbx/cbx. Package/class availability for the others. > 6) checking fonts (do we actually use those for

Re: [PATCH] Added some options to configure.py allowing for faster partial-reconfigures.

2023-10-10 Thread Pavel Sanda
On Tue, Oct 10, 2023 at 10:31:12AM +0100, José Matos wrote: > OTHO IMHO (I am missing other acronyms to add) this does not need to be > accessible through the GUI. Most of the time you want the default > procedure, it is slow but it does what you want. We might take this thread as an oportunity

Re: [PATCH] Added some options to configure.py allowing for faster partial-reconfigures.

2023-10-10 Thread Jürgen Spitzmüller
Am Dienstag, dem 10.10.2023 um 10:31 +0100 schrieb José Matos: > The use of these options inside LyX should depend on the actual > context. That would mean that in your particular case the option to > only rebuild the modules part should be in the modules related > interface. Yes, and ideally it

Re: [PATCH] Added some options to configure.py allowing for faster partial-reconfigures.

2023-10-10 Thread José Matos
On Mon, 2023-10-09 at 07:36 +, Isaac Oscar Gariano wrote: > > It would be nice to be able to select these options from the GUI > > when > > you click the reconfigure button, so if someone familiar with the > > GUI > > code can do that, it would be very helpfull! > > > > > > — Isaac Oscar

[PATCH] Added some options to configure.py allowing for faster partial-reconfigures.

2023-10-09 Thread Isaac Oscar Gariano
Hey, So it was annoying me that I every time I added a new module or layout file, I have to reconfigure lyx, but this is quite slow. On my (admittedly slow) system it takes about 40 seconds. I noticed the configure.py script itself has some command line options to make it faster, so when I run

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-26 Thread Thibaut Cuvelier
On Sat, 22 Jul 2023 at 00:00, Jean-Marc Lasgouttes wrote: > Le 18/07/2023 à 15:11, Jean-Marc Lasgouttes a écrit : > > Hello, > > > > In the attached patch, I am able to support the mod/bmod/pmod/pod macros > > by just defining them in lib/symbols with an argument. &

Re: [PATCH] Making Update::SinglePar work inside insets

2023-07-23 Thread Jean-Marc Lasgouttes
Le 23/07/2023 à 02:40, Richard Kimberly Heck a écrit : I was hoping to go to RC1 pretty soon, so it might not be the right time for that. We might go ahead and branch 2.5.0dev once RC1 is out. Fine with me. JMarc -- lyx-devel mailing list lyx-devel@lists.lyx.org

Re: [PATCH] Making Update::SinglePar work inside insets

2023-07-22 Thread Richard Kimberly Heck
On 7/22/23 18:01, Jean-Marc Lasgouttes wrote: Le 18/07/2023 à 20:50, Jean-Marc Lasgouttes a écrit : Le 17/07/2023 à 23:19, Jean-Marc Lasgouttes a écrit : It worked well until one tries to use mathed %-] Updated patch below is better in this respect. Err, I posted the same patch twice! Here

Re: [PATCH] Making Update::SinglePar work inside insets

2023-07-22 Thread Jean-Marc Lasgouttes
Le 18/07/2023 à 20:50, Jean-Marc Lasgouttes a écrit : Le 17/07/2023 à 23:19, Jean-Marc Lasgouttes a écrit : It worked well until one tries to use mathed %-] Updated patch below is better in this respect. Err, I posted the same patch twice! Here is the updated one. The patch is now attached

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-21 Thread Jean-Marc Lasgouttes
Le 18/07/2023 à 15:11, Jean-Marc Lasgouttes a écrit : Hello, In the attached patch, I am able to support the mod/bmod/pmod/pod macros by just defining them in lib/symbols with an argument. The result is a more pleasing editing process (IMO) and a simplification of the documentation

Re: [PATCH] Making Update::SinglePar work inside insets

2023-07-18 Thread Jean-Marc Lasgouttes
Le 17/07/2023 à 23:19, Jean-Marc Lasgouttes a écrit : It worked well until one tries to use mathed %-] Updated patch below is better in this respect. Err, I posted the same patch twice! Here is the updated one. JMarc From f17ff420bfa7c2390776023c566c4974ea612f28 Mon Sep 17 00:00:00 2001

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-18 Thread Thibaut Cuvelier
On Tue, 18 Jul 2023 at 16:55, Jean-Marc Lasgouttes wrote: > Le 18/07/2023 à 16:47, Thibaut Cuvelier a écrit : > > On Tue, 18 Jul 2023 at 16:04, Jean-Marc Lasgouttes > > wrote: > > > > Le 18/07/2023 à 15:54, Thibaut Cuvelier a écrit : > > > Also, we already

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-18 Thread Jean-Marc Lasgouttes
Le 18/07/2023 à 16:47, Thibaut Cuvelier a écrit : On Tue, 18 Jul 2023 at 16:04, Jean-Marc Lasgouttes > wrote: Le 18/07/2023 à 15:54, Thibaut Cuvelier a écrit : > Also, we already have macros with parameters: >

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-18 Thread Thibaut Cuvelier
On Tue, 18 Jul 2023 at 16:04, Jean-Marc Lasgouttes wrote: > Le 18/07/2023 à 15:54, Thibaut Cuvelier a écrit : > > Also, we already have macros with parameters: > > https://github.com/cburschka/lyx/blob/master/lib/symbols#L1223 > >

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-18 Thread Jean-Marc Lasgouttes
Le 18/07/2023 à 15:54, Thibaut Cuvelier a écrit : Also, we already have macros with parameters: https://github.com/cburschka/lyx/blob/master/lib/symbols#L1223 Indeed. I'm the one who pushed that, but it did not impress me at the

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-18 Thread Thibaut Cuvelier
On Tue, 18 Jul 2023 at 15:45, Jean-Marc Lasgouttes wrote: > Le 18/07/2023 à 15:36, Thibaut Cuvelier a écrit : > > For the symbols in your patch, yes, export is currently broken, but it's > > fixable. > > I think it would still be fixable in the future with macros,

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-18 Thread Jean-Marc Lasgouttes
Le 18/07/2023 à 15:36, Thibaut Cuvelier a écrit : For the symbols in your patch, yes, export is currently broken, but it's fixable. I think it would still be fixable in the future with macros, as I did in https://github.com/cburschka/lyx/blob/master/lib/symbols#L1128 <https://github.

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-18 Thread Thibaut Cuvelier
On Tue, 18 Jul 2023 at 15:11, Jean-Marc Lasgouttes wrote: > Hello, > > In the attached patch, I am able to support the mod/bmod/pmod/pod macros > by just defining them in lib/symbols with an argument. > > The result is a more pleasing editing process (IMO) an

[PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-18 Thread Jean-Marc Lasgouttes
Hello, In the attached patch, I am able to support the mod/bmod/pmod/pod macros by just defining them in lib/symbols with an argument. The result is a more pleasing editing process (IMO) and a simplification of the documentation. Since this use of \def is not documented, I have to ask

Re: [PATCH] Making Update::SinglePar work inside insets

2023-07-17 Thread Scott Kostyshak
On Mon, Jul 17, 2023 at 11:19:22PM +0200, Jean-Marc Lasgouttes wrote: > What I cannot fix easily, though is that if I insert characters just before > the branch (in same paragraph), things are ugly again because the whole > branch has to be typeset again and again. Indeed, that is still slow. In

Re: [PATCH] Making Update::SinglePar work inside insets

2023-07-17 Thread Jean-Marc Lasgouttes
Le 17/07/2023 à 18:00, Scott Kostyshak a écrit : On Mon, Jul 17, 2023 at 04:03:32PM +0200, Jean-Marc Lasgouttes wrote: Hello, This patch tries to address #12297, where typing in the big branch in the attached big-inset.23.lyx file is painfully slow. Works well! I just did some brief testing

Re: [PATCH] Making Update::SinglePar work inside insets

2023-07-17 Thread Scott Kostyshak
On Mon, Jul 17, 2023 at 04:03:32PM +0200, Jean-Marc Lasgouttes wrote: > Hello, > > This patch tries to address #12297, where typing in the big branch in the > attached big-inset.23.lyx file is painfully slow. > > To this end, I made BufferView::singleParUpdate, and the

I think I'm overthinking efficienty of a patch (#12781)

2023-05-24 Thread Scott Kostyshak
I'm reviewing the patch at this ticket: https://www.lyx.org/trac/ticket/12781 I like its feature and plan to commit it unless there's an objection. See the screenshot attached to the ticket to quickly understand the feature. I had a question there about efficiency. Basically, for each

Re: [PATCH] "Here Applies" module

2023-05-05 Thread Scott Kostyshak
On Fri, May 05, 2023 at 12:18:32PM -0400, Richard Kimberly Heck wrote: > On 5/2/23 11:38, madmurphy wrote: > > The hereapplies LaTeX package has > > stably been part of the CTAN repository for a while now, and a LyX > > module > >

Re: [PATCH] "Here Applies" module

2023-05-05 Thread Richard Kimberly Heck
On 5/2/23 11:38, madmurphy wrote: The hereapplies LaTeX package has stably been part of the CTAN repository for a while now, and a LyX module is shipped with it. Will it be possible

Re: [PATCH] "Here Applies" module

2023-05-02 Thread madmurphy
> > On Tue, Aug 30, 2022 at 12:07 PM Pavel Sanda wrote: > >> On Tue, Aug 30, 2022 at 09:30:44AM +0200, Jürgen Spitzmüller wrote: >> > Am Freitag, dem 26.08.2022 um 01:05 +0100 schrieb madmurphy: >> > > Any updates on this? In the meanwhile I have update the module. &

Re: Patch to delete the iopart, kluwer and svjog layouts and edit Makefile.am as the relevant cls files have not been available for several years

2023-01-04 Thread Pavel Sanda
On Wed, Jan 04, 2023 at 12:12:39PM +, John Robert Hudson wrote: > From 673a7b1786ecaea775d10ad9751a8630ab844b10 Mon Sep 17 00:00:00 2001 > From: John R Hudson > Date: Wed, 4 Jan 2023 12:08:23 + > Subject: [PATCH] Delete iopart, kluwer and svjog layouts as the relevant cls &

Patch to delete the iopart, kluwer and svjog layouts and edit Makefile.am as the relevant cls files have not been available for several years

2023-01-04 Thread John Robert Hudson
From 673a7b1786ecaea775d10ad9751a8630ab844b10 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Wed, 4 Jan 2023 12:08:23 + Subject: [PATCH] Delete iopart, kluwer and svjog layouts as the relevant cls files have not been available for several years and edit Makefile.am to reflect

Patch to update entries for Foils, Slides and Reports in Chapter 3 Document classes and do some final tidying up in Additional.lyx

2023-01-03 Thread John Robert Hudson
From 80b7399a0c5b854f897c97329c8288181a7c62d2 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Tue, 3 Jan 2023 11:04:16 + Subject: [PATCH] Update entries for Foils, Slides and Reports in Chapter 3 Document classes and do final tidying up of Additional.lyx --- lib/doc/Additional.lyx | 450

Patch to insert entries for Tufte, frletter, G-Brief and lettre into Chapter 3 Document classes of Additional.lyx

2023-01-02 Thread John Robert Hudson
>From 9a6421fde9e3748dfaf9d1b6bfaed5efaa6050fb Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Mon, 2 Jan 2023 09:42:38 + Subject: [PATCH] Insert entries for Tufte, frletter, G-Brief and lettre into Chapter 3 Document classes of Additional.lyx --- lib/doc/Additional.lyx |

Re: Updated patch to add KOMA-Script_Book.lyx and associated BibTeX file and CC logo to examples/Books and update Makefile.am

2023-01-02 Thread John Robert Hudson
On Sunday, 1 January 2023 21:37:52 GMT Pavel Sanda wrote: > I deleted couple files which were clearly added by mistake > and added to the distribution few ones missing: > + examples/Books/koma-book.bib \ > + examples/Books/koma-book-80x15.png \ Thank you. Now I understand how to do it properly.

Re: Updated patch to add KOMA-Script_Book.lyx and associated BibTeX file and CC logo to examples/Books and update Makefile.am

2023-01-01 Thread Pavel Sanda
On Sun, Jan 01, 2023 at 04:38:04PM +, John Robert Hudson wrote: > This patch contains the necessary files. It's in. I deleted couple files which were clearly added by mistake > Figure, |0 > Float- |0 >

Updated patch to add KOMA-Script_Book.lyx and associated BibTeX file and CC logo to examples/Books and update Makefile.am

2023-01-01 Thread John Robert Hudson
This patch contains the necessary files.From 32c4ab5090727450f0a4684122516a32e120a664 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Sun, 1 Jan 2023 16:31:50 + Subject: [PATCH] Add KOMA-Script_Book.lyx and associated BibTeX file and CC logo to examples/Books and update Makefile.am

Fwd: Revert of patch to add KOMA-Script_book.lyx and associated BibTeX file and CC logo to Examples>Books and update Makefile.am

2023-01-01 Thread John Robert Hudson
-- Forwarded Message -- Subject: Patch to add KOMA-Script_book.lyx and associated BibTeX file and CC logo to Examples>Books and update Makefile.am Date: Saturday, 31 December 2022, 15:45:51 GMT From: John Robert Hudson To: lyx-devel@lists.lyx.org I have reverted this pa

Patch to add KOMA-Script_book.lyx and associated BibTeX file and CC logo to Examples>Books and update Makefile.am

2022-12-31 Thread John Robert Hudson
>From 4b75a514a5d32745ef5873ac94706a8881193f1c Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Sat, 31 Dec 2022 15:38:22 + Subject: [PATCH] Add KOMA-Script_Book.lyx and associated BibTeX file and CC logo to Examples>Books and update Makefile.am --- lib/Makefile.am | 1 + 1 file c

Patch to insert more detail about page layout and various KOMA-Script options in the KOMA-Script section of Chapter 3 Document Classes of Additional.lyx and delete the section on KOMA-letter V.1

2022-12-30 Thread John Robert Hudson
From 366f8159fe6b496f2ac39f5e745d5be9435a6609 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Fri, 30 Dec 2022 20:01:21 + Subject: [PATCH] Insert more detail about page layout, Custom Class options KOMA-Script options and using the book document class in the KOMA-Script section

Re: Patch to insert brief introduction to Chapter 3 Document classes and update the AMS document classes section of Additional.lyx to reflect changes in 2.4

2022-12-30 Thread Jürgen Spitzmüller
Am Donnerstag, dem 29.12.2022 um 20:38 + schrieb John Robert Hudson: > Please note that the Fact environment has moved from the (Extended) > to the > basic module and that the Assumption and Question environments are > new to the > (Extended) module and so have no proper descriptions in the

Patch to insert brief introduction to Chapter 3 Document classes and update the AMS document classes section of Additional.lyx to reflect changes in 2.4

2022-12-29 Thread John Robert Hudson
bf2c9e01e839f41692c0ea795e2dffa54580b153 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Thu, 29 Dec 2022 20:29:36 + Subject: [PATCH] Insert brief introduction to Chapter 3 Document classes, update the introduction to the AMS document classes section, adding in references to the example files, update the module names

Re: Patch to insert entries for Hanging Paragraphs, Initials, Hyphenatable Text Markup and Logical Markup into Chapter 4 Modules of Additional.lyx

2022-12-29 Thread Jürgen Spitzmüller
Committed. -- Jürgen -- lyx-devel mailing list lyx-devel@lists.lyx.org http://lists.lyx.org/mailman/listinfo/lyx-devel

Patch to insert entries for Hanging Paragraphs, Initials, Hyphenatable Text Markup and Logical Markup into Chapter 4 Modules of Additional.lyx

2022-12-29 Thread John Robert Hudson
>From 114f61ae4bb095e8da0a21f30ef9e0b19fa8e7db Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Thu, 29 Dec 2022 11:11:47 + Subject: [PATCH] Insert entries for Hanging Paragraphs, Initials, Hyphenatable Text Markup and Logical Markup in Chapter 4 Modules of Additional.lyx --- lib/

Re: Patch to insert entries for Custom Header/Footer Text and Landscape Document Mode and to update the existing entry for Multiple Columns to reflect the new layout in Chapter 4 Modules of Additional

2022-12-28 Thread Jürgen Spitzmüller
Committed. -- Jürgen -- lyx-devel mailing list lyx-devel@lists.lyx.org http://lists.lyx.org/mailman/listinfo/lyx-devel

Patch to insert entries for Custom Header/Footer Text and Landscape Document Mode and to update the existing entry for Multiple Columns to reflect the new layout in Chapter 4 Modules of Additional.lyx

2022-12-28 Thread John Robert Hudson
From 78dc01329b438cda63d0dc61a71e102b2f4e4e9f Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Wed, 28 Dec 2022 14:11:07 + Subject: [PATCH] Insert entries for Custom Footer/Header Text and Landscape Document Mode and update the existing entry for Multiple Columns to match the new layout

Re: Patch to insert entries for the sixteen Maths modules into Chapter 4 Modules of Additional.lyx

2022-12-28 Thread Pavel Sanda
On Wed, Dec 28, 2022 at 11:42:14AM +, John Robert Hudson wrote: > So, after the last two sections are in, I will go through these chapter by > chapter in Additional.lyx and then propose the updates needed in the other > Manuals. > > So I will hold off until the weekend. No need to

Re: Patch to insert entries for the sixteen Maths modules into Chapter 4 Modules of Additional.lyx

2022-12-28 Thread John Robert Hudson
On Wednesday, 28 December 2022 11:24:21 GMT you wrote: > On Wed, Dec 28, 2022 at 11:00:28AM +, John Robert Hudson wrote: > > From dbce16010232e8774e747692bbbc78fd00c7c120 Mon Sep 17 00:00:00 2001 > > From: John R Hudson > > Date: Wed, 28 Dec 2022 10:56:30 +0000 > &

Patch to insert entries for the sixteen Maths modules into Chapter 4 Modules of Additional.lyx

2022-12-28 Thread John Robert Hudson
From dbce16010232e8774e747692bbbc78fd00c7c120 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Wed, 28 Dec 2022 10:56:30 + Subject: [PATCH] Insert entries for the sixteen Maths modules into Chapter 4 Modules of Additional.lyx --- lib/doc/Additional.lyx | 583

Patch to insert entries for Noweb, Rnw and Sweave into Chapter 4 Modules of Additional.lyx and to make consequential changes to the Literate Programming section

2022-12-27 Thread John Robert Hudson
From f61364bb0cdf78c4072ce921b8af93fca1ac1aa7 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Tue, 27 Dec 2022 17:26:44 + Subject: [PATCH] Insert entries for Noweb, Rnw and Sweave in Chapter 4 Modules of Additional.lyx and make consequential updates to the Literate Programming section

Patch to insert entries for Customizable Lists and Paragraph Lists into Chapter 4 Modules of Additional.lyx

2022-12-27 Thread John Robert Hudson
From 76ef99e2d795bddd9d7642642817978a2a1781c3 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Tue, 27 Dec 2022 10:51:40 + Subject: [PATCH] Insert entries for Customizable lists and Paragraph lists into Chapter 4 Modules of Additional.lyx --- lib/doc/Additional.lyx | 1320

Patch to insert four entries for Floats & Captions modules, four entries for Foot- and Endnotes modules and two entries for Leisure, Sports and Music modules into Chapter 4 Modules of Additional.lyx

2022-12-26 Thread John Robert Hudson
From ce29ac7d6932541f4264a2bb92b0712d6ec1de6c Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Mon, 26 Dec 2022 19:06:04 + Subject: [PATCH] Insert four entries for Floats & Captions modules, four entries for Foot- and Endnotes modules and two entries for Leisure, Sports and Music mod

Patch to insert entries for Section boxes, Variable-width minipages, Fix Computer Modern Fonts, LaTeX Kernel Fixes, Minimalistic Insets and Title and Preamble Hacks into Chapter 4 Modules of Additiona

2022-12-24 Thread John Robert Hudson
>From 6f6e2162a34f573316bbd1a3d81a7966c393b94f Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Sat, 24 Dec 2022 12:25:54 + Subject: [PATCH] Insert entries for Section boxes, Variable-width minipages, Fix Computer Modern Fonts, LaTeX Kernel fixes, Minimalistic Insets and Ti

Patch to insert entries for APA with NatBIB, Fancy Colored Boxes and Graphic Boxes to Chapter 4: Modules of Additional.lyx

2022-12-23 Thread John Robert Hudson
From 81d11d01d7cac03645fc29cdca34ba762a536fb7 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Fri, 23 Dec 2022 20:58:43 + Subject: [PATCH] Insert entries for APA with NatBiB, Fancy Colored Boxes and Graphic Boxes to Chapter 4: Modules of Additional.lyx --- lib/doc/Additional.lyx | 582

Patch to insert entries for Braille, FiXme, PDF Comments, PDF Forms, Ruby and TODO notes into Chapter 4 Modules of Additional.lyx

2022-12-23 Thread John Robert Hudson
From 0a5a575c00701c6bebe5e6ff686037e6c386bdf8 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Fri, 23 Dec 2022 09:46:42 + Subject: [PATCH] Insert entries for Braille, FiXme, PDF Comments, PDF Forms, Ruby and TODO notes into Chapter 4 Modules of Additional.lyx --- lib/doc/Additional.lyx

Patch to insert entries for Hazard and Precautionary Statements, Risk and Safety Statements and Linguistics into Chapter 4 Modules of Additional.lyx

2022-12-22 Thread John Robert Hudson
From ea33952b8684625a80fc621577829daae6182f33 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Thu, 22 Dec 2022 13:37:27 + Subject: [PATCH] Add entries for Hazard and Precautionary Statements, Risk and Safety Statements and Linguistics to Chapter 4 Modules of Additional.lyx --- lib/doc

Patch to update references to example files in Additional.lyx to match the 2.4 examples interface

2022-12-21 Thread John Robert Hudson
From e3ed945eb88eb0b34e826c6d7095b15d2701f6d9 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Wed, 21 Dec 2022 17:24:51 + Subject: [PATCH] Update references to example files in Additional.lyx to match the 2.4 examples interface. --- lib/doc/Additional.lyx | 280

Patch to update all references to templates in Additional.lyx to match the 2.4 template interface

2022-12-21 Thread John Robert Hudson
From 950612df323c2bdd56ab89d6592e3016c3898e23 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Wed, 21 Dec 2022 10:20:46 + Subject: [PATCH] Update all references to templates in Additional.lyx to match the 2.4 template interface. --- lib/doc/Additional.lyx | 152

Patch to insert entries for Letter, Beamer, Powerdot and Seminar in Chapter 3 Document classes of Additional.lyx

2022-12-19 Thread John Robert Hudson
>From ff9073fb2e9932451170fb5b1248cd2d537d769b Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Mon, 19 Dec 2022 14:11:04 + Subject: [PATCH] Insert entries for Letter, Beamer, Powerdot and Seminar in Chapter 3 Document classes of Additional.lyx --- lib/doc/Additional.lyx |

Patch to insert entries for Chess, Recipe book and the four CV classes into Chapter 3 Document classes of Additional.lyx

2022-12-19 Thread John Robert Hudson
From 6e8c893743fa732b38545dba5a1b4b679d36cd09 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Mon, 19 Dec 2022 09:30:28 + Subject: [PATCH] Insert entries for Chess, Recipe book and the four CV classes into Chapter 3 Document classes of Additional.lyx --- lib/doc/Additional.lyx | 374

Re: [PATCH] change semantics of "delete" LFUNs again (was: Re: Assertion from command-sequence)

2022-12-18 Thread José Matos
On Sun, 2022-12-04 at 22:14 +0100, Jean-Marc Lasgouttes wrote: > > On the other hand I was concerned with encoding a text message in > > integer number that in Python is infinite precision: > > You lost me here. > > JMarc That is a way to pass a a light message (season's greetings) into a

Patch to insert short entries on Extra Font Sizes, Hebrew and Japanese document classes into Chapter 3 Document classes of Additional.lyx

2022-12-18 Thread John Robert Hudson
From 54d60a8e5641f5fed1acd598a3ffa295e3fdb99a Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Sun, 18 Dec 2022 17:07:55 + Subject: [PATCH] Insert short entries for Extra Font Sizes, Hebrew and Japanese document classes in Chapter 3 Document Classes of Additional.lyx --- lib/doc

Patch to create Chapter 6 Bullets in Additional.lyx and move the section bullets into it

2022-12-18 Thread John Robert Hudson
This completes the reordering of chapters in Additional.lyx to reflect the entries in Document Settings.From 33064ae839219df1142e76c00747d25ccbbd540e Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Sun, 18 Dec 2022 09:30:32 + Subject: [PATCH] Create Chapter 6 Bullets in Additional.lyx

Patch to place the first three sections of Supplementary Tools in Additional.lyx into a new Chapter 5 Bibliography

2022-12-17 Thread John Robert Hudson
The three sections cover Alternative Citations, Subdivided bibliographies and Multiple bibliographies in BibTeX and BibLaTeX>From 46188725956551aa71689810e06db65d9c7fe1df Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Sat, 17 Dec 2022 19:14:00 + Subject: [PATCH] Make the first th

Patch to insert the existing chapters 4, 5, 6 and 7 of Additional.lyx into the RevTeX section of Chapter 3 Document classes

2022-12-15 Thread John Robert Hudson
This section will need further revision, if possible by someone with recent experience of using RevTeX.From b3b9b34dbe01b72a23f54cc2c0ef1b68ce96e8fa Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Thu, 15 Dec 2022 14:55:10 + Subject: [PATCH] Move existing chapters 4, 5, 6 and 7

Patch to delete old entries on Dinbrief, Elsevier, Paper and Springer in Special Document Classes of Additional.lyx

2022-12-15 Thread John Robert Hudson
From 219c3dfe5561d00d1081daba25319961a82465bc Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Thu, 15 Dec 2022 09:44:26 + Subject: [PATCH] Delete old entries on Dinbrief, Elsevier, Paper and Springer in Special Document Classes in Additional.lyx --- lib/doc/Additional.lyx | 50

Re: Patch to insert short updated entries for Dinbrief, Elsevier, Paper and Springer in Chapter 3 Document classes of Additional.lyx

2022-12-14 Thread Jürgen Spitzmüller
Dr Eberhard W Lisse schrieb am 14.12.2022 22:29 (GMT +01:00): > As a German Speaker I would propose to remove Dinbrief altogether as > Koma-Script's Letter (scrlttr2) is not only DIN 5008 compatible but also > offers much, much more possibilities. > > And according to Ulrike Fischer dinbrief is

Re: Patch to insert short updated entries for Dinbrief, Elsevier, Paper and Springer in Chapter 3 Document classes of Additional.lyx

2022-12-14 Thread Dr Eberhard W Lisse
As a German Speaker I would propose to remove Dinbrief altogether as Koma-Script's Letter (scrlttr2) is not only DIN 5008 compatible but also offers much, much more possibilities. And according to Ulrike Fischer dinbrief is not compatible with current LaTeX anyway. greetings, el On 14/12/2022

Patch to insert short updated entries for Dinbrief, Elsevier, Paper and Springer in Chapter 3 Document classes of Additional.lyx

2022-12-14 Thread John Robert Hudson
From 76c4b62532fd029c05b67c11141a2979d1b99f0b Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Wed, 14 Dec 2022 18:21:33 + Subject: [PATCH] Insert short updated entries for Dinbrief, Elsevier, Paper and Springer in Chapter 3 Document classes of Additional.lyx --- lib/doc/Additional.lyx

Patch to move RevTeX section in Additional.lyx to Chapter 3 Document classes

2022-12-13 Thread John Robert Hudson
From e6e705de904258b53d93d44951c1f140e9b72dc7 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Tue, 13 Dec 2022 13:49:46 + Subject: [PATCH] Move RevTeX section in Additional.lyx into Chapter 3 Document classes --- lib/doc/Additional.lyx | 820 - 1

Patch to move Article (mwart) section to Chapter 3 Document classes and change title to Polish M.W. Collection

2022-12-13 Thread John Robert Hudson
From 92ccf3a4cf15353dccca71d0a3df9803ed7fa9f5 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Tue, 13 Dec 2022 09:49:24 + Subject: [PATCH] Move Article (mwart) section in Additional.lyx to Chapter 3 Document classes and change the heading to Polish M.W. collection --- lib/doc

Patch to insert updated section on A paper into Chapter 3 Document classes

2022-12-11 Thread John Robert Hudson
From 969bbf3e978fbedf6392d020153637c1a6852838 Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Sun, 11 Dec 2022 21:39:58 + Subject: [PATCH] Insert updated section on A paper into Chapter 3 Document classes --- lib/doc/Additional.lyx | 1095 +++- 1 file

Patch to add new chapter 3 Document classes to hold all the material on document classes

2022-12-07 Thread John Robert Hudson
Provides a framework into which sections from other parts of Additional.lyx and new sections will be moved in one by one.>From 52b8c16b0e9834d983b9097726a02b5d0d4ab15e Mon Sep 17 00:00:00 2001 From: John R Hudson Date: Wed, 7 Dec 2022 19:01:46 + Subject: [PATCH] New chapter 3 Docum

Re: Patch to remove Kluwer from Additional.lyx

2022-12-07 Thread Scott Kostyshak
On Wed, Dec 07, 2022 at 05:42:20PM +0100, Jürgen Spitzmüller wrote: > Am Dienstag, dem 06.12.2022 um 22:25 -0500 schrieb Scott Kostyshak: > > Not sure if any better, but perhaps an alternative: could lyx2lyx > > just copy the module into the local layout? That is, the module could > > be hidden

Re: Patch to remove Kluwer from Additional.lyx

2022-12-07 Thread Jürgen Spitzmüller
Am Dienstag, dem 06.12.2022 um 22:25 -0500 schrieb Scott Kostyshak: > Not sure if any better, but perhaps an alternative: could lyx2lyx > just copy the module into the local layout? That is, the module could > be hidden somewhere accessible to lyx2lyx and if it sees the .lyx > file load the module

Re: Patch to remove Kluwer from Additional.lyx

2022-12-07 Thread Jürgen Spitzmüller
Am Mittwoch, dem 07.12.2022 um 08:56 +0100 schrieb JP: > Should not this apply to other removed layouts ? Yes, this applies to all layouts. Which ones have been removed? -- Jürgen -- lyx-devel mailing list lyx-devel@lists.lyx.org http://lists.lyx.org/mailman/listinfo/lyx-devel

Re: Patch to remove Kluwer from Additional.lyx

2022-12-07 Thread Scott Kostyshak
On Wed, Dec 07, 2022 at 09:32:29AM +, José Matos wrote: > On Tue, 2022-12-06 at 22:25 -0500, Scott Kostyshak wrote: > > Not sure if any better, but perhaps an alternative: could lyx2lyx > > just > > copy the module into the local layout? That is, the module could be > > hidden somewhere

Re: Patch to remove Kluwer from Additional.lyx

2022-12-07 Thread José Matos
On Tue, 2022-12-06 at 22:25 -0500, Scott Kostyshak wrote: > Not sure if any better, but perhaps an alternative: could lyx2lyx > just > copy the module into the local layout? That is, the module could be > hidden somewhere accessible to lyx2lyx and if it sees the .lyx file > load > the module it

Re: Patch to remove Kluwer from Additional.lyx

2022-12-06 Thread JP
Le 7 décembre 2022 07:20:29 Jürgen Spitzmüller a écrit : Am Dienstag, dem 06.12.2022 um 22:30 +0100 schrieb Pavel Sanda: We can safely remove the template. But what should we do with abandoned layouts? If I just remove it, old lyx documents might get into trouble. Should we keep all layouts

Re: Patch to remove Kluwer from Additional.lyx

2022-12-06 Thread Jürgen Spitzmüller
Am Dienstag, dem 06.12.2022 um 22:30 +0100 schrieb Pavel Sanda: > We can safely remove the template. But what should we do with > abandoned layouts? If I just remove it, old lyx documents might > get into trouble. Should we keep all layouts in the tree forever? Please keep the layout. Removing it

  1   2   3   4   5   6   7   8   9   10   >