Re: Which manual has appendix details?

2024-01-20 Thread Daniel via lyx-users

On 2024-01-19 23:17, Scott Kostyshak wrote:

On Fri, Jan 19, 2024 at 03:01:50PM -0700, Hal Kierstead wrote:




On Jan 19, 2024, at 2:54 PM, Scott Kostyshak  wrote:

On Fri, Jan 19, 2024 at 02:32:21PM -0700, Hal Kierstead via lyx-users wrote:




On Jan 19, 2024, at 9:33 AM, Rich Shepard  wrote:

On Fri, 19 Jan 2024, Paul Rubin wrote:


Section 6.4 of the User's Guide is titled "Appendices". It's rather brief,
so I don't know if it will answer your question(s).


Paul,

Thank you. When I scanned the sections in Chapter 6 I missed that one.

Regards,

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


I often find myself looking through several manuals trying to find information. 
It would be much better if I could make a single search of all manuals. Maybe 
there is a way and I just do not know it.


Open up advanced find and click on the "settings" tab. Then choose "All 
manuals".

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


Very nice Scott. I thought there might be a good way of doing this.
Hal


It would be nice to have something like Help > Search all manuals, and
it would essentially open advanced find and set it to search all
manuals. Currently it's a bit hidden.

Scott


Also one cannot currently search the manuals without opening another 
document which is a little odd.


Daniel


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


Re: Trying to get a straight single quote

2024-01-02 Thread Daniel via lyx-users

On 2023-12-31 21:59, Paul Rubin wrote:


On 12/31/23 13:08, Blake McBride wrote:

Greetings,

I am using LyX 2.3.7 on a Linux box.  I have some text in which I'd 
like to use the straight, type-writer-like single quote instead of a 
curved one.  I tried adding the TeX code \texttt{'} but that didn't 
work.  I then went into Document / Settings / Fonts and played with 
the Typewriter setting.  That changed the quiet but I never got the 
straight single quote I am looking for.  Sure appreciate some help.


Thanks!

Blake


One option is to add "\usepackage{textcomp}" to the document preamble 
and then put "\textquotesingle{}" in ERT where you want the straight quote.


Paul


"\usepackage{textcomp}" seems to be unnecessary. I guess the 
"\textquotesingle{}" should be accessible via Insert > Formatting in 
LyX. Maybe someone likes to file an enhancement report. (I feel like I 
have filled my quota already.)


Daniel

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


Re: Making first paragraphs not indented in exported HTML

2022-04-11 Thread Daniel via lyx-users

On 2022-04-11 03:44, Steve Litt via lyx-users wrote:

Hi all,

In the past, some exporters have implemented the custom of not
indenting the first of several successive paragraphs by using a
different class of paragraph for the first of a series of paragraphs.
This way of doing things makes more work for the person writing the
export, and more work for the person converting the export to
acceptable ePub, because those special classes will need to be backed
out or otherwise specially handled.

Not indenting the first of a series of paragraphs is easily
accomplished by the following two lines of CSS:

p::first-letter{margin-left: 3em;}
:not(p) + p::first-letter{margin-left:0.0001em;}

Let CSS decide which is the first of several consecutive paragraphs,
and let CSS define what to do with that paragraph. Make it easy on
everybody.

I took an hour to figure this out. Could somebody please take 3 minutes
to forward it to the developer's list and also the person who is
writing the HTML export?

Thanks,

SteveT

Steve Litt
March 2022 featured book: Making Mental Models: Advanced Edition
http://www.troubleshooters.com/mmm


I'd suggest that you file a bug/enhancement report at 
https://www.lyx.org/trac/wiki/BugTrackerHome (including the LyX version 
you are using and exact steps to reproduce the problem).


Best,
Daniel


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


Re: Insert plain commands into the document with an Inset

2022-04-10 Thread Daniel via lyx-users

On 2022-04-10 08:07, Daniel via lyx-users wrote:

On 2022-04-06 22:57, tush via lyx-users wrote:
How can I create an Inset that once inserted into the document, adds 
the following commands to the document?:


\mainmatter
\pagestyle{fancy} % new page style
\newgeometry{ new page layout goes here }

Of course, I can insert these commands with ERT, but I prefer them to 
be defined a more GUI friendly object.


If I create a new flex inset, it either adds an environment 
(\begin{LatexName }...\end{LatexName ) or a command (\LatexName{...}). 
I don't need any text (ERT or anything else) to be inserted into this 
inset. Just to insert those commands into the document.


The List Of Figures insertion, for example, does something similar, 
but it has some information such as Placement and Extension that are 
irrelevant in my case.


First, what is the "new page layout goes here" for? Isn't that text that 
needs to be entered into the inset?


Second, I believe custom command insets without arguments cannot be 
created currently. You could create an inset with an argument whose 
argument does nothing to achieve basically the same thing. So, I guess 
it hasn't been a priority to implement custom non-argument insets. But 
it's really a just missing feature.


Daniel


ps. There are separate GUI features for \pagestyle 
(https://www.lyx.org/trac/ticket/12394) and \mainmatter 
(https://www.lyx.org/trac/ticket/12424) on the way. But since I lack at 
least the abilities to finish those patches for backwards compatibility, 
I am not sure whether they will appear in LyX any time soon.




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


Re: Insert plain commands into the document with an Inset

2022-04-10 Thread Daniel via lyx-users

On 2022-04-06 22:57, tush via lyx-users wrote:
How can I create an Inset that once inserted into the document, adds the 
following commands to the document?:


\mainmatter
\pagestyle{fancy} % new page style
\newgeometry{ new page layout goes here }

Of course, I can insert these commands with ERT, but I prefer them to be 
defined a more GUI friendly object.


If I create a new flex inset, it either adds an environment 
(\begin{LatexName }...\end{LatexName ) or a command (\LatexName{...}). I 
don't need any text (ERT or anything else) to be inserted into this 
inset. Just to insert those commands into the document.


The List Of Figures insertion, for example, does something similar, but 
it has some information such as Placement and Extension that are 
irrelevant in my case.


First, what is the "new page layout goes here" for? Isn't that text that 
needs to be entered into the inset?


Second, I believe custom command insets without arguments cannot be 
created currently. You could create an inset with an argument whose 
argument does nothing to achieve basically the same thing. So, I guess 
it hasn't been a priority to implement custom non-argument insets. But 
it's really a just missing feature.


Daniel


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


Re: Trouble with quote (") character on LyX 2.3.6.2 (2021-01-07)

2022-04-05 Thread Daniel via lyx-users

On 2022-04-05 17:03, Kornel Benko via lyx-users wrote:

Am Tue, 5 Apr 2022 13:50:38 +
schrieb "Busch, Andreas via lyx-users" :


Hi,

it’s been a while since I have last used LyX (a couple of years), but for a 
major
project I come back to this great app. I used it in the past, and want to say 
how
grateful I am to everyone contributing to this great piece of software!

Having just finished writing an article in German on my Mac (running on the 
most recent
version of macOS 12.3.1), I discovered several strange problems that concern 
the quote
character (") - Shift 2 on a German keyboard:

a) While I can write it in LyX, I cannot search for it. I can put it into the 
search
box, but the LyX editor will not find quote marks in the document. (I know that 
under
Document" -> Settings I can choose various types of quote signs; I left it to 
the
standard, which (in German) means typographic quote marks.


As for this problem, it is https://www.lyx.org/trac/ticket/11462, right? 
I have just suggested a way to resolve it at the ticket. Maybe you want 
to chip in if you have further thoughts.



b) Only the opening quote marks are being exported when I export my LyX 
document to
either Word (XML) or Markdown format. Yes, I know it sounds strange, but that 
is how I
discovered the problem. Everything works well when exporting the document to 
pdf (via
LaTeX), but not in the other export formats.


I couldn't find those two formats in the export dialog. Please remind me 
where I can find them. I succeeded in exporting with "HTML (MS Word)". 
There I see both quotes (beginning and end) but they are actually not 
Word's typical double quotes. So that is possibly another bug.



So something seems amiss. Since I searched through the mailing list archive, I 
know
that this hasn’t been mentioned here before, which puzzles me even more. Could 
any of
you please confirm that you don’t have the problem - and then help me narrow 
down where
the problem on my machine is?

I’d be so grateful!

Thanks and best wishes,

Andreas


Andreas, thanks for the report. At least for upcoming lyx2.4 and with advanced 
find
it will be no problem. Committing the fix now.

Kornel


Just to be sure, this is a fix for (part of) a) but not b), right?

Daniel


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


Re: RE: Trouble with quote (") character on LyX 2.3.6.2 (2021-01-07)

2022-04-05 Thread Daniel via lyx-users

On 2022-04-05 18:37, Kees Zeelenberg (kzStats) via lyx-users wrote:


a) While I can write it in LyX, I cannot search for it. I can put it into the 
search
box, but the LyX editor will not find quote marks in the document. (I know that
under Document" -> Settings I can choose various types of quote signs; I left it
to the standard, which (in German) means typographic quote marks.


Andreas
--

On MS-Windows 11 with LyX 2.3.6.1 and the US international keyboard search and 
replace " works fine.
I haven't tested the export.

Best,

Kees



Unfortunately, this might be just due to the international keyboard not 
being fully supported in LyX (https://www.lyx.org/trac/ticket/10377). 
(You might want to fix the quotes in your documents...)


Best,
Daniel


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


Re: Request for feedback: open/close all insets of a branch ?

2022-04-04 Thread Daniel via lyx-users

On 2022-04-02 16:37, Scott Kostyshak via lyx-users wrote:

Dear all LyX branch users,

Have you ever wished there were a way to open (or close) all insets of a
certain branch? We have a pending patch on lyx-devel that would add an
option to the context-menu when you right-click on the inset of a
branch. E.g., we could add two entries "Open All" and "Close All".

Would you use this feature? Could you describe a particular use case
i.e., some context and a reason why you want to open all branch insets
of a specific branch in that context?

Scott


I not using branches (yet). But, generally, I think for such a feature 
to be easily accessible and (mis)clickable, it is a good idea to be able 
to undo it because of its rather drastic effect (change of all such 
insets). Actually, this can be done currently which is good I think. But 
I am slightly worried that it is counter to some of the developers' 
opinion (and possibly consensus) on whether opening insets should count 
as marking the buffer dirty (i.e. a file unsaved). So, that is something 
to consider, I think. However, since this is probably not an action that 
is often taken, a warning dialog that tells the user that this action 
cannot be undone might make this problem less severe.


Also, addition to (or instead of) a menu, a more general solution might 
be an "inset toolbox" (pane/dialog) via which inset types can be 
selected from a drop-down and (general) actions (e.g. closing, opening, 
replacing with another type, etc.) on these insets executed. Just a 
spontaneous idea that I have not further thought through.


Daniel


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


Re: LyX display of align counters

2022-02-18 Thread Daniel via lyx-users

On 2022-02-18 22:15, Scott Kostyshak via lyx-users wrote:

On Fri, Feb 18, 2022 at 09:53:32PM +0100, Daniel via lyx-users wrote:

On 2022-02-18 17:03, Scott Kostyshak via lyx-users wrote:

On Fri, Feb 18, 2022 at 02:52:35PM +0100, Daniel via lyx-users wrote:

On 17/02/2022 14:06, Scott Kostyshak via lyx-users wrote:

I like to renumber my align numbers within frame. e.g., Instead of "equation
3", I essentially use them as "3rd line of equation on this frame" which makes
it easy for students to ask questions and refer to the line number.

I do this with the following LaTeX code in the preamble:

\AtBeginEnvironment{align}{\setcounter{equation}{0}}

I'm greedy and would like to adapt the LyX layout to show the same.

Specifying "Within" frame seems to almost do what I want:

Counter equation
Within   frame
End

However, if I'm on Frame 10, it will show 10.1, 10.2, etc..., where I would
prefer just 1, 2, ...

If the above can't be tweaked to work, perhaps a different approach to using
"Within" would be to have the Frame layout reset the equation counter to 0?

Scott


Maybe you could provide a minimal example of the frame setup you have? I
guess you are working with some "frame" counter definition.


Ah indeed there is some interaction with another local patch I have
applied. I don't think the patch is necessary to reproduce the issue in
this thread (without it, it seems LyX marks them as #.1, #.2, #.3, #.4;
but for completeness I attach it (it is against current master).

I also attach an example .lyx file. I saved it as 2.3.x format just for
simplicity, but I am testing on current master. Note that the LyX file
has a preamble (that resets the counter to 0 in LaTeX) as well as a
local layout (that specifies the Within).

I also attach a screenshot, which has Frame number patch applied.
Instead of the equation labels "1.1, 1.2, 2.1, 2.2", I would prefer
"1, 2, 1, 2" in the LyX display.

Thanks,
Scott


Like so:

Counter equation
   Within  frame
   LabelString \arabic{equation}
End

?


Perfect! Thanks.


By the way, why do you use

\AtBeginEnvironment{align}{\setcounter{equation}{0}}

rather than

\AtBeginEnvironment{frame}{\setcounter{equation}{0}}

?

If you use the latter, you can use different equation environments without
getting ambiguous numbers within a frame.


That's a good idea. I might change to that. The reason why I initially
chose "align" was so that if I do two (small) aligns on one frame, both
would restart to (1). But that's a very rare situation anyway.


Okay, so you want them to restart at (1) on the same frame. So, if you 
had two equation environments on one frame you couldn't say "3rd line of 
equation on this frame" but would have to say "3rd line of the first 
equation on this frame" or so.



I guess I might want to do both of the above LaTeX commands, in theory.
Almost all the time though, it's just one align on one frame so it won't
make a big difference.


If you have the latter command, the former seems superfluous because you 
cannot have an equation that goes over more than one frame, or?


The former (your) LaTeX command mimics what enumerated lists do. Just 
notice that the layout code I provided restarts within frame and hence 
mimics the latter LaTeX command above not the former. I am not sure that 
it is currently possible to mimic enumerated list counters in LyX. For 
example,


Counter equation
  Within  equation
  LabelString \arabic{equation}
End

just leads to a crash. (Maybe for obvious reasons?) Maybe what would be 
needed is a reset of a counter depending on an environment rather than 
another counter?


Best,
Daniel


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


Re: LyX display of align counters

2022-02-18 Thread Daniel via lyx-users

On 2022-02-18 17:03, Scott Kostyshak via lyx-users wrote:

On Fri, Feb 18, 2022 at 02:52:35PM +0100, Daniel via lyx-users wrote:

On 17/02/2022 14:06, Scott Kostyshak via lyx-users wrote:

I like to renumber my align numbers within frame. e.g., Instead of "equation
3", I essentially use them as "3rd line of equation on this frame" which makes
it easy for students to ask questions and refer to the line number.

I do this with the following LaTeX code in the preamble:

\AtBeginEnvironment{align}{\setcounter{equation}{0}}

I'm greedy and would like to adapt the LyX layout to show the same.

Specifying "Within" frame seems to almost do what I want:

Counter equation
Within   frame
End

However, if I'm on Frame 10, it will show 10.1, 10.2, etc..., where I would
prefer just 1, 2, ...

If the above can't be tweaked to work, perhaps a different approach to using
"Within" would be to have the Frame layout reset the equation counter to 0?

Scott


Maybe you could provide a minimal example of the frame setup you have? I
guess you are working with some "frame" counter definition.


Ah indeed there is some interaction with another local patch I have
applied. I don't think the patch is necessary to reproduce the issue in
this thread (without it, it seems LyX marks them as #.1, #.2, #.3, #.4;
but for completeness I attach it (it is against current master).

I also attach an example .lyx file. I saved it as 2.3.x format just for
simplicity, but I am testing on current master. Note that the LyX file
has a preamble (that resets the counter to 0 in LaTeX) as well as a
local layout (that specifies the Within).

I also attach a screenshot, which has Frame number patch applied.
Instead of the equation labels "1.1, 1.2, 2.1, 2.2", I would prefer
"1, 2, 1, 2" in the LyX display.

Thanks,
Scott


Like so:

Counter equation
  Within  frame
  LabelString \arabic{equation}
End

?

By the way, why do you use

\AtBeginEnvironment{align}{\setcounter{equation}{0}}

rather than

\AtBeginEnvironment{frame}{\setcounter{equation}{0}}

?

If you use the latter, you can use different equation environments 
without getting ambiguous numbers within a frame.


Best,
Daniel


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


Re: LyX display of align counters

2022-02-18 Thread Daniel via lyx-users

On 17/02/2022 14:06, Scott Kostyshak via lyx-users wrote:

I like to renumber my align numbers within frame. e.g., Instead of "equation
3", I essentially use them as "3rd line of equation on this frame" which makes
it easy for students to ask questions and refer to the line number.

I do this with the following LaTeX code in the preamble:

\AtBeginEnvironment{align}{\setcounter{equation}{0}}

I'm greedy and would like to adapt the LyX layout to show the same.

Specifying "Within" frame seems to almost do what I want:

Counter equation
Within   frame
End

However, if I'm on Frame 10, it will show 10.1, 10.2, etc..., where I would
prefer just 1, 2, ...

If the above can't be tweaked to work, perhaps a different approach to using
"Within" would be to have the Frame layout reset the equation counter to 0?

Scott


Maybe you could provide a minimal example of the frame setup you have? I 
guess you are working with some "frame" counter definition.


Daniel

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


Re: \subitem

2022-02-11 Thread Daniel via lyx-users

On 10/02/2022 11:16, Jürgen Spitzmüller via lyx-users wrote:

Am Donnerstag, dem 10.02.2022 um 10:50 +0100 schrieb Wolfgang Engelmann
via lyx-users:

I am getting errors

\subitem feedback loops
\subitem arrhythmicity \hyperpage

but can't find this in the lualatex .tex run

nor in the nomenclature and index entries

I use 2.4.0.dev

Any idea how/where to find it?


You have in your document an index entry

Drosophila!feedback loops

The problem is probably (or was in the copy you sent me) that all this
is emphasized. The exclamation mark that marks the subentry needs to be
straight, not emphasized.

HTH,
Jürgen


Maybe the subitems could be handled by (sub)insets instead in LyX? Then 
it would be easier to avoid the emphasis problem.


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 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 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: dictionary

2022-01-28 Thread Daniel via lyx-users

On 28/01/2022 11:08, Daniel via lyx-users wrote:

On 28/01/2022 10:42, Baris Erkus via lyx-users wrote:


On 28-Jan-22 12:34 PM, Patrick Dupre via lyx-users wrote:

Hello,

Where his my own dictionary (that one that I use when I make "add") ?

It is the pwl_x.dict file, where x is the language, under the 
LyX user directory. You can find the user directory on the About LyX 
window under help.


E.g. pwl_english.dict

pwl means personal word list, btw.


There is no such (or similar) file on Windows 10 in my user directory...


Okay, after adding a word to the personal dictionary *and* closing LyX, 
there is the file in the user directory!



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


Re: dictionary

2022-01-28 Thread Daniel via lyx-users

On 28/01/2022 10:42, Baris Erkus via lyx-users wrote:


On 28-Jan-22 12:34 PM, Patrick Dupre via lyx-users wrote:

Hello,

Where his my own dictionary (that one that I use when I make "add") ?

It is the pwl_x.dict file, where x is the language, under the 
LyX user directory. You can find the user directory on the About LyX 
window under help.


E.g. pwl_english.dict

pwl means personal word list, btw.


There is no such (or similar) file on Windows 10 in my user directory...

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


Re: superscipt in large fonts

2022-01-21 Thread Daniel via lyx-users

On 2022-01-21 10:40, Daniel via lyx-users wrote:

On 20/01/2022 13:51, Csikos Bela via lyx-users wrote:

Hello:

This occurs in lyx 2.3.6.1.

When I add superscript to non-default sized fonts, for example to 
"larger" fonts, the
superscript text is not scaled correctly, its size is the same as the 
size of the larger font.


How can I add correctly scaled superscript text to non default font 
sizes?


Thanks,

bcsikos


Hello,

If I see it correctly, this will be fixed in the upcoming LyX version 
(2.4).


Best,
Daniel


Indeed, the current version produces

{\Huge{}x}\textsuperscript{{\Huge{}y}}{\Huge\par}

and the new version

{\Huge x\textsuperscript{y}}{\Huge\par}

(though the "{\Huge\par}" seems a bit superfluous to me in both versions).

Daniel


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


Re: superscipt in large fonts

2022-01-21 Thread Daniel via lyx-users

On 20/01/2022 13:51, Csikos Bela via lyx-users wrote:

Hello:

This occurs in lyx 2.3.6.1.

When I add superscript to non-default sized fonts, for example to "larger" 
fonts, the
superscript text is not scaled correctly, its size is the same as the size of 
the larger font.

How can I add correctly scaled superscript text to non default font sizes?

Thanks,

bcsikos


Hello,

If I see it correctly, this will be fixed in the upcoming LyX version (2.4).

Best,
Daniel


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


Re: TOC in pdf colored red

2022-01-08 Thread Daniel via lyx-users

On 2022-01-09 05:20, Joseph Hesse via lyx-users wrote:

On 1/8/22 11:56, Herbert Voss via lyx-users wrote:



On 08/01/2022 06:32, Joseph Hesse via lyx-users wrote:

Hi,
I am writing a book in lyx.  When I look at the pdf the TOC appears 
red.  How can I fix this so it is in black and white? I want to keep 
my URL links as colored blue.


Go into  the preferences menue and insert the following options for 
hyperref


    colorlinks,
    citecolor=black,
    filecolor=black,
    linkcolor=black,
    urlcolor=blue,
    linktocpage,
    linktoc=all


Herbert
Thank you for your response.  This doesn't work for me.  I am using Lyx 
2.3.6.1.


I go to Tools -> Preference -> Colors and do not see anything like 
options for hyperref.


Did I make an error?

Thank you,
Joe


Did you see my answer above or miss it? Did it work?

Daniel



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


Re: TOC in pdf colored red

2022-01-08 Thread Daniel via lyx-users

On 08/01/2022 06:32, Joseph Hesse via lyx-users wrote:

Hi,
I am writing a book in lyx.  When I look at the pdf the TOC appears 
red.  How can I fix this so it is in black and white?  I want to keep my 
URL links as colored blue.

Thank you,
Joe


Hi,
Without an example file it is a bit hard to tell what kind of coloring 
you refer to. But I am guessing that you have already set the options 
"No frames around links" and "Color links" (Document > Settings... > PDF 
Properties). In that case you can add to the "Additional Options" (same 
place): linkcolor=black. Note that this will only change the color not 
the functionality.

Best,
Daniel

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


Re: Nested decription lists

2022-01-07 Thread Daniel via lyx-users

On 2022-01-08 05:38, Anthony Macks via lyx-users wrote:

 >>On 2022-01-07 23:09, Anthony Macks via lyx-users wrote:
 >> Dear LyX users,
 >>
 >> I am nesting description lists and want to justify the text within the
 >> nested list.
 >>
 >> I have attached my MWE, output and a copy of what I want the output to
 >> look like.
 >>
 >> I am using the module "Customisable Lists (enumitem)." with the article
 >> class. When I right click on the description label, an options box is
 >> produced. However, the options to go in the box (I get the options from
 >> the enumitem package) are not producing the desired effect.
 >>
 >> Warm Regards,
 >> Anthony
 >>

 >Dear Anthony,

 >I am not sure that it is possible to adjust the width of the label
 >automatically. Have you tried any of these instead?

 
>https://tex.stackexchange.com/questions/67720/description-list-with-aligned-descriptions
 
<https://tex.stackexchange.com/questions/67720/description-list-with-aligned-descriptions>

 >Best regards,
 >Daniel

Thanks Daniel.

I have looked at the link. It will require me to create a new 
environment which I was hoping to avoid.


I have tried and can create the new environment successfully, however, 
it looks ugly with all the ERT I have to use.


Perhaps, I can create the new environment in a local layout. I have 
written a local layout for an itemized list before.

How would it differ from a description list?

I have attached a file below which contains my local layout.


Warm Regards,
Anthony


On Sat, 8 Jan 2022 at 15:26, Daniel via lyx-users 
mailto:lyx-users@lists.lyx.org>> wrote:


On 2022-01-07 23:09, Anthony Macks via lyx-users wrote:
 > Dear LyX users,
 >
 > I am nesting description lists and want to justify the text
within the
 > nested list.
 >
 > I have attached my MWE, output and a copy of what I want the
output to
 > look like.
 >
 > I am using the module "Customisable Lists (enumitem)." with the
article
 > class. When I right click on the description label, an options
box is
 > produced. However, the options to go in the box (I get the
options from
 > the enumitem package) are not producing the desired effect.
 >
 > Warm Regards,
 > Anthony
 >

Dear Anthony,

I am not sure that it is possible to adjust the width of the label
automatically. Have you tried any of these instead?


https://tex.stackexchange.com/questions/67720/description-list-with-aligned-descriptions
 
<https://tex.stackexchange.com/questions/67720/description-list-with-aligned-descriptions>

Best regards,
Daniel


-- 
lyx-users mailing list

lyx-users@lists.lyx.org <mailto:lyx-users@lists.lyx.org>
http://lists.lyx.org/mailman/listinfo/lyx-users
<http://lists.lyx.org/mailman/listinfo/lyx-users>




Something went wrong with the attachment. Here is a new one.#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
\begin_preamble
\usepackage{calc}
\end_preamble
\use_default_options true
\begin_modules
enumitem
\end_modules
\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 12
\spacing single
\use_hyperref false
\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 true
\use_refstyle 1
\use_minted 0
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 2
\tocdepth 2
\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 De

Re: Nested decription lists

2022-01-07 Thread Daniel via lyx-users

On 2022-01-08 05:25, Daniel via lyx-users wrote:

On 2022-01-07 23:09, Anthony Macks via lyx-users wrote:

Dear LyX users,

I am nesting description lists and want to justify the text within the 
nested list.


I have attached my MWE, output and a copy of what I want the output to 
look like.


I am using the module "Customisable Lists (enumitem)." with the 
article class. When I right click on the description label, an options 
box is produced. However, the options to go in the box (I get the 
options from the enumitem package) are not producing the desired effect.


Warm Regards,
Anthony



Dear Anthony,

I am not sure that it is possible to adjust the width of the label 
automatically. Have you tried any of these instead?


https://tex.stackexchange.com/questions/67720/description-list-with-aligned-descriptions

Best regards,
Daniel


I should have read the thread more carefully to the end. Attached is a 
tweaked version of your example.


Note:
1. The enumitem package is loaded by the enumitem module. (You don't 
have to load the enumitem package manually.)
2. The Description Options you used only affected the leftmargin from 
the second line of a description list onward. (It is not clear to me 
what should happen in the second line from your MWE.)
3. In order to use LaTeX commands in LyX (those starting with \), you 
need to put them into a TeX Code inset. (Insert > TeX Code or Ctrl+L / 
Cmd+L.)


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
\begin_preamble
\usepackage{calc}
\end_preamble
\use_default_options true
\begin_modules
enumitem
\end_modules
\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 12
\spacing single
\use_hyperref false
\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 true
\use_refstyle 1
\use_minted 0
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 2
\tocdepth 2
\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 Description
\begin_inset Argument 1
status open

\begin_layout Plain Layout
\begin_inset ERT
status open

\begin_layout Plain Layout

leftmargin=!,labelwidth=
\backslash
widthof{
\backslash
bfseries NestedDescription1}
\end_layout

\end_inset


\end_layout

\end_inset

Description1 Here is the first description.
\end_layout

\begin_deeper
\begin_layout Description
\begin_inset Argument 1
status open

\begin_layout Plain Layout
\begin_inset ERT
status open

\begin_layout Plain Layout

leftmargin=!,labelwidth=
\backslash
widthof{
\backslash
bfseries NestedDescription1}
\end_layout

\end_inset


\end_layout

\end_inset

NestedDescription1 This is the first nested description.
\end_layout

\begin_layout Description
NestedD2 This is the second nested description.
\end_layout

\begin_layout Description
NDescription3 This is the third nested description.
\end_layout

\end_deeper
\begin_layout Description
Description2 This is the second description.
\end_layout

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


Re: Nested decription lists

2022-01-07 Thread Daniel via lyx-users

On 2022-01-07 23:09, Anthony Macks via lyx-users wrote:

Dear LyX users,

I am nesting description lists and want to justify the text within the 
nested list.


I have attached my MWE, output and a copy of what I want the output to 
look like.


I am using the module "Customisable Lists (enumitem)." with the article 
class. When I right click on the description label, an options box is 
produced. However, the options to go in the box (I get the options from 
the enumitem package) are not producing the desired effect.


Warm Regards,
Anthony



Dear Anthony,

I am not sure that it is possible to adjust the width of the label 
automatically. Have you tried any of these instead?


https://tex.stackexchange.com/questions/67720/description-list-with-aligned-descriptions

Best regards,
Daniel


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


Re: View TOC

2022-01-07 Thread Daniel via lyx-users

On 2022-01-08 04:58, Joseph Hesse via lyx-users wrote:
When I click on View->Outline I get a TOC window that is not fixed 
anywhere.  Once I had a TOC window that was stuck on the left hand size 
of my workspace.  How do I get this back?

I am using LyX 2.3.6.1
Thank you,
Joe Hesse



Try a double click on its title bar. (In general, the TOC window (aka 
Outline pane) can be floated and docked by dragging it on its title bar 
to the desirable place. However, for docking make sure LyX's main window 
is large enough to accommodate the docked pane.)


Best,
Daniel


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


Re: A question about the macOS warning message

2022-01-04 Thread Daniel via lyx-users

On 2022-01-04 16:00, R. H. van der Gaag via lyx-users wrote:

Launching LyX on macOS 12.1 (Monterey) causes a warning to appear, saying that 
in future OS versions, the application will no longer run, and that it should 
be updated. Is anyone working on this? I tried to find indications that this 
was so on the website, but to no avail. My dissertation is in LyX, and it would 
be a problem is updating my Mac’s system software would disrupt the work.

Thanks in advance for any help/advice.


Just a general advise (independent of using LyX): Minor OS updates 
(12.1, 12.2, etc.) should be no problem. But it might be a good idea to 
hold of on major OS update when some important deadline is coming up. 
Major versions are much more likely to be disruptive.


Daniel


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


Re: User list server settings

2021-12-16 Thread Daniel via lyx-users

On 16/12/2021 05:13, Paul A. Rubin via lyx-users wrote:

Hi all,

Did a gremlin mess with server settings for this list? For the last few 
days, every message I've gotten has had  "mailing list" 
(lyx-users@lists.lyx.org) in both From and To fields, which means my 
mail client no longer shows who the sender was. (The sender's name and 
address are in the "Reply to" field.) In contrast, the developer list 
continues to behave itself, with the sender's name in the From field and 
"LyX Developers" in the To field.


It's not a big deal, but as one of the older members of the list I feel 
I should point out that we elderly types do confuse easily.


Paul



I see a similar problem. But my client (Thunderbird) gives the name with 
a "via lyx-users". So, I can see who send the email but in an annoying 
way. lyx-devel seems to be unaffected.


Daniel

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


Re: Fwd: "Lyx must be updated"

2021-12-16 Thread Daniel via lyx-users

On 16/12/2021 09:56, Murat Yildizoglu via lyx-users wrote:

I have tried to send this to lyx-devel but I am not a member.


Begin forwarded message:

*From: *lyx-devel-ow...@lists.lyx.org 


*Subject: **"Lyx must be updated"*
*Date: *16 December 2021 at 15:55:19 GMT+7
*To: *myi...@gmail.com 

Due to the massive amount of spam that this list receives, non-members
are not permitted to post to this list. Please subscribe if you would
like to post. (If you are trying to file a bug report, you can instead
do that at https://www.lyx.org/trac/newticket 
.



*From: *Murat Yildizoglu mailto:myi...@gmail.com>>
*Subject: **"Lyx must be updated"*
*Date: *16 December 2021 at 15:55:13 GMT+7
*To: *LyX Developers >



This is what OSX 12.1 tells me now with Lyx  LyX-2.3.6.2.

""LyX" needs to be updated
This app will not work with future versions of
macOS and needs to be updated to improve
compatibility. Contact the developer for more
information.”

I imagine that the next version will be good with future versions of OSX.

I have just wanted to inform.

Best regards,
Murat


This might be a python version warning:

"Python
Deprecations

If an app uses Python 2.7, macOS now triggers an alert indicating that 
the developer must update the app to ensure it will work in future 
versions of macOS. (80221011)" 
(https://developer.apple.com/documentation/macos-release-notes/macos-12_0_1-release-notes)


Best regards,
Daniel

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


Re: A big Christmas wish

2021-12-15 Thread Daniel via lyx-users

On 14/12/2021 12:59, Kornel Benko via lyx-users wrote:

Am Tue, 14 Dec 2021 13:36:52 +0200
schrieb Dr Eberhard Lisse via lyx-users :


Maybe, but it would be helpful not to have to look for it.

el


What is wrong with this bibfile? It is included in texlive. (Package
'texlive-bibtex-extra' in debian)


Okay, I thought it was even part of the biblatex package which should be 
installed with biblatex. Anyway, there is nothing tricky in the bib 
file. One could just use whatever bibliography and reference one wishes.


Daniel

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


Re: A big Christmas wish

2021-12-14 Thread Daniel via lyx-users

On 13/12/2021 19:20, Dr Eberhard Lisse via lyx-users wrote:

On 2021-12-13 09:18 , Daniel via lyx-users wrote:

On 2021-12-11 10:39, Wolfgang Engelmann via lyx-users wrote:

After having spent numerous hours/days in trying to get a
Koma script book to work under luatex/biblatex my biggest Christmas
wish is to get a user file template for it which works.

It should tell me,
what to put in the Document settings
the LaTeX Preamble
the Bibliography (e.g. biblatex-spbasic)
and the preferences in Tools

Wolfgang


I haven't worked with LuaTeX before, so forgive my ignorance.  But I
am curious what the issue is.  I have just created a KOMA-script book
with a reference using biblatex-spbasic (attached) and compiled it
with LuaTeX and it just worked.  No need for preamble or preferences
to set.  Maybe I am missing some feature that you were using?  Or what
is it in particular that was tricky to accomplish?

Daniel


Attaching the BIB file would help...

el


Sorry. The attached file uses the standard biblatex example BIB file.

Daniel


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


Re: A big Christmas wish

2021-12-12 Thread Daniel via lyx-users

On 2021-12-11 10:39, Wolfgang Engelmann via lyx-users wrote:

After having spent numerous hours/days in trying to get a
Koma script book to work under luatex/biblatex my biggest Christmas wish 
is to get a user file template for it which works.


It should tell me,
what to put in the Document settings
the LaTeX Preamble
the Bibliography (e.g. biblatex-spbasic)
and the preferences in Tools

Wolfgang


I haven't worked with LuaTeX before, so forgive my ignorance. But I am 
curious what the issue is. I have just created a KOMA-script book with a 
reference using biblatex-spbasic (attached) and compiled it with LuaTeX 
and it just worked. No need for preamble or preferences to set. Maybe I 
am missing some feature that you were using? Or what is it in particular 
that was tricky to accomplish?


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 scrbook
\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 true
\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 biblatex
\cite_engine_type authoryear
\biblio_style plain
\biblatex_bibstyle biblatex-spbasic
\biblatex_citestyle biblatex-spbasic
\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 Title
Test
\end_layout

\begin_layout Standard
\begin_inset CommandInset citation
LatexCommand cite
key "adler_prioritarianism_2019"
literal "false"

\end_inset


\end_layout

\begin_layout Standard
\begin_inset CommandInset bibtex
LatexCommand bibtex
btprint "btPrintCited"
bibfiles "Philosophy"
options "plain"

\end_inset


\end_layout

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