Re: Time stamp is off

2023-06-18 Thread Maria Gouskova
On Sun, Jun 18, 2023 at 7:22 AM R. H. van der Gaag 
wrote:

> Hi all,
> I noticed the time stamp on tracked changes is two hours off. Solutions
> found online seem to fail. Is there a way to get correct time stamps?
>

I cannot reproduce this here--my time stamps look correct. I am using LyX
2.3.6 on Linux Mint 21, Cinnamon 5.4.12. (Btw, it helps when you include
details of your system and installation for questions like this).

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


Re: Some filenames ending with tilde

2023-03-06 Thread Maria Gouskova
If these .lyx~ files bother you, you could add the following to your .bashrc
 file:

alias dellyx='find . -name "*.lyx~" -delete'

Then, with a Terminal window open, type "dellyx" at the $ prompt, and all
the .lyx~ files in that directory and all its subdirectories will be
deleted. (Obviously, only do this when you're sure that you won't need any
of the backups.)

Maria



On Mon, Mar 6, 2023 at 4:26 AM Jürgen Spitzmüller  wrote:

> Am Montag, dem 06.03.2023 um 10:20 +0100 schrieb Daniel CLEMENT via
> lyx-users:
> > My bad
>
> Not at all. It is not very obvious which backup strategies LyX has and
> what all the diverse backup and emergency files are for.
>
> We have thus added a bit of explanation in the User Guide for LyX 2.4.
>
> Best,
> --
> Jürgen
> --
> 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: Forest beyond basics

2021-12-20 Thread Maria Gouskova via lyx-users
On Mon, Dec 20, 2021 at 3:53 AM Baris Erkus via lyx-users <
lyx-users@lists.lyx.org> wrote:

>
> On 19-Dec-21 8:20 PM, Maria Gouskova via lyx-users wrote:
>
> Dear LyX users,
>
> (Actually, I suspect this is a question for Jürgen S., but on the off
> chance that someone else knows the answer...)
>
> I need to produce a diagram with the structure shown here. It was produced
> using the obsolete xyling package (see the attached xyling_test files):
> [image: tree_i_want.png]
> All the nodes will have a lot of linguist-specific bells and whistles,
> like IPA fonts and small caps and other stuff. XYling has not been updated
> in 15 years; I barely got the doc to compile. So, xyling is no good for
> what I need.
>
> In the process of trying to work out how to make that tree happen in
> forest, the package that LyX's linguistics module directly supports, I
> concluded that I will need to use the "draw" functionality. But I can't
> work out how to make the \draw commands work inside the tree insets. I
> tried to follow an example from the forest manual (number (21) on p. 9 of
> this, http://mirrors.ctan.org/graphics/pgf/contrib/forest/forest-doc.pdf,
> and realized that there is no obvious way to pass options in the
> \begin{forest}  ... \end{forest} space beyond those that pertain to nodes
> (i.e., appear inside the [ ] brackets). The options just get ignored, or
> else prevent the PDF from being compiled.
>
> Things I've tried:
>
> 1) Declaring forest overtly in the preamble and passing the whole
> \begin{forest} ...\end{forest} block as ERT. That throws errors.
>
> 2) Using the native LyX forest support, and passing options as ERT inside
> the Tree inset. I noticed in the code preview pane that the \draw backslash
> is replaced with \textbackslash. I tried replacing the $s$ stuff with ERT,
> too. The code pane preview looks correct, but the file does not compile,
> throwing a bunch of errors along the lines of "Package pgfkeys Error:",
> etc. (I assume people can reproduce these...)
>
> Oh, also, I tried the example from the manual in TeXMaker to verify it
> wasn't some oddity of my TeX installation, and it compiled okay (except for
> the "background tree" option). It looked a lot more like what's in the
> manual than anything LyX produced (attached).
>
> So, yeah, I have a workaround in case it can't work--I could produce the
> doc in LyX, then export to TeX and finish the lattice thing there. I was
> just hoping there was an easier way.
>
> Linux Mint 19.1
> texlive ~2017
> LyX 2.3.6.1
>
> Maria
>
> Hello,
>
> I think you should do this in TikZ. You would not regret.
>
> Attached is a simple setup for you get started. Compile the LaTeX file
> Fig01.tex and get the PDF of your figure first. Then, you can insert the
> PDF into your LyX file. If you want to change your figure, just compile the
> file again and LyX will do the job automatically for you.
>
> My recommendation is: do not insert your code for figures (whether TikZ or
> not) into LyX as ERT box. Compile them separately and generate the figure
> PDF first. Then, insert the figure PDF into LyX. This will help you find
> errors and change the figures more easily without compiling whole LyX file.
> Also, it would be easier for LyX to compile the document.
>
> Baris
>
>
> --
> ↓↓
> Please bottom-post. Start your reply here:
>
> --
> lyx-users mailing list
> lyx-users@lists.lyx.org
> http://lists.lyx.org/mailman/listinfo/lyx-users
>


Thanks, but Jürgen's example was sufficient.

The example I attached was extremely simplified compared to what I actually
need to make--as I said in my original post, there are various typographic
bells and whistles that need to go into the node labels, including IPA,
small caps, Greek letter subscripts, and other things. So I am going to
have to fine-tune node positioning.

I prefer to have everything in one document whenever possible, for visual
consistency and for passing the paper to the's journal proof people. The
disadvantage of the method you suggested is that one has to tweak the image
size so that the fonts look like they came from the same universe. And then
if anything changes in the diagram, you have to redo it in multiple places.

Steve, both linguists and mathematicians use LaTeX for lattices, trees, and
various other graphical diagrams. The reason to do so is the one I alluded
to above: they mix text with graphics, and often they have to include text
with math typesetting. We've been doing this for decades.

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


Re: Forest beyond basics

2021-12-19 Thread Maria Gouskova via lyx-users
On Sun, Dec 19, 2021 at 12:36 PM Jürgen Spitzmüller via lyx-users <
lyx-users@lists.lyx.org> wrote:

> Am Sonntag, dem 19.12.2021 um 12:20 -0500 schrieb Maria Gouskova via
> lyx-users:
> > 2) Using the native LyX forest support, and passing options as ERT
> > inside the Tree inset. I noticed in the code preview pane that the
> > \draw backslash is replaced with \textbackslash. I tried replacing
> > the $s$ stuff with ERT, too. The code pane preview looks correct, but
> > the file does not compile, throwing a bunch of errors along the lines
> > of "Package pgfkeys Error:", etc. (I assume people can reproduce
> > these...)
>
> I suppose things went wrong on pasting into the ERT (paste into ERT
> with Paste Special > Plain Text to avoid this).
>
> Try the attached.
>

Ah damn, the whitespace will get you every time! Thanks, Jürgen. Your
example works here.

And thanks for the tikz tip--I was actually thinking of using xypic if all
else failed, which would also do what I need. The Government Phonology
thing in forest comes so close...

Maria







>
> Best,
> Jürgen
>
> --
> 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


Forest beyond basics

2021-12-19 Thread Maria Gouskova via lyx-users
Dear LyX users,

(Actually, I suspect this is a question for Jürgen S., but on the off
chance that someone else knows the answer...)

I need to produce a diagram with the structure shown here. It was produced
using the obsolete xyling package (see the attached xyling_test files):
[image: tree_i_want.png]
All the nodes will have a lot of linguist-specific bells and whistles, like
IPA fonts and small caps and other stuff. XYling has not been updated in 15
years; I barely got the doc to compile. So, xyling is no good for what I
need.

In the process of trying to work out how to make that tree happen in
forest, the package that LyX's linguistics module directly supports, I
concluded that I will need to use the "draw" functionality. But I can't
work out how to make the \draw commands work inside the tree insets. I
tried to follow an example from the forest manual (number (21) on p. 9 of
this, http://mirrors.ctan.org/graphics/pgf/contrib/forest/forest-doc.pdf,
and realized that there is no obvious way to pass options in the
\begin{forest}  ... \end{forest} space beyond those that pertain to nodes
(i.e., appear inside the [ ] brackets). The options just get ignored, or
else prevent the PDF from being compiled.

Things I've tried:

1) Declaring forest overtly in the preamble and passing the whole
\begin{forest} ...\end{forest} block as ERT. That throws errors.

2) Using the native LyX forest support, and passing options as ERT inside
the Tree inset. I noticed in the code preview pane that the \draw backslash
is replaced with \textbackslash. I tried replacing the $s$ stuff with ERT,
too. The code pane preview looks correct, but the file does not compile,
throwing a bunch of errors along the lines of "Package pgfkeys Error:",
etc. (I assume people can reproduce these...)

Oh, also, I tried the example from the manual in TeXMaker to verify it
wasn't some oddity of my TeX installation, and it compiled okay (except for
the "background tree" option). It looked a lot more like what's in the
manual than anything LyX produced (attached).

So, yeah, I have a workaround in case it can't work--I could produce the
doc in LyX, then export to TeX and finish the lattice thing there. I was
just hoping there was an easier way.

Linux Mint 19.1
texlive ~2017
LyX 2.3.6.1

Maria


xyling_test.lyx
Description: application/lyx


xyling_test.pdf
Description: Adobe PDF document


forest_eg.lyx
Description: application/lyx


forest_eg.pdf
Description: Adobe PDF document


forest_test.pdf
Description: Adobe PDF document
\documentclass[11pt,letterpaper]{article}
\usepackage{fontspec}
\defaultfontfeatures{Mapping=tex-text}
\usepackage{xunicode}
\usepackage{xltxtra}
%\setmainfont{???}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{forest}
\begin{document}
\begin{forest}
 [parent, grow=45
 [child 1][child 2][child 3][child 4][child 5]
 ]
 \draw[,->](forest cs:l=-1cm,s=0)--(forest cs:l=3cm,s=0) node[below]{$l$};
 \draw[,->](forest cs:s=-1cm,l=0)--(forest cs:s=3cm,l=0) node[right]{$s$};
\end{forest}
\end{document}-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: JabRef entry warning

2021-10-12 Thread Maria Gouskova
On Tue, Oct 12, 2021 at 2:01 PM Paul A. Rubin  wrote:

> On 10/12/21 1:21 PM, Rich Shepard wrote:
> > On Tue, 12 Oct 2021, Paul A. Rubin wrote:
> >
> >> You mention 'Paul2012' in the warning but show the entry with key
> >> 'Paul2017'. Is one of those a typo, or did you show us the wrong entry?
> >
> > Paul2021,
> >
> > :-)
> >
> > Probably need to re-caffinate. Corrected entry just posted.
> >
> > Thanks,
> >
> > Rich
> Rich,
>
> You have commas at the end of several fields (inside the closing curly
> brace), including institution, which I think is triggering the error
> message.
>
> You also have a few places with a funky dash separating a pair of
> numbers, rather than a double dash ('--'). That might be the result of
> copying from a PDF and pasting. I don't know if that will also cause any
> indigestion.
>
> Paul
>
> --
> lyx-users mailing list
> lyx-users@lists.lyx.org
> http://lists.lyx.org/mailman/listinfo/lyx-users


Maybe it was the two "ands" in a row in the author field:

author = {Paul, A.P. and Paretti, N.V. and MacCoy, D.E. *and and* Brasher,
A.M.D.},
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: Tab autocomplete behavior in tables

2020-12-01 Thread Maria Gouskova
On Mon, Nov 30, 2020 at 8:08 PM Paul A. Rubin  wrote:

> On 11/30/20 6:02 PM, Scott Kostyshak wrote:
>
> On Mon, Nov 30, 2020 at 05:45:59PM -0500, Paul A. Rubin wrote:
>
> On 11/30/20 5:13 PM, Scott Kostyshak wrote:
>
> Scott: Perhaps you can alleviate my confusion here.
>
> Thanks for joining the conversation, Paul. It seems we have a mystery.
>
>
> I use the CUA bind file
> (with a couple of tweaks) and have the same binding for Tab that you listed.
> In the preferences dialog, tab completion is on for math mode and off for
> text mode.
>
> Just to be clear, I think you mean *automatic* completion is on for
> math mode and off for text mode. It took me a while to understand the
> distinction.
>
>
> In a math inset, if I type something like \right and start
> playing with the tab key, it does various completion tasks. If I'm not part
> way into a LaTeX command (but, say, in an align* environment), tabbing moves
> from cell to cell.
>
> In a text table, Tab moves from cell to cell, period. I do *not* under any
> circumstances get prompted to do word completion. (If it matters, I do have
> continuous spell checking on, using Enchant.) So I can't reproduce the
> problem.
>
> While I'm not complaining, either I don't understand the problem or
> you and Maria both failed to appease some digital deity with whom I am
> apparently on good terms.
>
> Well shoot, I was hoping it was the opposite---that some deity was doing me a 
> favor by trying to help with completion, and all I would have to do is piss 
> them off. Gaining their favor seems much more challenging.
>
>
> This is on Linux Mint 20, so behavior should be the same as on Ubuntu Focal.
>
> Interesting differences. If in preferences you turn automatic completion on 
> for text, does that change anything? If not, it might just be that completion 
> in text mode is (conveniently) broken for you.
>
> Scott
>
>
> As it turns out, I can reproduce the behavior using Maria's example.
> Apparently I just did not have enough surrounding text in previous attempts
> ... and apparently I've lived a charmed life using tables so far.
>
> An interesting related behavior has to do with the escape key. In other
> programs (such as programming IDEs), if I get autocompletion hints I don't
> want, I typically hit the escape key to get rid of them. So, having
> reproduced the problem with Maria's help, my instinct was to hit Esc and
> then Tab ... except Esc boots me out of the table. I can understand the
> logic (sort of), but I wonder if there is a way to repurpose the escape key
> to just stop hints without moving the cursor?
>

Yes, the way this autocomplete function behaves is very unhelpful and
impossible to control, which is why I was looking for ways to turn it
off... Even if hitting Esc twice allowed Tab to move on to the next cell,
it would be better than what currently happens.


>
> In any case, perhaps the input completion settings for text should have
> one more option that turns off tab completions entirely in the text (but
> not in math mode).
>

I just went to see if a bug report exists on this, and it looks like this
is related, and still open:

https://www.lyx.org/trac/ticket/9207

I guess we'll wait.

>
> Paul
>
> --
> 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: Tab autocomplete behavior in tables

2020-11-30 Thread Maria Gouskova
On Mon, Nov 30, 2020 at 5:46 PM Paul A. Rubin  wrote:

> On 11/30/20 5:13 PM, Scott Kostyshak wrote:
>
> On Mon, Nov 30, 2020 at 04:11:41PM -0500, Maria Gouskova wrote:
>
> Hi LyX users,
>
> I'm probably missing something obvious in Preferences, but I couldn't
> figure out how to turn off tab autocompletion for tables. I don't mind it
> in math mode, so it's checked, but I pretty much never ever want that
> behavior in a table. When I hit the Tab key in a table, I want to advance
> to the next cell, and not to see a drop-down menu of random words that
> start with the same string I just typed.
>
> so, how do I make Tab always advance to the next cell in a table?
>
> I have similar preferences to you. We just had a similar discussion on 
> lyx-devel:
>
>   
> https://www.mail-archive.com/search?l=mid=20201120032750.3austjolf7ornvpg%40tallinn
>
> You mention that you "don't mind it in math mode". If you also don't
> mind *not* having it in math, then the solution is simple:
>
> rebind . The default binding is the following:
>
>   "command-alternatives 
> completion-accept;cell-forward;tab-insert;outline-in;depth-increment"
>
> Just remove the "completion-accept" part in your rebinding.
>
> If you do want to keep autocompletion for math, then things are more
> complicated. I have a simple patch that does this, but you would have to
> compile LyX with the patch. If you by chance use Ubuntu, I can compile a
> .deb for you, but I can't compile for other platforms.
>
> Scott
>
>
> Scott: Perhaps you can alleviate my confusion here. I use the CUA bind
> file (with a couple of tweaks) and have the same binding for Tab that you
> listed. In the preferences dialog, tab completion is on for math mode and
> off for text mode. In a math inset, if I type something like \right and
> start playing with the tab key, it does various completion tasks. If I'm
> not part way into a LaTeX command (but, say, in an align* environment),
> tabbing moves from cell to cell.
>
> In a text table, Tab moves from cell to cell, period. I do *not* under any
> circumstances get prompted to do word completion. (If it matters, I do have
> continuous spell checking on, using Enchant.) So I can't reproduce the
> problem. While I'm not complaining, either I don't understand the problem
> or you and Maria both failed to appease some digital deity with whom I am
> apparently on good terms.
>
> This is on Linux Mint 20, so behavior should be the same as on Ubuntu
> Focal.
>
> Paul
>

Paul, I also have cua on Linux Mint. The rest of my LyX is minimally
customized, so whatever is on by default is what I usually have.
One good way to set this off is to have words in the text around the table
that start with the same substring. Try this for a minimal example:

"notion, notation, noble, nonsectarian, nondeterministic"

then in table: enter "no" in a cell, and hit Tab. (If you hit "yes", it
should move you to the next tab, which iis what we want.") After "no",
though, I see "nominal" in my minimal example, as well as some of the words
from the list I entered above.



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


Tab autocomplete behavior in tables

2020-11-30 Thread Maria Gouskova
Hi LyX users,

I'm probably missing something obvious in Preferences, but I couldn't
figure out how to turn off tab autocompletion for tables. I don't mind it
in math mode, so it's checked, but I pretty much never ever want that
behavior in a table. When I hit the Tab key in a table, I want to advance
to the next cell, and not to see a drop-down menu of random words that
start with the same string I just typed.

so, how do I make Tab always advance to the next cell in a table?

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


Re: Figures and tables at the end/Page of floats

2020-10-18 Thread Maria Gouskova
On Fri, Oct 16, 2020 at 6:20 PM John Kane  wrote:

> Have a look at the APA or APA ver 6 classes .
>
> On Fri, 16 Oct 2020 at 13:32, Maria Gouskova  wrote:
>
>> Hi LyX users,
>>
>> I am preparing a manuscript for a publisher who wants the figures and
>> tables to be placed at the end of the document, with something like "Figure
>> X about here" in the body of the paper itself. I thought that the "Page of
>> Floats" setting would accomplish this, but it seems to group all figures
>> and tables into pages scattered throughout the document. (Except for the
>> last table, which gets placed at the very end of the document, after the
>> bibliography, in the middle of its own page.)
>>
>> I guess the solution that would definitely work would be to put all the
>> float insets at the end manually, select "here definitely" for the
>> positioning option, and then use cross-references to define the positioning
>> of the "Figure X about here" tags. It just seems like there should be a
>> more elegant way to accomplish this. Can the "page of floats" option be
>> controlled somehow?
>>
>> Maria
>>
>> --
>> lyx-users mailing list
>> lyx-users@lists.lyx.org
>> http://lists.lyx.org/mailman/listinfo/lyx-users
>>
>
> --
>
John Kane
> Kingston ON Canada
>

That wasn't exactly what I was after, since APAv6 comes with so many of its
own formatting quirks I would have to undo that it would take five times as
long as doing the float placement by hand.

But, I dug around some more and found an elegant solution: the endfloat
package. It did exactly what I needed in one line!

https://ctan.org/pkg/endfloat

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


Figures and tables at the end/Page of floats

2020-10-16 Thread Maria Gouskova
Hi LyX users,

I am preparing a manuscript for a publisher who wants the figures and
tables to be placed at the end of the document, with something like "Figure
X about here" in the body of the paper itself. I thought that the "Page of
Floats" setting would accomplish this, but it seems to group all figures
and tables into pages scattered throughout the document. (Except for the
last table, which gets placed at the very end of the document, after the
bibliography, in the middle of its own page.)

I guess the solution that would definitely work would be to put all the
float insets at the end manually, select "here definitely" for the
positioning option, and then use cross-references to define the positioning
of the "Figure X about here" tags. It just seems like there should be a
more elegant way to accomplish this. Can the "page of floats" option be
controlled somehow?

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


Re: bibliographic software (linux only)

2020-09-11 Thread Maria Gouskova
On Fri, Sep 11, 2020 at 12:26 PM Rich Shepard 
wrote:

> I've used JabRef for years but 5.x frustrates me to no end. They've lost
> the
> emacs keyboard chords that were present from 1.x through 4.x so to edit an
> abstract, for example, I need to use the arrow and Del keys. And, they've
> changed the UI so some data entry tabs have their widgets on the left half
> of the application window and the entry preview on the right halt. But,
> accessing the right-hand column of the data entry widgets must be done
> blind
> because that half window cannot be expanded to the right. Serious PITA.
> Yes,
> I've filed bug issues on both but nothing's been fixed. I've tried using
> KDE's bibliography tool but that was equally frustrating. And Zotero
> doesn't
> use bibtex.
>
> Since I'm not a full-time researcher I don't need to share the bibiography
> with collaborators and I will not store it somewhere in the cloud; my data,
> my network. I also don't particularly care for a GUI; text-based works for
> me since that's how I do most of my work (except when using LyX).
>
> I've about 1,200 books and PDFs in the bibtex database and other than
> entering new documents I want to search primarily by keywords, secondarily
> by authors.
>
> Does anyone know of a CLI bibliographic tool? Or a basic one with a GUI
> that
> Just Works(TM)?
>

I used JabRef and BibDesk (Mac OS) for years, and then KDE's KBibTeX, but
lately I just open my .bib file in Vim. I found that KBibTeX screwed up the
syntax of my file (which has something like 6000 references now, so it was
painful to debug). In Vim, I see the syntax highlighting and it's easy to
see and fix problems. Not super-helpful if you're looking for a GUI, but I
just wanted to confirm that you are not alone in being frustrated with the
available GUI options.

Maria

>
> TIA,
>
> Rich
> --
> 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: no accents with dead keys

2020-07-13 Thread Maria Gouskova
On Mon, Jul 13, 2020 at 2:56 AM Daniel CLEMENT 
wrote:

> Hi Jorge, I have struggled a long time with dead keys, but only for the
> cedilla character. I posted several times about that; I can but offer
> to compare our setups
>
> Le dimanche 12 juillet 2020 à 17:02 -0300, jorge hernando a écrit :
> > Hallo
> >   I have one PC with english keyboard (US international with dead
> > keys)
>
> same here (LyX 2.3.2 - Debian Stretch [yeah I know...])
>
> > [...] the accents work perfectly (e.g. á is " 'a ") when in a
> > terminal, opening nedit, ooffice, etc.
>
> But these are not "QT applications". Could you compare with another
> such app. (Filezilla? Scribus? Master PDF?...)
>

I had this problem with Master PDF Editor, actually. I updated the app and
my combination keys stopped working (as did Ibus X-Sampa, an IPA keyboard
layout). After some back-and-forth with the developers, I figured out that
the problem was a QT dependency, libqt5svg5 >= 5.9.8. The Debian repos are
up to 5.9.5. But it isn't one of the dependencies of lyx, which seems to be
using QT4, so there may be something else going on.

Maria





>
> > but in lyx not only it doesn't work, the dead key is really dead: if
> > I type ' in lyx it doesn't type anything [...]
>
> Can't you even get the apostrophe with ' + spacebar?
> >
> >   [...] I looked at some .kmap files in
> > /usr/share/lyx/kbd, [...]
>
> I understand that these files are now deprecated, and overridden by the
> QT settings (can someone confirm that?)
>
> > [...] I looked at /usr/share/lyx/bind
>
> This is for shortcuts, but of course you want to type accented
> characters the same way in LyX as in other apps, don't you?
>
> So here, working PC with US Intl + dead keys:
> - my ~.lyx/kbd folder is empty;
> - in LyX under Tools -> Editing -> Keyboard/Mouse I have no "keyboard
> remap" specified.
>
> This generally allows me to get the accented characters (except the
> cedilla). What about first trying with a completely blank LyX setup
> (e.g. renaming your .lyx folder)?
>
> > [...] In the mailing list it is mentioned (in 2019) that there is a
> > workaround related with Qt: to include in .xsessionrc the line
> >   export QT_IM_MODULE=xim
> >   I created the file with that line but didn't work
>
> In case you came across a post of mine, I was referring to
> https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/518056
> (especially post #39) But it's about getting the cedilla, not _all_ of
> the accented characters, but you might want to review this thread.
>
> However, the "export QT_IM_MODULE=xim" thing is not a solution by
> itself, but comes after tweaking some QT config files (mentioned in the
> thread above). Maybe something got broken there with a QT update? It
> always happens to me.
>
> But let's hope you won't have to dive into this for each and every
> accented character!
>
> Good luck - Daniel
> --
> 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: \oiint symbol does not show up in LyX

2020-02-01 Thread Maria Gouskova
On Sat, Feb 1, 2020 at 8:21 AM Nusret BALCI  wrote:

> Hi there,
> Typing \oint (note the single "i") in math mode shows the relevant  symbol
> on screen, but the symbol for double integral version \oiint (note the
> double "ii") is not shown in lyx editor: instead a tiny space character (I
> assume) is shown. The resulting pdf is fine. What might be the cause?
> LyX 2.3.4 (same for 2.3.3), macOS mojave
> Regards,
>

Your screen font for the GUI probably does not have the right character. If
you go into LyX:Preferences>Look and feel > Screen Fonts, you can change
the default. Linux Libertine O (freely available online) seems to have both
symbols, for me at least.

Maria


>
> Nusret
> --
> 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: bbding symbols are hyooge

2020-01-18 Thread Maria Gouskova
On Fri, Jan 17, 2020 at 7:18 PM Paul A. Rubin  wrote:

> On 1/17/20 6:56 PM, Maria Gouskova wrote:
>
> On Fri, Jan 17, 2020 at 1:52 PM Paul A. Rubin  wrote:
>
>> On 1/17/20 12:48 PM, Maria Gouskova wrote:
>>
>> Hi LyX users,
>>
>> Can anyone reproduce this? All I have in my sample file is
>> \usepackage{bbding} in the preamble, and something like \Checkmark{} or
>> \FiveStar{} in the body of the file. These used to come out to scale with
>> the text, and now they are absolutely enormous in the PDF. Doesn't seem to
>> depend on whether non-TeX fonts are used. I have LyX 2.3.3 on Linux Mint; I
>> think at least as recently as this past May (2.3.2?), bbding worked fine.
>>
>> (I can produce a checkmark with \checkmark{} from the amsmath package, so
>> this isn't critical, just kind of weird.)
>>
>> Maria
>>
>> Do you consider the check mark and star in the attached PDF huge or to
>> scale? This was also done on Linux Mint using LyX 2.3.3.
>>
>> Paul
>>
>> --
>> lyx-users mailing list
>> lyx-users@lists.lyx.org
>> http://lists.lyx.org/mailman/listinfo/lyx-users
>>
>
>
> Yeah those are not what I am seeing. Attached--
>
> The good news first: you're not hallucinating. Those really are large
> icons.
> The bad news: when I compile your file, I get normal size icons.
>
> I cannot find any non-default settings in your document that could account
> for what you are seeing. Grasping at straws, you might try looking at the
> full LaTeX source (View > Code Preview Pane, then select "LaTeX (pdflatex)"
> and "Complete Source" in the preview pane. This is what I get:
>
> % Preview source code
>
> %% LyX 2.3.3 created this file. For more info, see http://www.lyx.org/.
>
> %% Do not edit unless you really know what you are doing.
>
> \documentclass[english]{article}
>
> \usepackage[T1]{fontenc}
>
> \usepackage[latin9]{inputenc}
>
> \usepackage[letterpaper]{geometry}
>
> \geometry{verbose,tmargin=1in,bmargin=1in,lmargin=1in,rmargin=1in}
>
> \setcounter{secnumdepth}{4}
>
> \setcounter{tocdepth}{4}
>
> \usepackage{amsmath}
>
> \usepackage{amssymb}
>
> \usepackage[authoryear]{natbib}
>
> \makeatletter
>
> %% User specified LaTeX commands.
>
> \usepackage{bbding}
>
> \AtBeginDocument{
>
> \def\labelitemiii{\(\circ\)}
>
> }
>
> \makeatother
>
> \usepackage{babel}
>
> \begin{document}
>
> text text \Checkmark{} text text \FiveStar{} text
>
> \end{document}
>
> Do you see any differences at your end? For that matter, are you using
> pdflatex?
>

No, and yes--and I also tried a few different methods of PDF creation
before giving up. I tried various classic ones and XeTeX, too, thinking it
was a font issue.


> (I tried a few other routes to PDF output, and none of them gave me
>> Brobdingnagian symbols.)
>>
> Last possibility: I'm using TeXLive 2018. What LaTeX system are you using?
>

I have TeX Live 2017/Debian, pdfTeX 3.14159265-2.6-1.40.18. Digging into it
a bit more, I tried a simple TeX file, and ran into the same problem--so it
wasn't really a LyX issue but a problem with my TeX installation.

For posterity, here's how I fixed it: first, I looked at the tex log file,
which contained the following line:

LaTeX Font Info:Try loading font information for U+ding on input line
27.
(/home/.../texmf/tex/latex/bbding/Uding.fd
File: Uding.fd 1996/02/01 v1.0 BBding font definitions
)
LaTeX Font Info:Font shape `U/ding/m/n' will be
(Font)  scaled to size 128.3pt on input line 27.

It seems that my own texmf directory had an old and apparently problematic
version of bbding, and since TeX looks there first, it didn't find the
texlive-fonts-extra bbding that is installed elsewhere on my system. I
removed the /home bbding directory and tried again, and everything returned
back to normal.

What's sort of interesting is that this old bbding directory has been there
for well over a decade, survived various OSes, and only started causing
problems now. I guess the texlive folks decided to "improve" something. Oh
well, thanks, Paul!

Maria


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


Re: bbding symbols are hyooge

2020-01-17 Thread Maria Gouskova
On Fri, Jan 17, 2020 at 1:52 PM Paul A. Rubin  wrote:

> On 1/17/20 12:48 PM, Maria Gouskova wrote:
>
> Hi LyX users,
>
> Can anyone reproduce this? All I have in my sample file is
> \usepackage{bbding} in the preamble, and something like \Checkmark{} or
> \FiveStar{} in the body of the file. These used to come out to scale with
> the text, and now they are absolutely enormous in the PDF. Doesn't seem to
> depend on whether non-TeX fonts are used. I have LyX 2.3.3 on Linux Mint; I
> think at least as recently as this past May (2.3.2?), bbding worked fine.
>
> (I can produce a checkmark with \checkmark{} from the amsmath package, so
> this isn't critical, just kind of weird.)
>
> Maria
>
> Do you consider the check mark and star in the attached PDF huge or to
> scale? This was also done on Linux Mint using LyX 2.3.3.
>
> Paul
>
> --
> lyx-users mailing list
> lyx-users@lists.lyx.org
> http://lists.lyx.org/mailman/listinfo/lyx-users
>


Yeah those are not what I am seeing. Attached--


newfile3.lyx
Description: application/lyx


newfile3.pdf
Description: Adobe PDF document
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


bbding symbols are hyooge

2020-01-17 Thread Maria Gouskova
Hi LyX users,

Can anyone reproduce this? All I have in my sample file is
\usepackage{bbding} in the preamble, and something like \Checkmark{} or
\FiveStar{} in the body of the file. These used to come out to scale with
the text, and now they are absolutely enormous in the PDF. Doesn't seem to
depend on whether non-TeX fonts are used. I have LyX 2.3.3 on Linux Mint; I
think at least as recently as this past May (2.3.2?), bbding worked fine.

(I can produce a checkmark with \checkmark{} from the amsmath package, so
this isn't critical, just kind of weird.)

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


Re: Word count statistics

2019-07-12 Thread Maria Gouskova
On Mon, Jun 17, 2019 at 6:43 AM Pavel Sanda  wrote:
>
> Hi,
>
> LyX has currently an issue that the word count statistics does not include
> citations. I am unfortunately afraid that there might not be agreement whether
> these are proper words or not, depending on the publisher/journal.
>
> In your experience with different publications, how many words constitute 
> these?
> [1] : 0/1*
> (Goldman et al., 1976) : 0/1/4*
>
> I tend to implement the starred version unless it causes controversy...
> Alternatively we could count citation words separately, but I do not like
> this solution.
>
> Pavel

In my experience, the word count limit is just a guide to the
appropriate length of a paper. Ain't nobody got time to check whether
you have 502 words in your abstract or 497. But generally, it will be
apparent when you have 750 words and the limit is 500. So, as long as
you are sticking to the spirit of the word limit, you don't have to
worry about whether your references are counted as 4 words or 5.

I've checked the LyX word counter against MS Word/LibreOffice before,
and there are always slight differences in the counts, even for a text
without references. It all comes down to different views on what a
"word" is. Even when you're talking orthographic words (strings with
spaces around them), people will have different opinions on certain
tricky cases. I really don't think you are ever going to have to duke
it out with your editor, though.

Also, some journals explicitly exclude references from their word
count limit. If they care enough to legislate this, they will usually
be clear about it on their submission pages.


Re: [ANNOUNCE] LyX 2.3.3

2019-07-11 Thread Maria Gouskova
On Thu, Jun 27, 2019 at 1:38 PM Richard Kimberly Heck 
wrote:

> On 6/27/19 12:17 PM, Bernt Lie wrote:
>
> Thanks for report, Sergio – I’ll update to LyX 2.3.3... (I skipped
> upgrading to LyX 2.3.2 because of initial Windows problems).
>
>
>
> One thing that I always forget... should I **remove** LyX 2.3.1 first,
> and then install v. 2.3.3?
>
> It's not necessary, but it can't hurt, either.
>
> Riki
>
>
>
>
> *From:* lyx-users@lists.lyx.org 
>  *On Behalf Of *Sergio Celani
> *Sent:* Thursday, June 27, 2019 14:17
> *To:* lyx-users  
> *Subject:* Re: [ANNOUNCE] LyX 2.3.3
>
>
>
> Many thanks to all the developers for this amazing software   Run in
> windows without problems 
>
> Regards
>
>
>
> Sergio
>
>
>
> El jue., 27 jun. 2019 a las 2:05, Dr Eberhard Lisse ()
> escribió:
>
> Idem on MacOs 10.14.5
>
> el
>
> On 2019-06-25 20:18 , Rich Shepard wrote:
> > On Tue, 25 Jun 2019, Richard Kimberly Heck wrote:
> >
> >> Public release of LyX version 2.3.3
> >
> > Thank all of you developers. 2.3.3 builds, loads, and runs on
> > Slackware-14.2.
> >
> > Regards,
> >
> > Rich
> >
> >
>
>
> Hi all,

Any idea when Liviu's PPA and/or the official Debian release are going to
be updated to 2.3.3? I just had LyX 2.3.2 crash on me (the Instant Preview
Math bug) and I see that the bug is fixed in 2.3.3, so I was hoping to
upgrade without having to build from source.

Maria


Re: Image paths

2019-06-07 Thread Maria Gouskova
On Fri, Jun 7, 2019 at 11:16 AM Maria Gouskova  wrote:
>
> On Fri, Jun 7, 2019 at 11:03 AM Rubin, Paul  wrote:
> >
> > On 6/7/19 10:29 AM, Maria Gouskova wrote:
> > > Hi all,
> > >
> > > There seems to be a change in how LyX is handling paths to images--I
> > > haven't done the homework on tracking down if and when this was
> > > introduced, but I was wondering whether it would be something that
> > > could be undone?
> > >
> > > Here is the problem. I would like to be able to refer to the following:
> > >
> > > ~/place/to/file/image.pdf
> > >
> > > without LyX converting it to
> > >
> > > /home/dirname/place/to/file/image.pdf
> > >
> > > It didn't do this in the past, but seems to now. I don't think I've
> > > changed anything in the configuration.
> > >
> > > The reason I need paths to stay un-expanded on a per-user basis is
> > > that I sometimes switch computers, and sometimes am co-authoring with
> > > other people, so their home directories are obviously going to be
> > > different. Is there any way to force LyX to not edit those paths?
> > >
> > > I saw some discussion of relative paths on the list in the past, but
> > > it wasn't resolved, as far as I could see.
> > >
> > > Maria
> > Pending resolution of this, I can suggest a possible workaround. It
> > assumes that the other computers you work on are running some form of
> > Linux and that their owners are cooperative. On each machine, you could
> > create, in the directory containing the LyX file, a separate symlink to
> > each directory used in the document, and then use the names given to
> > those symlinks in the image paths. For example:
> >
> > ln -s ~/place/to/file/ imagePath (in the directory containing the .lyx file)
> >
> > and then give the graphic path to LyX as the relative path
> > "imagePath/image.pdf".
> >
> > It's a bit of a PITA, but on my system it seems to work.
> >
> > Paul
>
> Yep, this will work on my Linux machines. Just have to check with a
> Mac OS co-author to see if it works on her system, too. Thanks!

Ugh, no, this caused another problem--please do NOT try this in
Dropbox. Dropbox interprets symlinks as an instruction to upload the
entire linked directory to the relevant folder.

https://www.paulingraham.com/dropbox-and-symlinks.html

I'll wait for the fix to arrive...


Re: Image paths

2019-06-07 Thread Maria Gouskova
On Fri, Jun 7, 2019 at 11:03 AM Rubin, Paul  wrote:
>
> On 6/7/19 10:29 AM, Maria Gouskova wrote:
> > Hi all,
> >
> > There seems to be a change in how LyX is handling paths to images--I
> > haven't done the homework on tracking down if and when this was
> > introduced, but I was wondering whether it would be something that
> > could be undone?
> >
> > Here is the problem. I would like to be able to refer to the following:
> >
> > ~/place/to/file/image.pdf
> >
> > without LyX converting it to
> >
> > /home/dirname/place/to/file/image.pdf
> >
> > It didn't do this in the past, but seems to now. I don't think I've
> > changed anything in the configuration.
> >
> > The reason I need paths to stay un-expanded on a per-user basis is
> > that I sometimes switch computers, and sometimes am co-authoring with
> > other people, so their home directories are obviously going to be
> > different. Is there any way to force LyX to not edit those paths?
> >
> > I saw some discussion of relative paths on the list in the past, but
> > it wasn't resolved, as far as I could see.
> >
> > Maria
> Pending resolution of this, I can suggest a possible workaround. It
> assumes that the other computers you work on are running some form of
> Linux and that their owners are cooperative. On each machine, you could
> create, in the directory containing the LyX file, a separate symlink to
> each directory used in the document, and then use the names given to
> those symlinks in the image paths. For example:
>
> ln -s ~/place/to/file/ imagePath (in the directory containing the .lyx file)
>
> and then give the graphic path to LyX as the relative path
> "imagePath/image.pdf".
>
> It's a bit of a PITA, but on my system it seems to work.
>
> Paul

Yep, this will work on my Linux machines. Just have to check with a
Mac OS co-author to see if it works on her system, too. Thanks!


Image paths

2019-06-07 Thread Maria Gouskova
Hi all,

There seems to be a change in how LyX is handling paths to images--I
haven't done the homework on tracking down if and when this was
introduced, but I was wondering whether it would be something that
could be undone?

Here is the problem. I would like to be able to refer to the following:

~/place/to/file/image.pdf

without LyX converting it to

/home/dirname/place/to/file/image.pdf

It didn't do this in the past, but seems to now. I don't think I've
changed anything in the configuration.

The reason I need paths to stay un-expanded on a per-user basis is
that I sometimes switch computers, and sometimes am co-authoring with
other people, so their home directories are obviously going to be
different. Is there any way to force LyX to not edit those paths?

I saw some discussion of relative paths on the list in the past, but
it wasn't resolved, as far as I could see.

Maria


Re: Import LaTeX (plain) dialog

2019-03-04 Thread Maria Gouskova
On Fri, Mar 1, 2019 at 1:50 PM Paul A. Rubin  wrote:
>
> On 3/1/19 2:08 AM, Kornel Benko wrote:
> > Am Donnerstag, 28. Februar 2019 23:22:06 CET schrieb Paul A. Rubin 
> > :
> >> On 2/28/19 5:48 PM, Jean-Marc Lasgouttes wrote:
> >>> Le 28/02/2019 à 21:58, Paul A. Rubin a écrit :
>  I'm on my laptop now, which is running a newer version of Mint (19.1
>  Tessa) than my desktop but the same desktop environment (MATE) and
>  the same version of LyX (2.3.2, installed from Liviu's repo), and on
>  my laptop I see the same phenomenon that you do. Not only does the
>  file dialog not show the .tex files, the layout of the dialog matches
>  your screen shot (and not my screen shot from Sylvia).
> 
>  As time permits, I'll try to run the desktop and laptop side by side
>  and see if I can figure out where the difference occurs.
> >>> Could it be a metter of using native file dialogs or not? This is the
> >>> newish \use_native_filedialog setting in preferences (or in lyxrc.dist).
> >>>
> >>> Sorry, I cannot check right now.
> >>>
> >>> JMarc
> >>>
> >> JMarc:
> >>
> >> Where would I find that setting. I don't see it anywhere in the
> >> preferences dialog, and it's not in any file I can find.
> > In preferences add the line
> >   \use_native_filedialog false
> > or
> >   \use_native_filedialog true
> >
> >> Paul
> >   Kornel
> >
> JMarc and Kornel (and Riki and Scott on the dev list): Thanks. This has
> no effect on my desktop, but eliminates the symptoms on the laptop.
>
> Maria and John: If you care to, try adding "\use_native_dialog false" to
> ~/.lyx/preferences and see if that helps. It fixed my laptop.

This did it, thanks!

Maria


Re: Import LaTeX (plain) dialog

2019-02-28 Thread Maria Gouskova
On Thu, Feb 28, 2019 at 1:34 PM Paul A. Rubin  wrote:
>
> On 2/28/19 12:50 PM, Maria Gouskova wrote:
> > On Thu, Feb 28, 2019 at 11:00 AM Paul A. Rubin  wrote:
> >> On 2/28/19 10:39 AM, Maria Gouskova wrote:
> >>> On Thu, Feb 28, 2019 at 9:36 AM Paul A. Rubin  wrote:
> >>>
> >> Interesting. What version of Qt do you use (4.8.7 here), and what
> >> desktop environment for Sarah (MATE here)? Did you compile LyX yourself
> >> or get a binary somewhere?
> > The desktop environment is Cinnamon.  But it's not Cinnamon vs.
> > MATE--I just logged into MATE and it's got the same issue here.
> Does your file dialog look the same in MATE, or does it look like mine?
> In particular, in MATE does the file filter ("Files of type:") show the
> full details ("LaTeX (plain) (*.tex)")?
> >

No, I am having the same problem regardless of the desktop
environment. MATE and Cinnamon both show an empty window and no .tex
files are visible until I select "All files".

> I wonder if this could be a MIME-type issue? If you go to the relevant
> directory in your file manager (Caja in my case), right click one of the
> .tex files and click on "Properties", what type is it? On my system, the
> MIME type is "TeX document (text/x-tex)".

No, the MIME type is correct (same as yours)--.tex files are TeX documents.


Re: Import LaTeX (plain) dialog

2019-02-28 Thread Maria Gouskova
On Thu, Feb 28, 2019 at 11:00 AM Paul A. Rubin  wrote:
>
> On 2/28/19 10:39 AM, Maria Gouskova wrote:
> > On Thu, Feb 28, 2019 at 9:36 AM Paul A. Rubin  wrote:
> >> On 2/28/19 8:24 AM, Maria Gouskova wrote:
> >>> Hi all,
> >>>
> >>> Hopefully a quickie--I cannot tell if it's an OS issue or a LyX GUI
> >>> issue. I'm on Linux Mint Sarah, LyX 2.3.2. When I go to
> >>> File>Import>LaTeX (plain), and the LaTeX file type is chosen in the
> >>> drop-down menu in the file open dialog, no .tex files show up. All
> >>> files (including .tex ones) are visible when I choose "All Files".
> >>>
> >>> And unrelatedly, in the Export As dialog, the drop-down file type menu
> >>> has a number of duplicates: six different LaTeX options, unlabeled,
> >>> four Plain Texts, and several Open Documents.
> >>>
> >>> Maria
> >> Maria,
> >>
> >> I'm also on Mint Sarah, LyX 2.3.2. When I select File > Import > LaTeX
> >> (plain) and navigate to a folder containing .tex files, I see them (with
> >> the filter set to "LaTeX (plain) (*.tex)"). Can you upload a screen shot
> >> of what you are seeing (or not seeing)? It would help if you used a
> >> small directory, so that all the files appeared in the window (no
> >> scrolling required).
> > Screenshots attached.
> >
> > I've verified that this is an issue on both of my Mint Sarah
> > installations. I didn't copy the configurations between these, so it's
> > independent. (And the one that the screenshots are from is barely
> > configured--not my main machine for writing).
> >
> >
> Interesting. What version of Qt do you use (4.8.7 here), and what
> desktop environment for Sarah (MATE here)? Did you compile LyX yourself
> or get a binary somewhere?

The desktop environment is Cinnamon.  But it's not Cinnamon vs.
MATE--I just logged into MATE and it's got the same issue here.

Here is the LyX build Info, in case that helps:

LyX 2.3.2 (2018-12-08)
Configuration
Host type: x86_64-pc-linux-gnu
Special build flags: build=release std-regex use-hunspell use-aspell use-enchant
Bundled libraries: (none)
C++ Compiler: g++ (5.4.0)
C++ Compiler flags: -O2 -std=c++14
C++ Compiler user flags:
Linker flags:
Linker user flags:
Qt Frontend:
Qt version: 4.8.7
Packaging: posix
LyX binary dir: /usr/bin
LyX files dir: /usr/share/lyx

I cannot remember how I installed LyX originally, to be honest. But I
have this in my var/lib/apt/lists:

ppa.launchpad.net_lyx-devel_release_ubuntu_dists_xenial_InRelease
ppa.launchpad.net_lyx-devel_release_ubuntu_dists_xenial_main_binary-amd64_Packages
ppa.launchpad.net_lyx-devel_release_ubuntu_dists_xenial_main_binary-i386_Packages
ppa.launchpad.net_lyx-devel_release_ubuntu_dists_xenial_main_i18n_Translation-en
ppa.launchpad.net_lyx-devel_release_ubuntu_dists_xenial_main_source_Sources

Which I think means that at some point I added Liviu's PPA and have
been just getting it with apt updates.

> Your file dialog looks substantially different from mine (screen shot
> attached). Some of that may be MATE v. Cinnamon (or whatever you're
> using), but I find it interesting that your filter drop-down just says
> "LaTeX" whereas mine is specific as to the "flavor" of LaTeX. The window
> title is properly specific (and matches what I get). The reason I'm so
> interested in the filter button is that I'm wondering whether the filter
> you are getting is incorrect (for instance, fails to specify .tex as the
> extension it wants).

I am fairly sure this is a virgin install, without any configuration
tinkering--I don't do much personalizing because I switch between
machines so much.

Maria


> Also, I misspoke (slightly) -- I forgot I had upgraded from Sarah to
> Sylvia. It made no difference in how LyX works, at least for me.
>
> Paul
>


Re: Import LaTeX (plain) dialog

2019-02-28 Thread Maria Gouskova
On Thu, Feb 28, 2019 at 9:36 AM Paul A. Rubin  wrote:
>
> On 2/28/19 8:24 AM, Maria Gouskova wrote:
> > Hi all,
> >
> > Hopefully a quickie--I cannot tell if it's an OS issue or a LyX GUI
> > issue. I'm on Linux Mint Sarah, LyX 2.3.2. When I go to
> > File>Import>LaTeX (plain), and the LaTeX file type is chosen in the
> > drop-down menu in the file open dialog, no .tex files show up. All
> > files (including .tex ones) are visible when I choose "All Files".
> >
> > And unrelatedly, in the Export As dialog, the drop-down file type menu
> > has a number of duplicates: six different LaTeX options, unlabeled,
> > four Plain Texts, and several Open Documents.
> >
> > Maria
> Maria,
>
> I'm also on Mint Sarah, LyX 2.3.2. When I select File > Import > LaTeX
> (plain) and navigate to a folder containing .tex files, I see them (with
> the filter set to "LaTeX (plain) (*.tex)"). Can you upload a screen shot
> of what you are seeing (or not seeing)? It would help if you used a
> small directory, so that all the files appeared in the window (no
> scrolling required).

Screenshots attached.

I've verified that this is an issue on both of my Mint Sarah
installations. I didn't copy the configurations between these, so it's
independent. (And the one that the screenshots are from is barely
configured--not my main machine for writing).



> Regarding the Export As dialog, the file filter options there match the
> file formats recognized by LyX (Tools > Preferences... > File Handling >
> Formats > Format:). I don't use most of them, but I presume the
> assumption is that source files for various formats might contain some
> differences. If the length of the filter list is bothersome, I suppose
> you could always delete the ones you do not anticipate using (Remove
> button in the file handling dialog).
>
> Paul
>
>


Import LaTeX (plain) dialog

2019-02-28 Thread Maria Gouskova
Hi all,

Hopefully a quickie--I cannot tell if it's an OS issue or a LyX GUI
issue. I'm on Linux Mint Sarah, LyX 2.3.2. When I go to
File>Import>LaTeX (plain), and the LaTeX file type is chosen in the
drop-down menu in the file open dialog, no .tex files show up. All
files (including .tex ones) are visible when I choose "All Files".

And unrelatedly, in the Export As dialog, the drop-down file type menu
has a number of duplicates: six different LaTeX options, unlabeled,
four Plain Texts, and several Open Documents.

Maria


Re: Beamer/Covington conflict

2018-10-02 Thread Maria Gouskova
On Tue, Oct 2, 2018 at 2:20 AM Jürgen Spitzmüller  wrote:

> Am Montag, den 01.10.2018, 19:41 -0400 schrieb Maria Gouskova:
> > Dear LyX users,
> >
> > I am using Beamer with the Linguistics module loaded, and I'd like to
> > use Covington numbering inside the presentations (as well as the
> > handout, beamer-article style). There appears to be a conflict
> > between the \example and \examples environments in Beamer and the
> > Linguistics module (covington.sty) environments by the same name. Is
> > there an elegant way to resolve this in LyX?
>
> You seem to be using an old version of covington. This issue should be
> fixed as of covington 1.1 (2016-06-06). The linguistics module uses the
> disambiguated environment covexample[s] as of LyX 2.3.
>

Thanks, Juergen! I upgraded covington to the newer version, and now Beamer
works well, but Beamer-Article still throws an error...

Maria


>
> Jürgen
>
> > By the way, this is more of an issue in the beamer file than in the
> > beamer-article file--the presentation doesn't even compile past the
> > title slide, whereas beamer-article displays the numbered example
> > content after throwing a bunch of errors.
> >
> > Minimal example attached.
> >
> > I am using LyX 2.3.0 on Linux Mint/Deb (the most recent version
> > available in that ppa that's being discussed in the other thread).
> >
> >
>


Beamer/Covington conflict

2018-10-01 Thread Maria Gouskova
Dear LyX users,

I am using Beamer with the Linguistics module loaded, and I'd like to use
Covington numbering inside the presentations (as well as the handout,
beamer-article style). There appears to be a conflict between the \example
and \examples environments in Beamer and the Linguistics module
(covington.sty) environments by the same name. Is there an elegant way to
resolve this in LyX?

By the way, this is more of an issue in the beamer file than in the
beamer-article file--the presentation doesn't even compile past the title
slide, whereas beamer-article displays the numbered example content after
throwing a bunch of errors.

Minimal example attached.

I am using LyX 2.3.0 on Linux Mint/Deb (the most recent version available
in that ppa that's being discussed in the other thread).


beamer_cov_conflict_article.lyx
Description: application/lyx


beamer_cov_conflict.lyx
Description: application/lyx


Re: subscripts and superscripts display problem

2018-07-08 Thread Maria Gouskova
On Sun, Jul 8, 2018 at 11:49 AM, David Pesetsky  wrote:

> When I add text as a subscript or superscript using
> Insert>Formatting>{Sub,Super}script,  Lyx 2.3.0 adds a large onscreen
> horizontal gap before the text.  This appears to be WYSIWYG problem only,
> as the Latex output does not have this problem (and there is no gap, as far
> as the onscreen cursor is concerned).  I posted a screenshot here:
> https://imgur.com/a/FSnSRsP
>
> I don't see anything about this in the bug tracker, so is it something I
> should file as a bug?  Or something I did, without knowing it ...?
>
> -David
>
>
Maybe a Mac-specific GUI problem only? I see a little bit of a gap before
the sub/superscripts, but nothing as wide as that:

https://imgur.com/a/tV1BH93

(Linux Mint, LyX 2.3.0).

Maria


>
>
>


Triangles in forest

2018-03-26 Thread Maria Gouskova
Hi all,

Lyx 2.3.0 here on Linux Mint something. I tried to make the example on the
LinguistLyX wiki work:

https://wiki.lyx.org/LyX/LinguistLyX#toc8

Minimal example attached. I get the following error:

"Package pgfkeys Error: I do not know the key '/tikz/triangle' and I am
going

\end{forest}

This error message was generated by an \errmessage command, so I can't give
any explicit help. Pretend that you're Hercule Poirot: Examine all clues,
and deduce the truth by order and method."

The first tree in my mini-example works just fine, as do more complicated
trees. It's just "triangle" that throws this error. I am no Hercule Poirot
so I turn to you. What am I missing here? The manual for forest is not
super-helpful here.

Maria


test.lyx
Description: application/lyx


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: Covington/Linguistics numbering

2016-10-13 Thread Maria Gouskova
On Thu, Oct 13, 2016 at 11:18 AM, Maria Gouskova <gousk...@gmail.com> wrote:

> Hi all,
>
> So in the Linguistics module, two numbering environments are available:
> consecutive and multiline numbering. Ever since upgrading to 2.2.1, I'm
> having trouble entering multiple consecutive numbering examples--the next
> line is not numbered, so they all behave sort of like multiline until a
> different environment is introduced between two examples. That wasn't a
> problem in older versions (see http://wiki.lyx.org/LyX/LinguistLyX#toc10).
>
> Used to be:
>
> (1) example (consec)
> (2) example (consec)
>
> (1) example (multiline)
>  example (multiline cont'd)
>
> Now (2.2.1):
>
> (1) example (consec)
>  example (consec still)
>
> I know that there is a covington issue in 2.2.1 but have the updated
> version of covington.sty, 1.2, so is this something else? Or have there
> been changes in how this environment works in 2.2x?
>
> Maria
>


Just to clarify, it compiles fine into a PDF, it's just the LyX side that's
kind of confusing. The individual examples aren't labeled as such, so
there's only one blue label in LyX for a block of them and not a new one
per line.

Maria


Covington/Linguistics numbering

2016-10-13 Thread Maria Gouskova
Hi all,

So in the Linguistics module, two numbering environments are available:
consecutive and multiline numbering. Ever since upgrading to 2.2.1, I'm
having trouble entering multiple consecutive numbering examples--the next
line is not numbered, so they all behave sort of like multiline until a
different environment is introduced between two examples. That wasn't a
problem in older versions (see http://wiki.lyx.org/LyX/LinguistLyX#toc10).

Used to be:

(1) example (consec)
(2) example (consec)

(1) example (multiline)
 example (multiline cont'd)

Now (2.2.1):

(1) example (consec)
 example (consec still)

I know that there is a covington issue in 2.2.1 but have the updated
version of covington.sty, 1.2, so is this something else? Or have there
been changes in how this environment works in 2.2x?

Maria


Re: Frame separator

2016-09-07 Thread Maria Gouskova
On Wed, Sep 7, 2016 at 9:02 AM, Joel Kulesza <jkule...@gmail.com> wrote:

> Maria,
>
> The "separator" is no longer explicitly used (it sounds like the
> documentation isn't yet updated).  Check the recent release notes for
> official guidance.
>
> My version: after you're done inputting information in the frame, hit
> Enter / Return a bunch of times and eventually you will get the traditional
> separator line.  I'm likely approaching this is in a clumsy fashion, but it
> is the easiest approach I've found.  That said, immediately inserting a new
> Frame isn't done as easily as I would like.  I still need to figure out of
> there is a better yet quick/easy way to do this.
>
> Regards,
> Joel
>

Hmm, that doesn't do anything over here. I keep hitting "enter", but that
never takes me out of the original frame.

But for anyone else looking for a solution to this, I did dig up an answer.

First of all, apparently, this change was introduced in 2.2.0:

http://git.lyx.org/?p=lyx.git;a=blob_plain;f=lib/RELEASE-NOTES;hb=97a3a64290e3c1afa2fede081ef17736be636c5a

And the solution (detailed in the User Guide section 3.4.6, but the
instructions are out-of-date in the Beamer manual) is to go to Edit>Start
New Environment. This is not specific to Frames but will start a new
instance of whatever environment you're in. If you are in a Frame
environment when you do this, it will insert a separator and start a new
frame.

The next mystery is what to call this in when assigning key bindings?

Maria



>
> On Wed, Sep 7, 2016 at 6:50 AM, Maria Gouskova <gousk...@gmail.com> wrote:
>
>> Hi all,
>>
>> Upgraded to 2.2.1 and having trouble finding the Separator environment
>> for Beamer presentations. I used to have it associated to a key binding,
>> and that doesn't work anymore, but I don't see it in the list of paragraph
>> styles, either.
>>
>> The Beamer manual says this:
>>
>> " Consecutive frames have to be separated from each other. This is done
>> by means of the Separator paragraph style."
>>
>> But for some reason that's not showing in my list.
>> I can work around this for now by copying the separator+frame
>> environments from the Beamer manual, but there must be a better way!
>>
>> I am on Mac OS 10.8, Linguistics module enabled.
>>
>>
>> And, I just checked my Linux installation (LyX 2.0 something), and the
>> Separator style is in the first block of styles visible in the list, near
>> "Standard". It's definitely not there anymore in the Mac version.
>>
>> Maria
>>
>> Maria
>>
>
>


Frame separator

2016-09-07 Thread Maria Gouskova
Hi all,

Upgraded to 2.2.1 and having trouble finding the Separator environment for
Beamer presentations. I used to have it associated to a key binding, and
that doesn't work anymore, but I don't see it in the list of paragraph
styles, either.

The Beamer manual says this:

" Consecutive frames have to be separated from each other. This is done by
means of the Separator paragraph style."

But for some reason that's not showing in my list.
I can work around this for now by copying the separator+frame environments
from the Beamer manual, but there must be a better way!

I am on Mac OS 10.8, Linguistics module enabled.


And, I just checked my Linux installation (LyX 2.0 something), and the
Separator style is in the first block of styles visible in the list, near
"Standard". It's definitely not there anymore in the Mac version.

Maria

Maria


Re: Page numbering

2016-03-29 Thread Maria Gouskova
On Tue, Mar 29, 2016 at 12:29 AM, Gordon Cooper
 wrote:
> This has probably been asked and answered before. Have spent
> half the afternoon looking in Help and User Archives without success.
> Apologies for asking again.
>
> We are working on technical manuals,  authored in Lyx and published
> in html and pdf.  Authoring language is English, with translations happening
> as we find volunteers.  Russian is already done and three more European
> languages are in progress.
>
> Would like the page numbering (in the pdf's) to relate to Sections of the
> manual. Rather than a 1,2,3,4. sequence, I am looking (hoping?)
> for 1-1, 1-2, 1-3,. etc., for the first Section then 2-1,2-2... etc. for
> the
> next, and so on.  These sequences to be recognised in the TOC.
>
> The separation characters do not have to be hyphens, 1.1,
> 1.2 etc, or 1_1, 1_2  would be great.
>
> Why? Briefly, these manuals will be used over several years and most
> certainly have updates/additions. Sectional page numbers will make life
> easier for the editors. Me for one.
>
> Possible?
>
> Gordon
> Tauranga
> New Zealand.

Section 17 on page 16 of the fancyhdr manual talks about this.

http://www.ctan.org/pkg/fancyhdr

Maria


Re: Aliasing, xyling, ps2pdf

2016-01-07 Thread Maria Gouskova
On Wed, Jan 6, 2016 at 5:14 PM, Georg Baum
<georg.b...@post.rwth-aachen.de> wrote:
> Maria Gouskova wrote:
>
>> This is Mac OS 10.8.5, LyX 2.1.4. I suspect I need to define a
>> converter in Preferences/File handling, but am not having much luck
>> finding the answer anywhere.
>
> Correct. If pdftops is in the path, then LyX should automatically define a
> converter
>
> pdftops -eps -f 1 -l 1 $$i $$o
>
> for conversion from PDF (Graphics) to EPS. This one works fine for me with
> your test file. Which converter do you have configured for PDF (Graphics) to
> EPS conversion?
>

I didn't have one defined by default for PDF(graphics) at all. When I
added a PDF(graphics) to EPS converter, it defaulted to:

python -tt $$s/lyx2lyx/lyx2lyx -c big5 $$i > $$o

Which still produces an aliased PDF.

I tried defining it your way, but it seems that pdftops is not
available on my setup. LyX throws up a non-specific error.


I can't debug this properly since I am away from my other machine,
which has Mac OS 10.9x and (as far as I recall) does not have this
problem. Could be a MacTeX version difference? Or just OS-specific?


Re: Aliasing, xyling, ps2pdf

2016-01-07 Thread Maria Gouskova
On Thu, Jan 7, 2016 at 3:35 PM, Georg Baum
<georg.b...@post.rwth-aachen.de> wrote:
> Maria Gouskova wrote:
>
>> On Wed, Jan 6, 2016 at 5:14 PM, Georg Baum
>> <georg.b...@post.rwth-aachen.de> wrote:
>>> Maria Gouskova wrote:
>>>
>>>> This is Mac OS 10.8.5, LyX 2.1.4. I suspect I need to define a
>>>> converter in Preferences/File handling, but am not having much luck
>>>> finding the answer anywhere.
>>>
>>> Correct. If pdftops is in the path, then LyX should automatically define
>>> a converter
>>>
>>> pdftops -eps -f 1 -l 1 $$i $$o
>>>
>>> for conversion from PDF (Graphics) to EPS. This one works fine for me
>>> with your test file. Which converter do you have configured for PDF
>>> (Graphics) to EPS conversion?
>>>
>>
>> I didn't have one defined by default for PDF(graphics) at all. When I
>> added a PDF(graphics) to EPS converter, it defaulted to:
>>
>> python -tt $$s/lyx2lyx/lyx2lyx -c big5 $$i > $$o
>>
>> Which still produces an aliased PDF.
>>
>> I tried defining it your way, but it seems that pdftops is not
>> available on my setup. LyX throws up a non-specific error.
>
> Then you need to install pdftops and either put the executable in a
> directory which is listed in the PATH environment variable, or define the
> converter using the absolute path to the installed pdftops (e.g. if the
> executable is located in /opt/xpdf/bin/pdftops, the converter would read
>
> /opt/xpdf/bin/pdftops -eps -f 1 -l 1 $$i $$o
>
> ). You can download a binary from http://www.foolabs.com/xpdf/download.html,
> but since I am not a Mac expert I do not know if there are better ways to
> install it.
>
>> I can't debug this properly since I am away from my other machine,
>> which has Mac OS 10.9x and (as far as I recall) does not have this
>> problem. Could be a MacTeX version difference? Or just OS-specific?
>
> Probably not MaCTeX speicfic. My guess would be that on the other machine
> either pdftops or ps2eps (from ghostscript) is installed and found by LyX.
> BTW, pdftops is better than pdf2ps according to
> http://stefaanlippens.net/pdf2ps_vs_pdftops and also my own experience.
>
>
> Georg
>

Okay, thanks--I probably won't do this since I have found a workaround
for my original problem, and the figures and trees all come out
looking good now. I don't usually use ps2pdf anyway, it was only
because of xyling's peculiarity.

By the way, if anyone stumbles upon this discussion in the future, the
solution was to edit the xyling.sty file as follows:

Original:
\RequirePackage[color,all, dvips]{xy}

Change to:
\RequirePackage[color,all]{xy}

This will take away the ability to create color branches in a tree,
which is probably not a big loss. I can't remember ever seeing colored
branches in a published linguistics paper.


Re: Aliasing, xyling, ps2pdf

2016-01-06 Thread Maria Gouskova
On Wed, Jan 6, 2016 at 11:03 AM, Maria Gouskova <gousk...@gmail.com> wrote:
> Hi all,
>
> I am having trouble with aliasing graphics in the PDF. I have a vector
> graphics file (in PDF format, generated in R), and I am using the
> ps2pdf preview method because I am using an xypic-based tree package.
> The problem is, ps2pdf renders the graphics with aliasing, which looks
> really awful. But previewing with pdflatex kills the branches in the
> tree, a known issue with xypic/pdflatex. I am attaching a minimal
> example and the two PDFs I am getting.
>
> This is Mac OS 10.8.5, LyX 2.1.4. I suspect I need to define a
> converter in Preferences/File handling, but am not having much luck
> finding the answer anywhere.
>
> Maria


P.S. I was able to find a workaround by modifying xyling.sty by hand,
so I can now use pdflatex with xyling. But I am still curious about
what's causing the aliasing in ps2pdf.


Re: XeTeX \sups already defined

2015-10-24 Thread Maria Gouskova
On Fri, Oct 23, 2015 at 4:56 AM, Charles de Miramon
<charlesdemira...@gmail.com> wrote:
> Maria Gouskova wrote:
>
>> Hi all,
>>
>> Elsevier wants me to create a .tex file for them that uses
> Arial--a
>> non-TeX font. When I go to make the PDF using XeTeX, I get
> the LaTeX
>> error "Command \sups already defined".
>>
>> A bit of digging suggests this is because of an
> incompatibility
>> between the TIPA package (which I need to use in order to
> use IPA with
>> the qtree package). Is there a workaround for this?
>>
>> Thank you,
>>
>> Maria
>
> Have you tried solution 6 of
> http://tex.stackexchange.com/questions/273483/revisiting-tipa-and-fontspec
>
> Basically you should not use the tipa package but use the
> texipa macro of the fontspec package.
>
> I have never used the IPA module in LyX but you may have to
> tweak it to suppress the loading of the ipa package
>
> You redefine the IPA environment for compatibility reasons
> with qtree.
>
> If Arial has the ipa glyphs you can keep the font for typing
> the ipa text. If not, you have to instruct fontspec to use a
> font with the available glyphs as explained above.
>
> Cheers,
> Charles
>

Thanks, Charles--it was simpler than that even. I thought for some
reason that one had to load TIPA in the preamble in order to use it in
Qtree, but everything works without it, so simply removing
\usepackage(tipa) from the preamble in the XeTeX version fixed my
problem.

So the problem here is that TIPA needs to be called expressly even if
the Linguistics module is loaded, if you want to use IPA in syntactic
trees. I have a few shorthand commands for IPA symbols in my preamble,
which also would not work without calling TIPA. But TIPA does not need
to be loaded for XeTeX/non-system fonts even if IPA symbols are called
in qtree, unless there is a conflict between custom-defined function
names and whatever XeTeX introduces (apparently \dz{} is taken, for
example).

For the two or three people in the world using LyX with IPA and
syntactic trees, I am including two example files, one that uses Arial
and another one that uses plain TeX with the linguistics module.

Maria


example_xetex_tree.lyx
Description: Binary data


example_tipa_qtree.lyx
Description: Binary data


XeTeX \sups already defined

2015-10-22 Thread Maria Gouskova
Hi all,

Elsevier wants me to create a .tex file for them that uses Arial--a
non-TeX font. When I go to make the PDF using XeTeX, I get the LaTeX
error "Command \sups already defined".

A bit of digging suggests this is because of an incompatibility
between the TIPA package (which I need to use in order to use IPA with
the qtree package). Is there a workaround for this?

Thank you,

Maria


Re: beamer and lyx 2.1.3

2015-05-12 Thread Maria Gouskova
On Tue, May 12, 2015 at 12:25 AM, Simplice Dossou-Gbété 
simplice.dossou-gb...@univ-pau.fr wrote:

 i would like to add short title to a title when using beamer with lyx
 2.1.3.
 i can't find out how to do that.  is someone to tell how to proceed?
 best regards


This is discussed on The title page frame of the Beamer manual
(HelpSpecific ManualsBeamer Presentations).

If you do not see the option, it is not accommodated by the template you
have chosen. The shadow theme definitely allows for it, so try that first.


Re: beamer and lyx 2.1.3

2015-05-12 Thread Maria Gouskova
On Tue, May 12, 2015 at 12:25 AM, Simplice Dossou-Gbété 
simplice.dossou-gb...@univ-pau.fr wrote:

 i would like to add short title to a title when using beamer with lyx
 2.1.3.
 i can't find out how to do that.  is someone to tell how to proceed?
 best regards


This is discussed on The title page frame of the Beamer manual
(HelpSpecific ManualsBeamer Presentations).

If you do not see the option, it is not accommodated by the template you
have chosen. The shadow theme definitely allows for it, so try that first.


Re: beamer and lyx 2.1.3

2015-05-12 Thread Maria Gouskova
On Tue, May 12, 2015 at 12:25 AM, Simplice Dossou-Gbété <
simplice.dossou-gb...@univ-pau.fr> wrote:

> i would like to add short title to a title when using beamer with lyx
> 2.1.3.
> i can't find out how to do that.  is someone to tell how to proceed?
> best regards
>
>
This is discussed on "The title page" frame of the Beamer manual
(Help>Specific Manuals>Beamer Presentations).

If you do not see the option, it is not accommodated by the template you
have chosen. The "shadow" theme definitely allows for it, so try that first.


Re: square brackets in linguistic tree structurs

2015-02-02 Thread Maria Gouskova
Use the qtree package. The following code should do it:

\Tree[.CP [.PP {lamata [Op] } ] [.C' [.C_0 ] [.AGRsP ] ] ]


On Mon, Feb 2, 2015 at 2:13 PM, Michael Berger id...@online.de wrote:

  Hi ,
 in writing linguistic tree structures square brackets are syntax reserved
 elements.
 The screenshot shows (Op) whereas [Op] would be desired.
 Can somebody explain if and how that could be possibly accomplished?

 Thanks and cheers
 --
 Michael Berger, Dipl. Ing.
 Im Borngrund 7a
 D-35606 Solms
 id...@online.de
 Tel:  06442 706509
 Fax: 004932121247536






Re: square brackets in linguistic tree structurs

2015-02-02 Thread Maria Gouskova
Use the qtree package. The following code should do it:

\Tree[.CP [.PP {lamata [Op] } ] [.C' [.C_0 ] [.AGRsP ] ] ]


On Mon, Feb 2, 2015 at 2:13 PM, Michael Berger id...@online.de wrote:

  Hi ,
 in writing linguistic tree structures square brackets are syntax reserved
 elements.
 The screenshot shows (Op) whereas [Op] would be desired.
 Can somebody explain if and how that could be possibly accomplished?

 Thanks and cheers
 --
 Michael Berger, Dipl. Ing.
 Im Borngrund 7a
 D-35606 Solms
 id...@online.de
 Tel:  06442 706509
 Fax: 004932121247536






Re: square brackets in linguistic tree structurs

2015-02-02 Thread Maria Gouskova
Use the qtree package. The following code should do it:

\Tree[.CP [.PP {lamata [Op] } ] [.C' [.C_0 ] [.AGRsP ] ] ]


On Mon, Feb 2, 2015 at 2:13 PM, Michael Berger  wrote:

>  Hi ,
> in writing linguistic tree structures square brackets are syntax reserved
> elements.
> The screenshot shows (Op) whereas [Op] would be desired.
> Can somebody explain if and how that could be possibly accomplished?
>
> Thanks and cheers
> --
> Michael Berger, Dipl. Ing.
> Im Borngrund 7a
> D-35606 Solms
> id...@online.de
> Tel:  06442 706509
> Fax: 004932121247536
>
>
>
>


Re: LyX preview problem

2014-10-16 Thread Maria Gouskova
Hi all,

I am having a similar problem with a related package--xyling (it
relies on xypic, just has some extra macros for linguistic trees).

OS 10.6.8
LyX 2.1.2

File attached. When I hit ps2pdf to preview, the file just does not
appear, although LyX thinks it's successfully made a PDF. I can create
a pdf from a minimal file using Postscript, but something is wrong
with the PS2PDF script. Unfortunately, I cannot generate a PDF from my
more complex file using Postscript--that one also reports successful
file creation, but not PS or PDF appears.

Oh, and there is no cx folder in /var/folders on my system.

XeTeX and LuaTeX both have command definition conflicts for xyling,
but I've had problems generating PDFs with the simplest files using
these methods since about 2.1 (both return an error about the \sups
command being already defined). Not using \sups in the test file, as
you can see.

Maria

On Wed, Oct 15, 2014 at 4:28 PM, Stephan Witt st.w...@gmx.net wrote:
 Am 14.10.2014 um 23:23 schrieb Lauen, Douglas L dla...@unc.edu:

 Stephan,

 Yes! going to document settings, fonts, and then unclicking “Use non-Tex 
 fonts…” solves the problem with displaying my diagram. Thank you.
 Now with that option unchecked, I cannot typeset my document using 
 command-R. I guess I can use other ways to view my output, though.
 Do you know why command-R doesn’t work? Is there a way to fix that?

 Dough,

 in case of a Non-TeX fonts document Command-R is using the XeTeX compiler to 
 create the PDF.
 Some content of the document makes it requiring this compiler. Without the 
 option checked
 LyX uses the normal pdflatex compiler and e.g. some special foreign 
 characters or math symbols
 are a problem here.

 Before my update I did not encounter this, so something must be different 
 now!

 This I cannot answer, sorry. But you're right - there must be the problem.
 You've talking about your update to 10.9 Mavericks? Perhaps a python problem 
 indeed.
 You may check the protocols inside the directory

 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf3


 You have to look inside the directory you can see in the message window.
 The interesting file is named like lyxpreviewZ33063.log or similar.

 Stephan



 On Oct 14, 2014, at 4:44 PM, Stephan Witt st.w...@gmx.net wrote:

 Am 14.10.2014 um 19:15 schrieb Lauen, Douglas L dla...@unc.edu:

 Stephan, Thank you for the suggestion. This is odd. I don’t recall having 
 this problem before my upgrade to Mavericks. And very odd that is crops up 
 in one file but not another.

 It looks like python fails to process something…

 Hi Dough,

 note the difference in the two calls: the 2nd one has an additional switch 
 --latex=xelatex.
 This may be caused by the XeTeX/LuaTeX setting in the document settings. 
 Perhaps you can live
 without it?

 Stephan


 Here is the message log from a change to the figure in displays.lyx
 —

 13:12:02.636: (dialog-toggle progress)graphics/PreviewLoader.cpp (468): 
 adding snippet:
 $\xymatrix{  U\ar[dl]\ar[dr]\\
 X\ar[rr]  c  Y
 }
 $
 graphics/PreviewLoader.cpp (530): PreviewLoader::startLoading()
 graphics/PreviewLoader.cpp (665): PreviewLoader::finishedInProgress(0): 
 processing succeeded for python -tt 
 /Applications/LyX.app/Contents/Resources/scripts/lyxpreview2bitmap.py 
 --png 
 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf3/lyxpreviewq15278.tex
  --dpi 108 --fg 00 --bg faf0e6 --bibtex=bibtex
 Format.cpp (394): Recognised Fileformat: png
 graphics/GraphicsCacheItem.cpp (379): 
 [CacheItem::Impl::convertToDisplayFormat]
 Attempting to convert image file: 
 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf3/lyxpreviewq152781.png
 with displayed filename: 
 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf3/lyxpreviewq152781.png
 Format.cpp (394): Recognised Fileformat: png
 graphics/GraphicsCacheItem.cpp (386):
 The file contains png format data.
 graphics/GraphicsCacheItem.cpp (391): No conversion needed (from == to)!
 graphics/GraphicsCacheItem.cpp (294): Loading image.
 graphics/GraphicsCacheItem.cpp (300): Image loading succeeded.
 —


 Here is the message log from a similar change to the figure in 
 doesnotdisplay.lyx

 —


 13:10:42.140: (dialog-toggle progress)graphics/PreviewLoader.cpp (468): 
 adding snippet:
 $\xymatrix{  U\ar[dl]\ar[dr]\\
 X\ar[rr]  c  Y
 }
 $
 graphics/PreviewLoader.cpp (530): PreviewLoader::startLoading()
 graphics/PreviewLoader.cpp (665): PreviewLoader::finishedInProgress(1): 
 processing failed for python -tt 
 /Applications/LyX.app/Contents/Resources/scripts/lyxpreview2bitmap.py 
 --png 
 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf2/lyxpreviewZ15278.tex
  --dpi 108 --fg 00 --bg faf0e6 

Re: LyX preview problem

2014-10-16 Thread Maria Gouskova
Hi all,

I am having a similar problem with a related package--xyling (it
relies on xypic, just has some extra macros for linguistic trees).

OS 10.6.8
LyX 2.1.2

File attached. When I hit ps2pdf to preview, the file just does not
appear, although LyX thinks it's successfully made a PDF. I can create
a pdf from a minimal file using Postscript, but something is wrong
with the PS2PDF script. Unfortunately, I cannot generate a PDF from my
more complex file using Postscript--that one also reports successful
file creation, but not PS or PDF appears.

Oh, and there is no cx folder in /var/folders on my system.

XeTeX and LuaTeX both have command definition conflicts for xyling,
but I've had problems generating PDFs with the simplest files using
these methods since about 2.1 (both return an error about the \sups
command being already defined). Not using \sups in the test file, as
you can see.

Maria

On Wed, Oct 15, 2014 at 4:28 PM, Stephan Witt st.w...@gmx.net wrote:
 Am 14.10.2014 um 23:23 schrieb Lauen, Douglas L dla...@unc.edu:

 Stephan,

 Yes! going to document settings, fonts, and then unclicking “Use non-Tex 
 fonts…” solves the problem with displaying my diagram. Thank you.
 Now with that option unchecked, I cannot typeset my document using 
 command-R. I guess I can use other ways to view my output, though.
 Do you know why command-R doesn’t work? Is there a way to fix that?

 Dough,

 in case of a Non-TeX fonts document Command-R is using the XeTeX compiler to 
 create the PDF.
 Some content of the document makes it requiring this compiler. Without the 
 option checked
 LyX uses the normal pdflatex compiler and e.g. some special foreign 
 characters or math symbols
 are a problem here.

 Before my update I did not encounter this, so something must be different 
 now!

 This I cannot answer, sorry. But you're right - there must be the problem.
 You've talking about your update to 10.9 Mavericks? Perhaps a python problem 
 indeed.
 You may check the protocols inside the directory

 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf3


 You have to look inside the directory you can see in the message window.
 The interesting file is named like lyxpreviewZ33063.log or similar.

 Stephan



 On Oct 14, 2014, at 4:44 PM, Stephan Witt st.w...@gmx.net wrote:

 Am 14.10.2014 um 19:15 schrieb Lauen, Douglas L dla...@unc.edu:

 Stephan, Thank you for the suggestion. This is odd. I don’t recall having 
 this problem before my upgrade to Mavericks. And very odd that is crops up 
 in one file but not another.

 It looks like python fails to process something…

 Hi Dough,

 note the difference in the two calls: the 2nd one has an additional switch 
 --latex=xelatex.
 This may be caused by the XeTeX/LuaTeX setting in the document settings. 
 Perhaps you can live
 without it?

 Stephan


 Here is the message log from a change to the figure in displays.lyx
 —

 13:12:02.636: (dialog-toggle progress)graphics/PreviewLoader.cpp (468): 
 adding snippet:
 $\xymatrix{  U\ar[dl]\ar[dr]\\
 X\ar[rr]  c  Y
 }
 $
 graphics/PreviewLoader.cpp (530): PreviewLoader::startLoading()
 graphics/PreviewLoader.cpp (665): PreviewLoader::finishedInProgress(0): 
 processing succeeded for python -tt 
 /Applications/LyX.app/Contents/Resources/scripts/lyxpreview2bitmap.py 
 --png 
 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf3/lyxpreviewq15278.tex
  --dpi 108 --fg 00 --bg faf0e6 --bibtex=bibtex
 Format.cpp (394): Recognised Fileformat: png
 graphics/GraphicsCacheItem.cpp (379): 
 [CacheItem::Impl::convertToDisplayFormat]
 Attempting to convert image file: 
 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf3/lyxpreviewq152781.png
 with displayed filename: 
 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf3/lyxpreviewq152781.png
 Format.cpp (394): Recognised Fileformat: png
 graphics/GraphicsCacheItem.cpp (386):
 The file contains png format data.
 graphics/GraphicsCacheItem.cpp (391): No conversion needed (from == to)!
 graphics/GraphicsCacheItem.cpp (294): Loading image.
 graphics/GraphicsCacheItem.cpp (300): Image loading succeeded.
 —


 Here is the message log from a similar change to the figure in 
 doesnotdisplay.lyx

 —


 13:10:42.140: (dialog-toggle progress)graphics/PreviewLoader.cpp (468): 
 adding snippet:
 $\xymatrix{  U\ar[dl]\ar[dr]\\
 X\ar[rr]  c  Y
 }
 $
 graphics/PreviewLoader.cpp (530): PreviewLoader::startLoading()
 graphics/PreviewLoader.cpp (665): PreviewLoader::finishedInProgress(1): 
 processing failed for python -tt 
 /Applications/LyX.app/Contents/Resources/scripts/lyxpreview2bitmap.py 
 --png 
 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf2/lyxpreviewZ15278.tex
  --dpi 108 --fg 00 --bg faf0e6 

Re: LyX preview problem

2014-10-16 Thread Maria Gouskova
Hi all,

I am having a similar problem with a related package--xyling (it
relies on xypic, just has some extra macros for linguistic trees).

OS 10.6.8
LyX 2.1.2

File attached. When I hit ps2pdf to preview, the file just does not
appear, although LyX thinks it's successfully made a PDF. I can create
a pdf from a minimal file using Postscript, but something is wrong
with the PS2PDF script. Unfortunately, I cannot generate a PDF from my
more complex file using Postscript--that one also reports successful
file creation, but not PS or PDF appears.

Oh, and there is no cx folder in /var/folders on my system.

XeTeX and LuaTeX both have command definition conflicts for xyling,
but I've had problems generating PDFs with the simplest files using
these methods since about 2.1 (both return an error about the \sups
command being already defined). Not using \sups in the test file, as
you can see.

Maria

On Wed, Oct 15, 2014 at 4:28 PM, Stephan Witt  wrote:
> Am 14.10.2014 um 23:23 schrieb "Lauen, Douglas L" :
>
>> Stephan,
>>
>> Yes! going to document settings, fonts, and then unclicking “Use non-Tex 
>> fonts…” solves the problem with displaying my diagram. Thank you.
>> Now with that option unchecked, I cannot typeset my document using 
>> command-R. I guess I can use other ways to view my output, though.
>> Do you know why command-R doesn’t work? Is there a way to fix that?
>
> Dough,
>
> in case of a Non-TeX fonts document Command-R is using the XeTeX compiler to 
> create the PDF.
> Some content of the document makes it requiring this compiler. Without the 
> option checked
> LyX uses the normal pdflatex compiler and e.g. some special foreign 
> characters or math symbols
> are a problem here.
>
>> Before my update I did not encounter this, so something must be different 
>> now!
>
> This I cannot answer, sorry. But you're right - there must be the problem.
> You've talking about your update to 10.9 Mavericks? Perhaps a python problem 
> indeed.
> You may check the protocols inside the directory
>
 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf3
>
>
> You have to look inside the directory you can see in the message window.
> The interesting file is named like "lyxpreviewZ33063.log" or similar.
>
> Stephan
>
>>
>>
>> On Oct 14, 2014, at 4:44 PM, Stephan Witt  wrote:
>>
>>> Am 14.10.2014 um 19:15 schrieb "Lauen, Douglas L" :
>>>
 Stephan, Thank you for the suggestion. This is odd. I don’t recall having 
 this problem before my upgrade to Mavericks. And very odd that is crops up 
 in one file but not another.

 It looks like python fails to process something…
>>>
>>> Hi Dough,
>>>
>>> note the difference in the two calls: the 2nd one has an additional switch 
>>> "--latex=xelatex".
>>> This may be caused by the XeTeX/LuaTeX setting in the document settings. 
>>> Perhaps you can live
>>> without it?
>>>
>>> Stephan
>>>

 Here is the message log from a change to the figure in displays.lyx
 —

 13:12:02.636: (dialog-toggle progress)graphics/PreviewLoader.cpp (468): 
 adding snippet:
 $\xymatrix{ & U\ar[dl]\ar[dr]\\
 X\ar[rr] & c & Y
 }
 $
 graphics/PreviewLoader.cpp (530): PreviewLoader::startLoading()
 graphics/PreviewLoader.cpp (665): PreviewLoader::finishedInProgress(0): 
 processing succeeded for python -tt 
 "/Applications/LyX.app/Contents/Resources/scripts/lyxpreview2bitmap.py" 
 --png 
 "/var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf3/lyxpreviewq15278.tex"
  --dpi 108 --fg 00 --bg faf0e6 --bibtex="bibtex"
 Format.cpp (394): Recognised Fileformat: png
 graphics/GraphicsCacheItem.cpp (379): 
 [CacheItem::Impl::convertToDisplayFormat]
 Attempting to convert image file: 
 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf3/lyxpreviewq152781.png
 with displayed filename: 
 /var/folders/cx/8z8j7c710t9gcfvtljxkvjkcgn/T/lyx_tmpdir.KZwQoCf15278/lyx_tmpbuf3/lyxpreviewq152781.png
 Format.cpp (394): Recognised Fileformat: png
 graphics/GraphicsCacheItem.cpp (386):
 The file contains png format data.
 graphics/GraphicsCacheItem.cpp (391): No conversion needed (from == to)!
 graphics/GraphicsCacheItem.cpp (294): Loading image.
 graphics/GraphicsCacheItem.cpp (300): Image loading succeeded.
 —


 Here is the message log from a similar change to the figure in 
 doesnotdisplay.lyx

 —


 13:10:42.140: (dialog-toggle progress)graphics/PreviewLoader.cpp (468): 
 adding snippet:
 $\xymatrix{ & U\ar[dl]\ar[dr]\\
 X\ar[rr] & c & Y
 }
 $
 graphics/PreviewLoader.cpp (530): PreviewLoader::startLoading()
 

Re: Changing key bindings in the GUI

2014-08-26 Thread Maria Gouskova
On Mon, Aug 25, 2014 at 4:40 PM, Maria Gouskova gousk...@gmail.com wrote:
 Hi all,

 I want to check whether this is a bug or I'm just missing something. I
 am using a custom bindings file that calls two other files. The file
 looks like this:
 ##

 \bind_file aqua.bind
 \bind_file mac.bind

 \bind C-ylayout Numbered Examples (consecutive)
 \bindC-~S-alayout Subexample
 \bindC-/inset-vspace-bigskip


 ##

 These three custom key bindings work without a problem. The problem is
 with the daughter bindings files, and I tried to change it through the
 GUI but to no avail.

 One of the key bindings in the mac.bind file in the lyx.app folder
 defines the depth-decrement key binding as:

 \bind M-C-Rightdepth-increment

 But this does not show up when I look in the LyX: Preferences editing
 shortcuts. There, depth-decrement is not shown to have any key
 bindings associated with it, and when I clicked on 'modify', the cell
 for entering the key binding is grayed out. I thought it was a key
 combination conflict between the aqua and mac bindings files, but I
 don't see one when I inspect the files.

 So, I guess I wonder why the mac.bind definition is not working, and
 why the GUI menu for changing the key bindings is not available.

 Maria

P.S. I figured out how to change the key bindings through the GUI menu
(for anyone as dense as me, you just select the command you want from
the options, click 'modify', and then hit the key combo you want to be
associated with the command. Then hit 'apply'. It even allows you to
override existing key bindings.) Still wondering, though, why the
mac.bind definitions are not working when called from a custom
bindings file.


Re: Changing key bindings in the GUI

2014-08-26 Thread Maria Gouskova
On Mon, Aug 25, 2014 at 4:40 PM, Maria Gouskova gousk...@gmail.com wrote:
 Hi all,

 I want to check whether this is a bug or I'm just missing something. I
 am using a custom bindings file that calls two other files. The file
 looks like this:
 ##

 \bind_file aqua.bind
 \bind_file mac.bind

 \bind C-ylayout Numbered Examples (consecutive)
 \bindC-~S-alayout Subexample
 \bindC-/inset-vspace-bigskip


 ##

 These three custom key bindings work without a problem. The problem is
 with the daughter bindings files, and I tried to change it through the
 GUI but to no avail.

 One of the key bindings in the mac.bind file in the lyx.app folder
 defines the depth-decrement key binding as:

 \bind M-C-Rightdepth-increment

 But this does not show up when I look in the LyX: Preferences editing
 shortcuts. There, depth-decrement is not shown to have any key
 bindings associated with it, and when I clicked on 'modify', the cell
 for entering the key binding is grayed out. I thought it was a key
 combination conflict between the aqua and mac bindings files, but I
 don't see one when I inspect the files.

 So, I guess I wonder why the mac.bind definition is not working, and
 why the GUI menu for changing the key bindings is not available.

 Maria

P.S. I figured out how to change the key bindings through the GUI menu
(for anyone as dense as me, you just select the command you want from
the options, click 'modify', and then hit the key combo you want to be
associated with the command. Then hit 'apply'. It even allows you to
override existing key bindings.) Still wondering, though, why the
mac.bind definitions are not working when called from a custom
bindings file.


Re: Changing key bindings in the GUI

2014-08-26 Thread Maria Gouskova
On Mon, Aug 25, 2014 at 4:40 PM, Maria Gouskova <gousk...@gmail.com> wrote:
> Hi all,
>
> I want to check whether this is a bug or I'm just missing something. I
> am using a custom bindings file that calls two other files. The file
> looks like this:
> ##
>
> \bind_file aqua.bind
> \bind_file mac.bind
>
> \bind "C-y""layout Numbered Examples (consecutive)"
> \bind"C-~S-a""layout Subexample"
> \bind"C-/""inset-vspace-bigskip"
>
>
> ##
>
> These three custom key bindings work without a problem. The problem is
> with the daughter bindings files, and I tried to change it through the
> GUI but to no avail.
>
> One of the key bindings in the mac.bind file in the lyx.app folder
> defines the depth-decrement key binding as:
>
> \bind "M-C-Right""depth-increment"
>
> But this does not show up when I look in the LyX: Preferences editing
> shortcuts. There, depth-decrement is not shown to have any key
> bindings associated with it, and when I clicked on 'modify', the cell
> for entering the key binding is grayed out. I thought it was a key
> combination conflict between the aqua and mac bindings files, but I
> don't see one when I inspect the files.
>
> So, I guess I wonder why the mac.bind definition is not working, and
> why the GUI menu for changing the key bindings is not available.
>
> Maria

P.S. I figured out how to change the key bindings through the GUI menu
(for anyone as dense as me, you just select the command you want from
the options, click 'modify', and then hit the key combo you want to be
associated with the command. Then hit 'apply'. It even allows you to
override existing key bindings.) Still wondering, though, why the
mac.bind definitions are not working when called from a custom
bindings file.


Changing key bindings in the GUI

2014-08-25 Thread Maria Gouskova
Hi all,

I want to check whether this is a bug or I'm just missing something. I
am using a custom bindings file that calls two other files. The file
looks like this:
##

\bind_file aqua.bind
\bind_file mac.bind

\bind C-ylayout Numbered Examples (consecutive)
\bindC-~S-alayout Subexample
\bindC-/inset-vspace-bigskip


##

These three custom key bindings work without a problem. The problem is
with the daughter bindings files, and I tried to change it through the
GUI but to no avail.

One of the key bindings in the mac.bind file in the lyx.app folder
defines the depth-decrement key binding as:

\bind M-C-Rightdepth-increment

But this does not show up when I look in the LyX: Preferences editing
shortcuts. There, depth-decrement is not shown to have any key
bindings associated with it, and when I clicked on 'modify', the cell
for entering the key binding is grayed out. I thought it was a key
combination conflict between the aqua and mac bindings files, but I
don't see one when I inspect the files.

So, I guess I wonder why the mac.bind definition is not working, and
why the GUI menu for changing the key bindings is not available.

Maria


Changing key bindings in the GUI

2014-08-25 Thread Maria Gouskova
Hi all,

I want to check whether this is a bug or I'm just missing something. I
am using a custom bindings file that calls two other files. The file
looks like this:
##

\bind_file aqua.bind
\bind_file mac.bind

\bind C-ylayout Numbered Examples (consecutive)
\bindC-~S-alayout Subexample
\bindC-/inset-vspace-bigskip


##

These three custom key bindings work without a problem. The problem is
with the daughter bindings files, and I tried to change it through the
GUI but to no avail.

One of the key bindings in the mac.bind file in the lyx.app folder
defines the depth-decrement key binding as:

\bind M-C-Rightdepth-increment

But this does not show up when I look in the LyX: Preferences editing
shortcuts. There, depth-decrement is not shown to have any key
bindings associated with it, and when I clicked on 'modify', the cell
for entering the key binding is grayed out. I thought it was a key
combination conflict between the aqua and mac bindings files, but I
don't see one when I inspect the files.

So, I guess I wonder why the mac.bind definition is not working, and
why the GUI menu for changing the key bindings is not available.

Maria


Changing key bindings in the GUI

2014-08-25 Thread Maria Gouskova
Hi all,

I want to check whether this is a bug or I'm just missing something. I
am using a custom bindings file that calls two other files. The file
looks like this:
##

\bind_file aqua.bind
\bind_file mac.bind

\bind "C-y""layout Numbered Examples (consecutive)"
\bind"C-~S-a""layout Subexample"
\bind"C-/""inset-vspace-bigskip"


##

These three custom key bindings work without a problem. The problem is
with the daughter bindings files, and I tried to change it through the
GUI but to no avail.

One of the key bindings in the mac.bind file in the lyx.app folder
defines the depth-decrement key binding as:

\bind "M-C-Right""depth-increment"

But this does not show up when I look in the LyX: Preferences editing
shortcuts. There, depth-decrement is not shown to have any key
bindings associated with it, and when I clicked on 'modify', the cell
for entering the key binding is grayed out. I thought it was a key
combination conflict between the aqua and mac bindings files, but I
don't see one when I inspect the files.

So, I guess I wonder why the mac.bind definition is not working, and
why the GUI menu for changing the key bindings is not available.

Maria


Re: Major document corruption

2014-06-17 Thread Maria Gouskova
On Mon, Jun 16, 2014 at 5:08 PM, Richard Heck rgh...@lyx.org wrote:
 On 06/16/2014 04:29 PM, Maria Gouskova wrote:

 Hi all,

 So LyX (2.1.0, Mac OS 10.6) stopped responding after I did something
 fairly routine to a file (adding references), and I forced the program
 to quit. Now I can reopen LyX, but the file I was working on will not
 open--LyX just beachballs. To figure this out, I opened the .lyx file
 in a text editor, and saw that about 2/3rds of the file just got
 lopped off! The lyx.emergency file is missing those parts, too. I
 restored the previous version of the file via Dropbox so I didn't lose
 much work.

 So, is it this?

 http://www.lyx.org/trac/ticket/9049


 Probably. Did the file end with \begin_inset Tabular?

Yes, indeed.

 OSX didn't generate a crash report, did it?

Yes, it did--here it is:


Process: lyx [54211]
Path:/Applications/LyX.app/Contents/MacOS/lyx
Identifier:  org.lyx.lyx
Version: 2.1.0 (???)
Code Type:   X86-64 (Native)
Parent Process:  launchd [44562]

Date/Time:   2014-06-03 15:56:20.189 -0400
OS Version:  Mac OS X 10.6.8 (10K549)
Report Version:  6

Interval Since Last Report:  52471 sec
Crashes Since Last Report:   1
Per-App Interval Since Last Report:  11732 sec
Per-App Crashes Since Last Report:   1
Anonymous UUID:  5484D3D4-2DF6-4C5C-98AC-51E2434C4DC1

Exception Type:  EXC_BAD_ACCESS (SIGABRT)
Exception Codes: KERN_INVALID_ADDRESS at 0x0001041f7000
Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Application Specific Information:
abort() called

Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
0   libSystem.B.dylib 0x7fff800520b6 __kill + 10
1   libSystem.B.dylib 0x7fff800f29f6 abort + 83
2   org.lyx.lyx   0x0001000eb4ed
lyx::Lexer::Pimpl::~Pimpl() + 14189
3   libSystem.B.dylib 0x7fff800641ba _sigtramp + 26
4   libSystem.B.dylib 0x7fe0087b __memcpy + 219
5   QtCore0x000100f66bf9
QString::realloc(int) + 101
6   QtCore0x000100fd14cf
QFileSystemEntry::isAbsolute() const + 55
7   QtCore0x000100fd5208
QFileSystemEngine::absoluteName(QFileSystemEntry const) + 32
8   QtCore0x000100f9bb87
QFileInfoPrivate::getFileName(QAbstractFileEngine::FileName) const +
743
9   QtCore0x000100f9d778
QFileInfo::absoluteFilePath() const + 60
10  org.lyx.lyx   0x0001004c6ae0 void
std::vectorstd::string, std::allocatorstd::string
::_M_initialize_dispatchboost::token_iteratorboost::char_separatorchar,
std::char_traitschar , __gnu_cxx::__normal_iteratorchar const*,
std::string, std::string
(boost::token_iteratorboost::char_separatorchar,
std::char_traitschar , __gnu_cxx::__normal_iteratorchar const*,
std::string, std::string,
boost::token_iteratorboost::char_separatorchar,
std::char_traitschar , __gnu_cxx::__normal_iteratorchar const*,
std::string, std::string, std::__false_type) + 11212
11  org.lyx.lyx   0x0001004b1a64
boost::signal0void, boost::last_valuevoid, int, std::lessint,
boost::functionvoid ()() ::connect(boost::slotboost::functionvoid
()()  const, boost::signals::connect_position) + 464
12  org.lyx.lyx   0x0001004d1a0e
boost::function2void, int, int::operator()(int, int) const + 48
13  org.lyx.lyx   0x0001004d1a67
boost::signals::detail::slot_call_iteratorboost::signals::detail::call_bound2void::callerint,
int, boost::functionvoid ()(int, int) ,
boost::signals::detail::named_slot_map_iterator::dereference() const
+ 47
14  org.lyx.lyx   0x0001004d1a99 void
boost::last_valuevoid::operator()boost::signals::detail::slot_call_iteratorboost::signals::detail::call_bound2void::callerint,
int, boost::functionvoid ()(int, int) ,
boost::signals::detail::named_slot_map_iterator
(boost::signals::detail::slot_call_iteratorboost::signals::detail::call_bound2void::callerint,
int, boost::functionvoid ()(int, int) ,
boost::signals::detail::named_slot_map_iterator,
boost::signals::detail::slot_call_iteratorboost::signals::detail::call_bound2void::callerint,
int, boost::functionvoid ()(int, int) ,
boost::signals::detail::named_slot_map_iterator) const + 23
15  org.lyx.lyx   0x0001004d1ba7
boost::signal2void, int, int, boost::last_valuevoid, int,
std::lessint, boost::functionvoid ()(int, int) ::operator()(int,
int) + 241
16  org.lyx.lyx   0x0001004cff7f
boost::match_results__gnu_cxx::__normal_iteratorchar const*,
std::string, std::allocatorboost::sub_match__gnu_cxx::__normal_iteratorchar
const*, std::string   ::raise_logic_error() + 2987
17  org.lyx.lyx   0x0001002e9f0b
std::tr1::_Function_base::_Base_managerstd::tr1::_Bindint
(*()(std::tr1

Re: Major document corruption

2014-06-17 Thread Maria Gouskova
On Mon, Jun 16, 2014 at 5:08 PM, Richard Heck rgh...@lyx.org wrote:
 On 06/16/2014 04:29 PM, Maria Gouskova wrote:

 Hi all,

 So LyX (2.1.0, Mac OS 10.6) stopped responding after I did something
 fairly routine to a file (adding references), and I forced the program
 to quit. Now I can reopen LyX, but the file I was working on will not
 open--LyX just beachballs. To figure this out, I opened the .lyx file
 in a text editor, and saw that about 2/3rds of the file just got
 lopped off! The lyx.emergency file is missing those parts, too. I
 restored the previous version of the file via Dropbox so I didn't lose
 much work.

 So, is it this?

 http://www.lyx.org/trac/ticket/9049


 Probably. Did the file end with \begin_inset Tabular?

Yes, indeed.

 OSX didn't generate a crash report, did it?

Yes, it did--here it is:


Process: lyx [54211]
Path:/Applications/LyX.app/Contents/MacOS/lyx
Identifier:  org.lyx.lyx
Version: 2.1.0 (???)
Code Type:   X86-64 (Native)
Parent Process:  launchd [44562]

Date/Time:   2014-06-03 15:56:20.189 -0400
OS Version:  Mac OS X 10.6.8 (10K549)
Report Version:  6

Interval Since Last Report:  52471 sec
Crashes Since Last Report:   1
Per-App Interval Since Last Report:  11732 sec
Per-App Crashes Since Last Report:   1
Anonymous UUID:  5484D3D4-2DF6-4C5C-98AC-51E2434C4DC1

Exception Type:  EXC_BAD_ACCESS (SIGABRT)
Exception Codes: KERN_INVALID_ADDRESS at 0x0001041f7000
Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Application Specific Information:
abort() called

Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
0   libSystem.B.dylib 0x7fff800520b6 __kill + 10
1   libSystem.B.dylib 0x7fff800f29f6 abort + 83
2   org.lyx.lyx   0x0001000eb4ed
lyx::Lexer::Pimpl::~Pimpl() + 14189
3   libSystem.B.dylib 0x7fff800641ba _sigtramp + 26
4   libSystem.B.dylib 0x7fe0087b __memcpy + 219
5   QtCore0x000100f66bf9
QString::realloc(int) + 101
6   QtCore0x000100fd14cf
QFileSystemEntry::isAbsolute() const + 55
7   QtCore0x000100fd5208
QFileSystemEngine::absoluteName(QFileSystemEntry const) + 32
8   QtCore0x000100f9bb87
QFileInfoPrivate::getFileName(QAbstractFileEngine::FileName) const +
743
9   QtCore0x000100f9d778
QFileInfo::absoluteFilePath() const + 60
10  org.lyx.lyx   0x0001004c6ae0 void
std::vectorstd::string, std::allocatorstd::string
::_M_initialize_dispatchboost::token_iteratorboost::char_separatorchar,
std::char_traitschar , __gnu_cxx::__normal_iteratorchar const*,
std::string, std::string
(boost::token_iteratorboost::char_separatorchar,
std::char_traitschar , __gnu_cxx::__normal_iteratorchar const*,
std::string, std::string,
boost::token_iteratorboost::char_separatorchar,
std::char_traitschar , __gnu_cxx::__normal_iteratorchar const*,
std::string, std::string, std::__false_type) + 11212
11  org.lyx.lyx   0x0001004b1a64
boost::signal0void, boost::last_valuevoid, int, std::lessint,
boost::functionvoid ()() ::connect(boost::slotboost::functionvoid
()()  const, boost::signals::connect_position) + 464
12  org.lyx.lyx   0x0001004d1a0e
boost::function2void, int, int::operator()(int, int) const + 48
13  org.lyx.lyx   0x0001004d1a67
boost::signals::detail::slot_call_iteratorboost::signals::detail::call_bound2void::callerint,
int, boost::functionvoid ()(int, int) ,
boost::signals::detail::named_slot_map_iterator::dereference() const
+ 47
14  org.lyx.lyx   0x0001004d1a99 void
boost::last_valuevoid::operator()boost::signals::detail::slot_call_iteratorboost::signals::detail::call_bound2void::callerint,
int, boost::functionvoid ()(int, int) ,
boost::signals::detail::named_slot_map_iterator
(boost::signals::detail::slot_call_iteratorboost::signals::detail::call_bound2void::callerint,
int, boost::functionvoid ()(int, int) ,
boost::signals::detail::named_slot_map_iterator,
boost::signals::detail::slot_call_iteratorboost::signals::detail::call_bound2void::callerint,
int, boost::functionvoid ()(int, int) ,
boost::signals::detail::named_slot_map_iterator) const + 23
15  org.lyx.lyx   0x0001004d1ba7
boost::signal2void, int, int, boost::last_valuevoid, int,
std::lessint, boost::functionvoid ()(int, int) ::operator()(int,
int) + 241
16  org.lyx.lyx   0x0001004cff7f
boost::match_results__gnu_cxx::__normal_iteratorchar const*,
std::string, std::allocatorboost::sub_match__gnu_cxx::__normal_iteratorchar
const*, std::string   ::raise_logic_error() + 2987
17  org.lyx.lyx   0x0001002e9f0b
std::tr1::_Function_base::_Base_managerstd::tr1::_Bindint
(*()(std::tr1

Re: Major document corruption

2014-06-17 Thread Maria Gouskova
On Mon, Jun 16, 2014 at 5:08 PM, Richard Heck <rgh...@lyx.org> wrote:
> On 06/16/2014 04:29 PM, Maria Gouskova wrote:
>>
>> Hi all,
>>
>> So LyX (2.1.0, Mac OS 10.6) stopped responding after I did something
>> fairly routine to a file (adding references), and I forced the program
>> to quit. Now I can reopen LyX, but the file I was working on will not
>> open--LyX just beachballs. To figure this out, I opened the .lyx file
>> in a text editor, and saw that about 2/3rds of the file just got
>> lopped off! The lyx.emergency file is missing those parts, too. I
>> restored the previous version of the file via Dropbox so I didn't lose
>> much work.
>>
>> So, is it this?
>>
>> http://www.lyx.org/trac/ticket/9049
>
>
> Probably. Did the file end with \begin_inset Tabular?

Yes, indeed.

> OSX didn't generate a crash report, did it?

Yes, it did--here it is:


Process: lyx [54211]
Path:/Applications/LyX.app/Contents/MacOS/lyx
Identifier:  org.lyx.lyx
Version: 2.1.0 (???)
Code Type:   X86-64 (Native)
Parent Process:  launchd [44562]

Date/Time:   2014-06-03 15:56:20.189 -0400
OS Version:  Mac OS X 10.6.8 (10K549)
Report Version:  6

Interval Since Last Report:  52471 sec
Crashes Since Last Report:   1
Per-App Interval Since Last Report:  11732 sec
Per-App Crashes Since Last Report:   1
Anonymous UUID:  5484D3D4-2DF6-4C5C-98AC-51E2434C4DC1

Exception Type:  EXC_BAD_ACCESS (SIGABRT)
Exception Codes: KERN_INVALID_ADDRESS at 0x0001041f7000
Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Application Specific Information:
abort() called

Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
0   libSystem.B.dylib 0x7fff800520b6 __kill + 10
1   libSystem.B.dylib 0x7fff800f29f6 abort + 83
2   org.lyx.lyx   0x0001000eb4ed
lyx::Lexer::Pimpl::~Pimpl() + 14189
3   libSystem.B.dylib 0x7fff800641ba _sigtramp + 26
4   libSystem.B.dylib 0x7fe0087b __memcpy + 219
5   QtCore0x000100f66bf9
QString::realloc(int) + 101
6   QtCore0x000100fd14cf
QFileSystemEntry::isAbsolute() const + 55
7   QtCore0x000100fd5208
QFileSystemEngine::absoluteName(QFileSystemEntry const&) + 32
8   QtCore0x000100f9bb87
QFileInfoPrivate::getFileName(QAbstractFileEngine::FileName) const +
743
9   QtCore0x000100f9d778
QFileInfo::absoluteFilePath() const + 60
10  org.lyx.lyx   0x0001004c6ae0 void
std::vector<std::string, std::allocator
>::_M_initialize_dispatch<boost::token_iterator<boost::char_separator<char,
std::char_traits >, __gnu_cxx::__normal_iterator, std::string>
>(boost::token_iterator<boost::char_separator<char,
std::char_traits >, __gnu_cxx::__normal_iterator, std::string>,
boost::token_iterator<boost::char_separator<char,
std::char_traits >, __gnu_cxx::__normal_iterator, std::string>, std::__false_type) + 11212
11  org.lyx.lyx   0x0001004b1a64
boost::signal0<void, boost::last_value, int, std::less,
boost::function >::connect(boost::slot<boost::function > const&, boost::signals::connect_position) + 464
12  org.lyx.lyx   0x0001004d1a0e
boost::function2<void, int, int>::operator()(int, int) const + 48
13  org.lyx.lyx   0x0001004d1a67
boost::signals::detail::slot_call_iterator<boost::signals::detail::call_bound2::caller<int,
int, boost::function >,
boost::signals::detail::named_slot_map_iterator>::dereference() const
+ 47
14  org.lyx.lyx   0x0001004d1a99 void
boost::last_value::operator()<boost::signals::detail::slot_call_iterator<boost::signals::detail::call_bound2::caller<int,
int, boost::function >,
boost::signals::detail::named_slot_map_iterator>
>(boost::signals::detail::slot_call_iterator<boost::signals::detail::call_bound2::caller<int,
int, boost::function >,
boost::signals::detail::named_slot_map_iterator>,
boost::signals::detail::slot_call_iterator<boost::signals::detail::call_bound2::caller<int,
int, boost::function >,
boost::signals::detail::named_slot_map_iterator>) const + 23
15  org.lyx.lyx   0x0001004d1ba7
boost::signal2<void, int, int, boost::last_value, int,
std::less, boost::function >::operator()(int,
int) + 241
16  org.lyx.lyx   0x0001004cff7f
boost::match_results<__gnu_cxx::__normal_iterator, std::allocator<boost::sub_match<__gnu_cxx::__normal_iterator > > >::raise_logic_error() + 2987
17  org.lyx.lyx   0x0001002e9f0b
std::t

Major document corruption

2014-06-16 Thread Maria Gouskova
Hi all,

So LyX (2.1.0, Mac OS 10.6) stopped responding after I did something
fairly routine to a file (adding references), and I forced the program
to quit. Now I can reopen LyX, but the file I was working on will not
open--LyX just beachballs. To figure this out, I opened the .lyx file
in a text editor, and saw that about 2/3rds of the file just got
lopped off! The lyx.emergency file is missing those parts, too. I
restored the previous version of the file via Dropbox so I didn't lose
much work.

So, is it this?

http://www.lyx.org/trac/ticket/9049

Maria


Major document corruption

2014-06-16 Thread Maria Gouskova
Hi all,

So LyX (2.1.0, Mac OS 10.6) stopped responding after I did something
fairly routine to a file (adding references), and I forced the program
to quit. Now I can reopen LyX, but the file I was working on will not
open--LyX just beachballs. To figure this out, I opened the .lyx file
in a text editor, and saw that about 2/3rds of the file just got
lopped off! The lyx.emergency file is missing those parts, too. I
restored the previous version of the file via Dropbox so I didn't lose
much work.

So, is it this?

http://www.lyx.org/trac/ticket/9049

Maria


Major document corruption

2014-06-16 Thread Maria Gouskova
Hi all,

So LyX (2.1.0, Mac OS 10.6) stopped responding after I did something
fairly routine to a file (adding references), and I forced the program
to quit. Now I can reopen LyX, but the file I was working on will not
open--LyX just beachballs. To figure this out, I opened the .lyx file
in a text editor, and saw that about 2/3rds of the file just got
lopped off! The lyx.emergency file is missing those parts, too. I
restored the previous version of the file via Dropbox so I didn't lose
much work.

So, is it this?

http://www.lyx.org/trac/ticket/9049

Maria


Re: Unicode in ERT inserts

2014-02-14 Thread Maria Gouskova
On Fri, Feb 14, 2014 at 12:33 PM, Joe Lovick j...@anatexis.com wrote:
 Hi,

So i have run into the issue that it would be good to use a unicode
 character within an ERT, but this causes a failure, one can type the
 character just fine in lyx, but it isn't converted during compilation.

a minimal example is here http://goo.gl/d1gL6D

what method should i be using to get unicode symbols into the ERT?

I am using ERT becuase i need to use the Expex linguistics macros... it
 strikes me that maybe i should  create a module that would present the
 functionality of the ERT code to Lyx, would this solve the issue of entering
 unicode within these blocks?

is their documentation on writing modules in lyx that i can use as a
 reference? i had a quick look but could find any.

  Cheers
 Joe


I don't know what Expex is or what you are trying to do exactly, and
your example file didn't clarify it for me, because you can just use
the symbol ə outside ERT and typeset the result without problems. But
one way around the problem in LyX specifically is to enter your
unicode symbols in LyX proper, and then surround them on either side
by ERT. It would look like this, with the parts in parentheses being
in ERT and the parts outside parentheses being in straight LyX text--a
transcription of supper with a syllabic ɹ:

sʌp(\textsyllabic{)ɹ(})

Just declare \usepackage{tipa} in the preamble and everything should work.


Re: Unicode in ERT inserts

2014-02-14 Thread Maria Gouskova
On Fri, Feb 14, 2014 at 12:33 PM, Joe Lovick j...@anatexis.com wrote:
 Hi,

So i have run into the issue that it would be good to use a unicode
 character within an ERT, but this causes a failure, one can type the
 character just fine in lyx, but it isn't converted during compilation.

a minimal example is here http://goo.gl/d1gL6D

what method should i be using to get unicode symbols into the ERT?

I am using ERT becuase i need to use the Expex linguistics macros... it
 strikes me that maybe i should  create a module that would present the
 functionality of the ERT code to Lyx, would this solve the issue of entering
 unicode within these blocks?

is their documentation on writing modules in lyx that i can use as a
 reference? i had a quick look but could find any.

  Cheers
 Joe


I don't know what Expex is or what you are trying to do exactly, and
your example file didn't clarify it for me, because you can just use
the symbol ə outside ERT and typeset the result without problems. But
one way around the problem in LyX specifically is to enter your
unicode symbols in LyX proper, and then surround them on either side
by ERT. It would look like this, with the parts in parentheses being
in ERT and the parts outside parentheses being in straight LyX text--a
transcription of supper with a syllabic ɹ:

sʌp(\textsyllabic{)ɹ(})

Just declare \usepackage{tipa} in the preamble and everything should work.


Re: Unicode in ERT inserts

2014-02-14 Thread Maria Gouskova
On Fri, Feb 14, 2014 at 12:33 PM, Joe Lovick  wrote:
> Hi,
>
>So i have run into the issue that it would be good to use a unicode
> character within an ERT, but this causes a failure, one can type the
> character just fine in lyx, but it isn't converted during compilation.
>
>a minimal example is here http://goo.gl/d1gL6D
>
>what method should i be using to get unicode symbols into the ERT?
>
>I am using ERT becuase i need to use the Expex linguistics macros... it
> strikes me that maybe i should  create a module that would present the
> functionality of the ERT code to Lyx, would this solve the issue of entering
> unicode within these blocks?
>
>is their documentation on writing modules in lyx that i can use as a
> reference? i had a quick look but could find any.
>
>  Cheers
> Joe
>

I don't know what Expex is or what you are trying to do exactly, and
your example file didn't clarify it for me, because you can just use
the symbol ə outside ERT and typeset the result without problems. But
one way around the problem in LyX specifically is to enter your
unicode symbols in LyX proper, and then surround them on either side
by ERT. It would look like this, with the parts in parentheses being
in ERT and the parts outside parentheses being in straight LyX text--a
transcription of "supper" with a syllabic ɹ:

sʌp(\textsyllabic{)ɹ(})

Just declare \usepackage{tipa} in the preamble and everything should work.


Re: Seeing invisible table grid lines in the GUI

2014-01-25 Thread Maria Gouskova
On Thu, Jan 23, 2014 at 2:56 PM, Stephan Witt st.w...@gmx.net wrote:
 Am 23.01.2014 um 08:58 schrieb Stephan Witt st.w...@gmx.net:

 Am 22.01.2014 um 22:46 schrieb Stephen Buonopane sbuon...@bucknell.edu:


 On Jan 22, 2014, at 4:33 PM, Scott Kostyshak wrote:

 On Wed, Jan 22, 2014 at 1:12 PM, Maria Gouskova gousk...@gmail.com wrote:
 On Wed, Jan 22, 2014 at 12:23 PM, Scott Kostyshak skost...@lyx.org 
 wrote:
 On Wed, Jan 22, 2014 at 12:17 PM, Maria Gouskova gousk...@gmail.com 
 wrote:
 Hi LyX users,

 I use LyX on several computers (all version 2.0.6) and cannot figure
 out which setting allows one to see invisible table grid lines. They
 helpfully show up as light gray lines on the Macs running 10.6.8, but
 not on the one running 10.8.5. Is this a setting somewhere in the GUI
 that I need to turn on?

 Maria

 Hi Maria,

 I've never heard of this particular issue but other Mac-related screen
 issues have been solved by zooming. In Tools  Preferences  Look 
 Feel  Screen Fonts, does increasing Zoom help?

 Best,

 Scott

 Hi Scott,

 No, it didn't make a difference. I increased it from 150% to 250%, no
 hint of grid lines.

 Am I imagining that showing/hiding table gridlines used to be a
 setting in the GUI somewhere?

 You could be right. I don't remember. You could see if there are any
 differences in your preferences between the two computers. But I'm
 guessing it's a Qt related issue.

 Scott


 Try this perhaps
 LyX-Preferences-Look  Feel-Colors-table on/off line (last entry in the 
 list)

 I am on LyX 2.0.6, OSX 10.7.5.

 Hi,

 I can reproduce the problem on OSX 10.8.6 here.
 The preference setting mentioned above doesn't help.

 I tested the upcoming LyX 2.0.7 with Qt-4.8.5 and Cocoa API.

 I'm almost sure it's a LyX problem and not related with Qt.
 With LyX 2.1.0 dev and the same Qt libraries the problem is gone.

 I'll investigate further.

 I recommend to file a bug on trac. Maria, do you want me to do it?

 The cause of the problem is not obvious and IMHO it's not caused by
 user action.

 Stephan


Hmm, yes, would you please? I just upgraded to LyX 2.0.7, and the
problem is still present on Mac OS 10.8.5--but not on Mac OS 10.6.8.
Something is up.

Maria


Re: Seeing invisible table grid lines in the GUI

2014-01-25 Thread Maria Gouskova
On Thu, Jan 23, 2014 at 2:56 PM, Stephan Witt st.w...@gmx.net wrote:
 Am 23.01.2014 um 08:58 schrieb Stephan Witt st.w...@gmx.net:

 Am 22.01.2014 um 22:46 schrieb Stephen Buonopane sbuon...@bucknell.edu:


 On Jan 22, 2014, at 4:33 PM, Scott Kostyshak wrote:

 On Wed, Jan 22, 2014 at 1:12 PM, Maria Gouskova gousk...@gmail.com wrote:
 On Wed, Jan 22, 2014 at 12:23 PM, Scott Kostyshak skost...@lyx.org 
 wrote:
 On Wed, Jan 22, 2014 at 12:17 PM, Maria Gouskova gousk...@gmail.com 
 wrote:
 Hi LyX users,

 I use LyX on several computers (all version 2.0.6) and cannot figure
 out which setting allows one to see invisible table grid lines. They
 helpfully show up as light gray lines on the Macs running 10.6.8, but
 not on the one running 10.8.5. Is this a setting somewhere in the GUI
 that I need to turn on?

 Maria

 Hi Maria,

 I've never heard of this particular issue but other Mac-related screen
 issues have been solved by zooming. In Tools  Preferences  Look 
 Feel  Screen Fonts, does increasing Zoom help?

 Best,

 Scott

 Hi Scott,

 No, it didn't make a difference. I increased it from 150% to 250%, no
 hint of grid lines.

 Am I imagining that showing/hiding table gridlines used to be a
 setting in the GUI somewhere?

 You could be right. I don't remember. You could see if there are any
 differences in your preferences between the two computers. But I'm
 guessing it's a Qt related issue.

 Scott


 Try this perhaps
 LyX-Preferences-Look  Feel-Colors-table on/off line (last entry in the 
 list)

 I am on LyX 2.0.6, OSX 10.7.5.

 Hi,

 I can reproduce the problem on OSX 10.8.6 here.
 The preference setting mentioned above doesn't help.

 I tested the upcoming LyX 2.0.7 with Qt-4.8.5 and Cocoa API.

 I'm almost sure it's a LyX problem and not related with Qt.
 With LyX 2.1.0 dev and the same Qt libraries the problem is gone.

 I'll investigate further.

 I recommend to file a bug on trac. Maria, do you want me to do it?

 The cause of the problem is not obvious and IMHO it's not caused by
 user action.

 Stephan


Hmm, yes, would you please? I just upgraded to LyX 2.0.7, and the
problem is still present on Mac OS 10.8.5--but not on Mac OS 10.6.8.
Something is up.

Maria


Re: Seeing invisible table grid lines in the GUI

2014-01-25 Thread Maria Gouskova
On Thu, Jan 23, 2014 at 2:56 PM, Stephan Witt <st.w...@gmx.net> wrote:
> Am 23.01.2014 um 08:58 schrieb Stephan Witt <st.w...@gmx.net>:
>
>> Am 22.01.2014 um 22:46 schrieb Stephen Buonopane <sbuon...@bucknell.edu>:
>>
>>>
>>> On Jan 22, 2014, at 4:33 PM, Scott Kostyshak wrote:
>>>
>>>> On Wed, Jan 22, 2014 at 1:12 PM, Maria Gouskova <gousk...@gmail.com> wrote:
>>>>> On Wed, Jan 22, 2014 at 12:23 PM, Scott Kostyshak <skost...@lyx.org> 
>>>>> wrote:
>>>>>> On Wed, Jan 22, 2014 at 12:17 PM, Maria Gouskova <gousk...@gmail.com> 
>>>>>> wrote:
>>>>>>> Hi LyX users,
>>>>>>>
>>>>>>> I use LyX on several computers (all version 2.0.6) and cannot figure
>>>>>>> out which setting allows one to see invisible table grid lines. They
>>>>>>> helpfully show up as light gray lines on the Macs running 10.6.8, but
>>>>>>> not on the one running 10.8.5. Is this a setting somewhere in the GUI
>>>>>>> that I need to turn on?
>>>>>>>
>>>>>>> Maria
>>>>>>
>>>>>> Hi Maria,
>>>>>>
>>>>>> I've never heard of this particular issue but other Mac-related screen
>>>>>> issues have been solved by zooming. In Tools > Preferences > Look &
>>>>>> Feel > Screen Fonts, does increasing "Zoom" help?
>>>>>>
>>>>>> Best,
>>>>>>
>>>>>> Scott
>>>>>
>>>>> Hi Scott,
>>>>>
>>>>> No, it didn't make a difference. I increased it from 150% to 250%, no
>>>>> hint of grid lines.
>>>>>
>>>>> Am I imagining that showing/hiding table gridlines used to be a
>>>>> setting in the GUI somewhere?
>>>>
>>>> You could be right. I don't remember. You could see if there are any
>>>> differences in your preferences between the two computers. But I'm
>>>> guessing it's a Qt related issue.
>>>>
>>>> Scott
>>>
>>>
>>> Try this perhaps
>>> LyX->Preferences->Look & Feel->Colors->table on/off line (last entry in the 
>>> list)
>>>
>>> I am on LyX 2.0.6, OSX 10.7.5.
>>
>> Hi,
>>
>> I can reproduce the problem on OSX 10.8.6 here.
>> The preference setting mentioned above doesn't help.
>>
>> I tested the upcoming LyX 2.0.7 with Qt-4.8.5 and Cocoa API.
>>
>> I'm almost sure it's a LyX problem and not related with Qt.
>> With LyX 2.1.0 dev and the same Qt libraries the problem is gone.
>>
>> I'll investigate further.
>
> I recommend to file a bug on trac. Maria, do you want me to do it?
>
> The cause of the problem is not obvious and IMHO it's not caused by
> user action.
>
> Stephan


Hmm, yes, would you please? I just upgraded to LyX 2.0.7, and the
problem is still present on Mac OS 10.8.5--but not on Mac OS 10.6.8.
Something is up.

Maria


Seeing invisible table grid lines in the GUI

2014-01-22 Thread Maria Gouskova
Hi LyX users,

I use LyX on several computers (all version 2.0.6) and cannot figure
out which setting allows one to see invisible table grid lines. They
helpfully show up as light gray lines on the Macs running 10.6.8, but
not on the one running 10.8.5. Is this a setting somewhere in the GUI
that I need to turn on?

Maria


Re: Seeing invisible table grid lines in the GUI

2014-01-22 Thread Maria Gouskova
On Wed, Jan 22, 2014 at 12:23 PM, Scott Kostyshak skost...@lyx.org wrote:
 On Wed, Jan 22, 2014 at 12:17 PM, Maria Gouskova gousk...@gmail.com wrote:
 Hi LyX users,

 I use LyX on several computers (all version 2.0.6) and cannot figure
 out which setting allows one to see invisible table grid lines. They
 helpfully show up as light gray lines on the Macs running 10.6.8, but
 not on the one running 10.8.5. Is this a setting somewhere in the GUI
 that I need to turn on?

 Maria

 Hi Maria,

 I've never heard of this particular issue but other Mac-related screen
 issues have been solved by zooming. In Tools  Preferences  Look 
 Feel  Screen Fonts, does increasing Zoom help?

 Best,

 Scott

Hi Scott,

No, it didn't make a difference. I increased it from 150% to 250%, no
hint of grid lines.

Am I imagining that showing/hiding table gridlines used to be a
setting in the GUI somewhere?

Maria


Seeing invisible table grid lines in the GUI

2014-01-22 Thread Maria Gouskova
Hi LyX users,

I use LyX on several computers (all version 2.0.6) and cannot figure
out which setting allows one to see invisible table grid lines. They
helpfully show up as light gray lines on the Macs running 10.6.8, but
not on the one running 10.8.5. Is this a setting somewhere in the GUI
that I need to turn on?

Maria


Re: Seeing invisible table grid lines in the GUI

2014-01-22 Thread Maria Gouskova
On Wed, Jan 22, 2014 at 12:23 PM, Scott Kostyshak skost...@lyx.org wrote:
 On Wed, Jan 22, 2014 at 12:17 PM, Maria Gouskova gousk...@gmail.com wrote:
 Hi LyX users,

 I use LyX on several computers (all version 2.0.6) and cannot figure
 out which setting allows one to see invisible table grid lines. They
 helpfully show up as light gray lines on the Macs running 10.6.8, but
 not on the one running 10.8.5. Is this a setting somewhere in the GUI
 that I need to turn on?

 Maria

 Hi Maria,

 I've never heard of this particular issue but other Mac-related screen
 issues have been solved by zooming. In Tools  Preferences  Look 
 Feel  Screen Fonts, does increasing Zoom help?

 Best,

 Scott

Hi Scott,

No, it didn't make a difference. I increased it from 150% to 250%, no
hint of grid lines.

Am I imagining that showing/hiding table gridlines used to be a
setting in the GUI somewhere?

Maria


Seeing invisible table grid lines in the GUI

2014-01-22 Thread Maria Gouskova
Hi LyX users,

I use LyX on several computers (all version 2.0.6) and cannot figure
out which setting allows one to see invisible table grid lines. They
helpfully show up as light gray lines on the Macs running 10.6.8, but
not on the one running 10.8.5. Is this a setting somewhere in the GUI
that I need to turn on?

Maria


Re: Seeing invisible table grid lines in the GUI

2014-01-22 Thread Maria Gouskova
On Wed, Jan 22, 2014 at 12:23 PM, Scott Kostyshak <skost...@lyx.org> wrote:
> On Wed, Jan 22, 2014 at 12:17 PM, Maria Gouskova <gousk...@gmail.com> wrote:
>> Hi LyX users,
>>
>> I use LyX on several computers (all version 2.0.6) and cannot figure
>> out which setting allows one to see invisible table grid lines. They
>> helpfully show up as light gray lines on the Macs running 10.6.8, but
>> not on the one running 10.8.5. Is this a setting somewhere in the GUI
>> that I need to turn on?
>>
>> Maria
>
> Hi Maria,
>
> I've never heard of this particular issue but other Mac-related screen
> issues have been solved by zooming. In Tools > Preferences > Look &
> Feel > Screen Fonts, does increasing "Zoom" help?
>
> Best,
>
> Scott

Hi Scott,

No, it didn't make a difference. I increased it from 150% to 250%, no
hint of grid lines.

Am I imagining that showing/hiding table gridlines used to be a
setting in the GUI somewhere?

Maria


Re: document statistics

2013-06-17 Thread Maria Gouskova
On Mon, Jun 17, 2013 at 11:27 AM, Csikos Bela bcsikos...@freemail.huwrote:

 stefano franchi stefano.fran...@gmail.com írta:
 On Fri, Jun 14, 2013 at 2:08 PM, Alex Vergara Gil a...@cphr.edu.cu
 wrote:

 Hello:
 Occasionally it is necessary to count the total word or character
 number in
 a document.
 Lyx has Tools-Statistics option for the document, but how can I make
 statistics that includes the text in the Bibliography which is not
 edited in
 lyx?

 If is not edited in LyX there is no way LyX can count the words, so I use
 Okular to do this kind of things once the document is ready.

 Alex,I never knew Okular could do document statistics. Is it a plugin/
 extension/whatever? My version of okular does not seem to have any
 facility of the kind. I use pdftotxt | wc -w when I need to obtain final
 figures. I#39;d be glad to skip a step or two and use okular directly.

 Thanks.

 bcsikos



Any decent text editor will count up words for you, as will Open
Office/Libre Office. I usually use TextWrangler.app (Mac OS, freeware).
Take your PDF, copy and paste the contents into a text file, and you'll
have an estimate. All estimates of word counts are imprecise because of
variable definitions of what a  word is.

Maria


Re: document statistics

2013-06-17 Thread Maria Gouskova
On Mon, Jun 17, 2013 at 11:27 AM, Csikos Bela bcsikos...@freemail.huwrote:

 stefano franchi stefano.fran...@gmail.com írta:
 On Fri, Jun 14, 2013 at 2:08 PM, Alex Vergara Gil a...@cphr.edu.cu
 wrote:

 Hello:
 Occasionally it is necessary to count the total word or character
 number in
 a document.
 Lyx has Tools-Statistics option for the document, but how can I make
 statistics that includes the text in the Bibliography which is not
 edited in
 lyx?

 If is not edited in LyX there is no way LyX can count the words, so I use
 Okular to do this kind of things once the document is ready.

 Alex,I never knew Okular could do document statistics. Is it a plugin/
 extension/whatever? My version of okular does not seem to have any
 facility of the kind. I use pdftotxt | wc -w when I need to obtain final
 figures. I#39;d be glad to skip a step or two and use okular directly.

 Thanks.

 bcsikos



Any decent text editor will count up words for you, as will Open
Office/Libre Office. I usually use TextWrangler.app (Mac OS, freeware).
Take your PDF, copy and paste the contents into a text file, and you'll
have an estimate. All estimates of word counts are imprecise because of
variable definitions of what a  word is.

Maria


Re: document statistics

2013-06-17 Thread Maria Gouskova
On Mon, Jun 17, 2013 at 11:27 AM, Csikos Bela wrote:

> stefano franchi  írta:
> >On Fri, Jun 14, 2013 at 2:08 PM, Alex Vergara Gil a...@cphr.edu.cu>
> wrote:
>
> >>>Hello:
> >>>Occasionally it is necessary to count the total word or character
> number in
> >>>a document.
> >>>Lyx has Tools->Statistics option for the document, but how can I make
> >>>statistics that includes the text in the Bibliography which is not
> edited in
> >>l>yx?
>
> >>If is not edited in LyX there is no way LyX can count the words, so I use
> >>Okular to do this kind of things once the document is ready.
>
> >Alex,I never knew Okular could do document statistics. Is it a plugin/
> >extension/whatever? My version of okular does not seem to have any
> >facility of the kind. I use pdftotxt | wc -w when I need to obtain final
> >figures. Id be glad to skip a step or two and use okular directly.
>
> Thanks.
>
> bcsikos
>
>
>
Any decent text editor will count up words for you, as will Open
Office/Libre Office. I usually use TextWrangler.app (Mac OS, freeware).
Take your PDF, copy and paste the contents into a text file, and you'll
have an estimate. All estimates of word counts are imprecise because of
variable definitions of what a  "word" is.

Maria


Re: [off-topic] LyX as a LaTeX table editor (and other selling advice)

2013-03-14 Thread Maria Gouskova
On Wed, Mar 13, 2013 at 10:25 AM, Liviu Andronic landronim...@gmail.comwrote:

 On Wed, Mar 13, 2013 at 2:45 PM, stefano franchi
 stefano.fran...@gmail.com wrote:
  Continuous spell-checking is a fairly common editor's feature nowadays.
  Linux's Kile (a Latex editor) has it, for instance, and it is based on
  standard KDE components. As much as I love Lyx's spellchecker (and I
  wouldn't be able to work without it), I would hesitate to sell Lyx over
  Latex on it.
 
 However if the LaTeX user is used to spell-checking, then selling LyX
 without stressing the feature would be a deal-breaker. :) Anyways, I'm
 not that familiar with LaTeX editors, and this specific colleague was
 using one without a spell-checking feature.

 Oh, one other point.. My pitch for selling LyX is that it is like
 Word for LaTeX. And then I start clicking around to show how
 intuitive all is, and display the source pane to show them what they
 would have had to type to get that specific construct (including
 math). I think this delivers the message rather well.

 Cheers,
 Liviu


I occasionally teach a How to use MS Word workshop in my department,
where I show grad students how to make use of the formatting styles
feature, automatic numbering, and cross-referencing. Then a grad student
and I will co-teach a workshop on LaTeX/LyX. We start with LaTeX proper,
explained by the grad student. Then I show how LyX combines the stability
and control of LaTeX with the gui-ness of Word, and I specifically mention
tables as a major difference.

Tables were the deal breaker for me wrt real LaTeX. I use tables all the
time, and LyX's table editor is not, frankly, as elegant as Word's (as I
remember Word from the year 2003 or so). But LyX's table editing features
are good enough for my usual needs, and it definitely has an advantage over
other LaTeX editors.

Maria


Re: [off-topic] LyX as a LaTeX table editor (and other selling advice)

2013-03-14 Thread Maria Gouskova
On Wed, Mar 13, 2013 at 10:25 AM, Liviu Andronic landronim...@gmail.comwrote:

 On Wed, Mar 13, 2013 at 2:45 PM, stefano franchi
 stefano.fran...@gmail.com wrote:
  Continuous spell-checking is a fairly common editor's feature nowadays.
  Linux's Kile (a Latex editor) has it, for instance, and it is based on
  standard KDE components. As much as I love Lyx's spellchecker (and I
  wouldn't be able to work without it), I would hesitate to sell Lyx over
  Latex on it.
 
 However if the LaTeX user is used to spell-checking, then selling LyX
 without stressing the feature would be a deal-breaker. :) Anyways, I'm
 not that familiar with LaTeX editors, and this specific colleague was
 using one without a spell-checking feature.

 Oh, one other point.. My pitch for selling LyX is that it is like
 Word for LaTeX. And then I start clicking around to show how
 intuitive all is, and display the source pane to show them what they
 would have had to type to get that specific construct (including
 math). I think this delivers the message rather well.

 Cheers,
 Liviu


I occasionally teach a How to use MS Word workshop in my department,
where I show grad students how to make use of the formatting styles
feature, automatic numbering, and cross-referencing. Then a grad student
and I will co-teach a workshop on LaTeX/LyX. We start with LaTeX proper,
explained by the grad student. Then I show how LyX combines the stability
and control of LaTeX with the gui-ness of Word, and I specifically mention
tables as a major difference.

Tables were the deal breaker for me wrt real LaTeX. I use tables all the
time, and LyX's table editor is not, frankly, as elegant as Word's (as I
remember Word from the year 2003 or so). But LyX's table editing features
are good enough for my usual needs, and it definitely has an advantage over
other LaTeX editors.

Maria


Re: [off-topic] LyX as a LaTeX table editor (and other selling advice)

2013-03-14 Thread Maria Gouskova
On Wed, Mar 13, 2013 at 10:25 AM, Liviu Andronic wrote:

> On Wed, Mar 13, 2013 at 2:45 PM, stefano franchi
>  wrote:
> > Continuous spell-checking is a fairly common editor's feature nowadays.
> > Linux's Kile (a Latex editor) has it, for instance, and it is based on
> > standard KDE components. As much as I love Lyx's spellchecker (and I
> > wouldn't be able to work without it), I would hesitate to sell Lyx over
> > Latex on it.
> >
> However if the LaTeX user is used to spell-checking, then selling LyX
> without stressing the feature would be a deal-breaker. :) Anyways, I'm
> not that familiar with LaTeX editors, and this specific colleague was
> using one without a spell-checking feature.
>
> Oh, one other point.. My pitch for selling LyX is that it is "like
> Word for LaTeX". And then I start clicking around to show how
> intuitive all is, and display the source pane to show them what they
> would have had to type to get that specific construct (including
> math). I think this delivers the message rather well.
>
> Cheers,
> Liviu
>

I occasionally teach a "How to use MS Word" workshop in my department,
where I show grad students how to make use of the formatting styles
feature, automatic numbering, and cross-referencing. Then a grad student
and I will co-teach a workshop on LaTeX/LyX. We start with LaTeX proper,
explained by the grad student. Then I show how LyX combines the stability
and control of LaTeX with the gui-ness of Word, and I specifically mention
tables as a major difference.

Tables were the deal breaker for me wrt "real LaTeX". I use tables all the
time, and LyX's table editor is not, frankly, as elegant as Word's (as I
remember Word from the year 2003 or so). But LyX's table editing features
are good enough for my usual needs, and it definitely has an advantage over
other LaTeX editors.

Maria


Re: Linux Libertine install; was:Re: Vector Fonts for Russian-English LyX document

2013-03-13 Thread Maria Gouskova
On Wed, Mar 13, 2013 at 9:11 AM, Liviu Andronic landronim...@gmail.comwrote:

 On Wed, Mar 13, 2013 at 1:41 PM, Wolfgang Engelmann
 engelm...@uni-tuebingen.de wrote:
  Am Mittwoch, 13. März 2013, 12:37:03 schrieb Liviu Andronic:
  On Wed, Mar 13, 2013 at 11:37 AM, Wolfgang Engelmann
 
  engelm...@uni-tuebingen.de wrote:
   Am Mittwoch, 13. März 2013, 01:39:45 schrieb Maria Gouskova:
   Leonid,
  
   This isn't going to fix your other issues, but let me recommend a
   good Unicode font that's free/open source and works well with
   Cyrillic: Linux Libertine. There is a recent-ish patch that
   addresses some Cyrillic issues there, too.
  
   http://linuxlibertine.org
  
   Hi, Maria
  
   could you give some more advice for using linuxlibertine in LyX or
   point to relevant sites?
   Is it sufficient to
   document settingsFontsX use non TeX fonts...
   or does one have to select at other places more?
  
   If I choose
   use non TeX fonts,
   I can't see the linuxlibertine in the dropdown menu.
  
   Is this font in the texlive2012 or has it to be downloaded (from
   where?).
 
  If using Debian/Ubuntu, you can install it via apt: fonts-linuxlibertine
 
 http://packages.ubuntu.com/search?keywords=libertinesearchon=namessuit
  e=allsection=all
 
  Liviu
 
   Thanks,  Liviu
 
  would it be installed in texlive2012texmffonts(type1??)
  or rather in texmffonts(type1??)
  which are both on my /home/user/
  next to each other
 
  and a texhash would be sufficient?
 
 I think Libertine can be used as a TeX font, but I usually select it
 via non-TeX fonts.

 Liviu


I've got a Mac here so I installed the OTF fonts the usual Mac way
(download the .tgz, drag all the .otf files therein into ~/Library/Fonts/).

In LyX, Linux Libertine doesn't appear as a choice for me unless Use
non-TeX fonts is checked. Then I select it and Linux Biolinum in the
drop-down menu and everything works (if pdf'd via XeTeX, anyway).

Maria


Re: Linux Libertine install; was:Re: Vector Fonts for Russian-English LyX document

2013-03-13 Thread Maria Gouskova
On Wed, Mar 13, 2013 at 9:11 AM, Liviu Andronic landronim...@gmail.comwrote:

 On Wed, Mar 13, 2013 at 1:41 PM, Wolfgang Engelmann
 engelm...@uni-tuebingen.de wrote:
  Am Mittwoch, 13. März 2013, 12:37:03 schrieb Liviu Andronic:
  On Wed, Mar 13, 2013 at 11:37 AM, Wolfgang Engelmann
 
  engelm...@uni-tuebingen.de wrote:
   Am Mittwoch, 13. März 2013, 01:39:45 schrieb Maria Gouskova:
   Leonid,
  
   This isn't going to fix your other issues, but let me recommend a
   good Unicode font that's free/open source and works well with
   Cyrillic: Linux Libertine. There is a recent-ish patch that
   addresses some Cyrillic issues there, too.
  
   http://linuxlibertine.org
  
   Hi, Maria
  
   could you give some more advice for using linuxlibertine in LyX or
   point to relevant sites?
   Is it sufficient to
   document settingsFontsX use non TeX fonts...
   or does one have to select at other places more?
  
   If I choose
   use non TeX fonts,
   I can't see the linuxlibertine in the dropdown menu.
  
   Is this font in the texlive2012 or has it to be downloaded (from
   where?).
 
  If using Debian/Ubuntu, you can install it via apt: fonts-linuxlibertine
 
 http://packages.ubuntu.com/search?keywords=libertinesearchon=namessuit
  e=allsection=all
 
  Liviu
 
   Thanks,  Liviu
 
  would it be installed in texlive2012texmffonts(type1??)
  or rather in texmffonts(type1??)
  which are both on my /home/user/
  next to each other
 
  and a texhash would be sufficient?
 
 I think Libertine can be used as a TeX font, but I usually select it
 via non-TeX fonts.

 Liviu


I've got a Mac here so I installed the OTF fonts the usual Mac way
(download the .tgz, drag all the .otf files therein into ~/Library/Fonts/).

In LyX, Linux Libertine doesn't appear as a choice for me unless Use
non-TeX fonts is checked. Then I select it and Linux Biolinum in the
drop-down menu and everything works (if pdf'd via XeTeX, anyway).

Maria


Re: Linux Libertine install; was:Re: Vector Fonts for Russian-English LyX document

2013-03-13 Thread Maria Gouskova
On Wed, Mar 13, 2013 at 9:11 AM, Liviu Andronic <landronim...@gmail.com>wrote:

> On Wed, Mar 13, 2013 at 1:41 PM, Wolfgang Engelmann
> <engelm...@uni-tuebingen.de> wrote:
> > Am Mittwoch, 13. März 2013, 12:37:03 schrieb Liviu Andronic:
> >> On Wed, Mar 13, 2013 at 11:37 AM, Wolfgang Engelmann
> >>
> >> <engelm...@uni-tuebingen.de> wrote:
> >> > Am Mittwoch, 13. März 2013, 01:39:45 schrieb Maria Gouskova:
> >> >> Leonid,
> >> >>
> >> >> This isn't going to fix your other issues, but let me recommend a
> >> >> good Unicode font that's free/open source and works well with
> >> >> Cyrillic: Linux Libertine. There is a recent-ish patch that
> >> >> addresses some Cyrillic issues there, too.
> >> >>
> >> >> http://linuxlibertine.org
> >> >
> >> > Hi, Maria
> >> >
> >> > could you give some more advice for using linuxlibertine in LyX or
> >> > point to relevant sites?
> >> > Is it sufficient to
> >> > document settings>Fonts>X use non TeX fonts...
> >> > or does one have to select at other places more?
> >> >
> >> > If I choose
> >> > use non TeX fonts,
> >> > I can't see the linuxlibertine in the dropdown menu.
> >> >
> >> > Is this font in the texlive2012 or has it to be downloaded (from
> >> > where?).
> >>
> >> If using Debian/Ubuntu, you can install it via apt: fonts-linuxlibertine
> >>
> http://packages.ubuntu.com/search?keywords=libertine=names
> >> e=all=all
> >>
> >> Liviu
> >
> >  Thanks,  Liviu
> >
> > would it be installed in texlive>2012>texmf>fonts>(type1??)
> > or rather in texmf>fonts>>(type1??)
> > which are both on my /home/user/
> > next to each other
> >
> > and a texhash would be sufficient?
> >
> I think Libertine can be used as a TeX font, but I usually select it
> via non-TeX fonts.
>
> Liviu
>

I've got a Mac here so I installed the OTF fonts the usual Mac way
(download the .tgz, drag all the .otf files therein into ~/Library/Fonts/).

In LyX, Linux Libertine doesn't appear as a choice for me unless "Use
non-TeX fonts" is checked. Then I select it and Linux Biolinum in the
drop-down menu and everything works (if pdf'd via XeTeX, anyway).

Maria


Re: Vector Fonts for Russian-English LyX document

2013-03-12 Thread Maria Gouskova
Leonid,

This isn't going to fix your other issues, but let me recommend a good
Unicode font that's free/open source and works well with Cyrillic: Linux
Libertine. There is a recent-ish patch that addresses some Cyrillic issues
there, too.

http://linuxlibertine.org

Maria

On Tue, Mar 12, 2013 at 8:31 PM, Uwe Stöhr uwesto...@web.de wrote:

 Am 12.03.2013 00:26, schrieb Uwe Stöhr:


  I now set up a Wiki page as reference:
 http://wiki.lyx.org/Windows/**Cyrillichttp://wiki.lyx.org/Windows/Cyrillic

 Russian, Ukrainian and Bulgarian works fine, but with Serbian I get some
 errors. If I could solve
 the problem, i will inform your.


 This is a bug in LyX:
 http://www.lyx.org/trac/**ticket/8590http://www.lyx.org/trac/ticket/8590

 regards Uwe




Re: Vector Fonts for Russian-English LyX document

2013-03-12 Thread Maria Gouskova
Leonid,

This isn't going to fix your other issues, but let me recommend a good
Unicode font that's free/open source and works well with Cyrillic: Linux
Libertine. There is a recent-ish patch that addresses some Cyrillic issues
there, too.

http://linuxlibertine.org

Maria

On Tue, Mar 12, 2013 at 8:31 PM, Uwe Stöhr uwesto...@web.de wrote:

 Am 12.03.2013 00:26, schrieb Uwe Stöhr:


  I now set up a Wiki page as reference:
 http://wiki.lyx.org/Windows/**Cyrillichttp://wiki.lyx.org/Windows/Cyrillic

 Russian, Ukrainian and Bulgarian works fine, but with Serbian I get some
 errors. If I could solve
 the problem, i will inform your.


 This is a bug in LyX:
 http://www.lyx.org/trac/**ticket/8590http://www.lyx.org/trac/ticket/8590

 regards Uwe




Re: Vector Fonts for Russian-English LyX document

2013-03-12 Thread Maria Gouskova
Leonid,

This isn't going to fix your other issues, but let me recommend a good
Unicode font that's free/open source and works well with Cyrillic: Linux
Libertine. There is a recent-ish patch that addresses some Cyrillic issues
there, too.

http://linuxlibertine.org

Maria

On Tue, Mar 12, 2013 at 8:31 PM, Uwe Stöhr  wrote:

> Am 12.03.2013 00:26, schrieb Uwe Stöhr:
>
>
>  I now set up a Wiki page as reference:
>> http://wiki.lyx.org/Windows/**Cyrillic
>>
>> Russian, Ukrainian and Bulgarian works fine, but with Serbian I get some
>> errors. If I could solve
>> the problem, i will inform your.
>>
>
> This is a bug in LyX:
> http://www.lyx.org/trac/**ticket/8590
>
> regards Uwe
>
>


Re: Endnote number size/position

2013-02-06 Thread Maria Gouskova
Nope, this still doesn't work--I get the following error (ps2pdf):

LaTeX Error: \makeenmark undefined.

\renewcommand\makeenmark {\theenmark. }

Try typing return to proceed.
If that doesn't work, type X return to quit.




On Fri, Jan 18, 2013 at 6:48 PM, Julien Rioux jri...@lyx.org wrote:
 On 16/12/2012 4:48 PM, Maria Gouskova wrote:

 On Wed, Nov 14, 2012 at 2:03 PM, Richard Heck rgh...@lyx.org wrote:

 On 10/22/2012 04:19 PM, Maria Gouskova wrote:


 Thanks, Richard--example file attached! It works when everything in
 the preamble is commented out, but the endnote numbers appear as
 superscripts in the Notes section (which is not what I want; I need
 them to be on the main line in normal size, followed by periods and
 then the note text).


 The right command to change is: \@makeenmark, with the @.


 (Sorry about the late response!)

 I replaced the preamble line

 \renewcommand\makeenmark{\theenmark. }

 with

 \renewcommand\@makeenmark{\theenmark. }

 and the result is an Undefined control sequence error:

   \footnote{
 A footnote/endnote A footnote/endnote A footnote/endnote A
 fo...
 The control sequence at the end of the top line
 of your error message was never \def'ed. If you have
 misspelled it (e.g., `\hobx'), type `I' and the correct
 spelling (e.g., `I\hbox'). Otherwise just continue,
 and I'll forget about whatever was undefined.


 Maria



 The attached seems to work for me. Is this what you are after?

 Regards,
 Julien


Re: Endnote number size/position

2013-02-06 Thread Maria Gouskova
Nope, this still doesn't work--I get the following error (ps2pdf):

LaTeX Error: \makeenmark undefined.

\renewcommand\makeenmark {\theenmark. }

Try typing return to proceed.
If that doesn't work, type X return to quit.




On Fri, Jan 18, 2013 at 6:48 PM, Julien Rioux jri...@lyx.org wrote:
 On 16/12/2012 4:48 PM, Maria Gouskova wrote:

 On Wed, Nov 14, 2012 at 2:03 PM, Richard Heck rgh...@lyx.org wrote:

 On 10/22/2012 04:19 PM, Maria Gouskova wrote:


 Thanks, Richard--example file attached! It works when everything in
 the preamble is commented out, but the endnote numbers appear as
 superscripts in the Notes section (which is not what I want; I need
 them to be on the main line in normal size, followed by periods and
 then the note text).


 The right command to change is: \@makeenmark, with the @.


 (Sorry about the late response!)

 I replaced the preamble line

 \renewcommand\makeenmark{\theenmark. }

 with

 \renewcommand\@makeenmark{\theenmark. }

 and the result is an Undefined control sequence error:

   \footnote{
 A footnote/endnote A footnote/endnote A footnote/endnote A
 fo...
 The control sequence at the end of the top line
 of your error message was never \def'ed. If you have
 misspelled it (e.g., `\hobx'), type `I' and the correct
 spelling (e.g., `I\hbox'). Otherwise just continue,
 and I'll forget about whatever was undefined.


 Maria



 The attached seems to work for me. Is this what you are after?

 Regards,
 Julien


Re: Endnote number size/position

2013-02-06 Thread Maria Gouskova
Nope, this still doesn't work--I get the following error (ps2pdf):

LaTeX Error: \makeenmark undefined.

\renewcommand\makeenmark {\theenmark. }

Try typing  to proceed.
If that doesn't work, type X  to quit.




On Fri, Jan 18, 2013 at 6:48 PM, Julien Rioux <jri...@lyx.org> wrote:
> On 16/12/2012 4:48 PM, Maria Gouskova wrote:
>>
>> On Wed, Nov 14, 2012 at 2:03 PM, Richard Heck <rgh...@lyx.org> wrote:
>>>
>>> On 10/22/2012 04:19 PM, Maria Gouskova wrote:
>>>>
>>>>
>>>> Thanks, Richard--example file attached! It works when everything in
>>>> the preamble is commented out, but the endnote numbers appear as
>>>> superscripts in the Notes section (which is not what I want; I need
>>>> them to be on the main line in normal size, followed by periods and
>>>> then the note text).
>>>
>>>
>>> The right command to change is: \@makeenmark, with the @.
>>
>>
>> (Sorry about the late response!)
>>
>> I replaced the preamble line
>>
>> \renewcommand\makeenmark{\theenmark. }
>>
>> with
>>
>> \renewcommand\@makeenmark{\theenmark. }
>>
>> and the result is an Undefined control sequence error:
>>
>>   \footnote{
>> A footnote/endnote A footnote/endnote A footnote/endnote A
>> fo...
>> The control sequence at the end of the top line
>> of your error message was never \def'ed. If you have
>> misspelled it (e.g., `\hobx'), type `I' and the correct
>> spelling (e.g., `I\hbox'). Otherwise just continue,
>> and I'll forget about whatever was undefined.
>>
>>
>> Maria
>>
>
>
> The attached seems to work for me. Is this what you are after?
>
> Regards,
> Julien


Re: Endnote number size/position

2012-12-16 Thread Maria Gouskova
On Wed, Nov 14, 2012 at 2:03 PM, Richard Heck rgh...@lyx.org wrote:
 On 10/22/2012 04:19 PM, Maria Gouskova wrote:

 Thanks, Richard--example file attached! It works when everything in
 the preamble is commented out, but the endnote numbers appear as
 superscripts in the Notes section (which is not what I want; I need
 them to be on the main line in normal size, followed by periods and
 then the note text).

 The right command to change is: \@makeenmark, with the @.

(Sorry about the late response!)

I replaced the preamble line

\renewcommand\makeenmark{\theenmark. }

with

\renewcommand\@makeenmark{\theenmark. }

and the result is an Undefined control sequence error:

 \footnote{
   A footnote/endnote A footnote/endnote A footnote/endnote A fo...
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.


Maria


Re: Endnote number size/position

2012-12-16 Thread Maria Gouskova
On Wed, Nov 14, 2012 at 2:03 PM, Richard Heck rgh...@lyx.org wrote:
 On 10/22/2012 04:19 PM, Maria Gouskova wrote:

 Thanks, Richard--example file attached! It works when everything in
 the preamble is commented out, but the endnote numbers appear as
 superscripts in the Notes section (which is not what I want; I need
 them to be on the main line in normal size, followed by periods and
 then the note text).

 The right command to change is: \@makeenmark, with the @.

(Sorry about the late response!)

I replaced the preamble line

\renewcommand\makeenmark{\theenmark. }

with

\renewcommand\@makeenmark{\theenmark. }

and the result is an Undefined control sequence error:

 \footnote{
   A footnote/endnote A footnote/endnote A footnote/endnote A fo...
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.


Maria


Re: Endnote number size/position

2012-12-16 Thread Maria Gouskova
On Wed, Nov 14, 2012 at 2:03 PM, Richard Heck <rgh...@lyx.org> wrote:
> On 10/22/2012 04:19 PM, Maria Gouskova wrote:
>>
>> Thanks, Richard--example file attached! It works when everything in
>> the preamble is commented out, but the endnote numbers appear as
>> superscripts in the Notes section (which is not what I want; I need
>> them to be on the main line in normal size, followed by periods and
>> then the note text).
>
> The right command to change is: \@makeenmark, with the @.

(Sorry about the late response!)

I replaced the preamble line

\renewcommand\makeenmark{\theenmark. }

with

\renewcommand\@makeenmark{\theenmark. }

and the result is an Undefined control sequence error:

 \footnote{
   A footnote/endnote A footnote/endnote A footnote/endnote A fo...
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.


Maria


Re: Endnote number size/position

2012-10-22 Thread Maria Gouskova
Thanks, Richard--example file attached! It works when everything in
the preamble is commented out, but the endnote numbers appear as
superscripts in the Notes section (which is not what I want; I need
them to be on the main line in normal size, followed by periods and
then the note text).

Maria

On Fri, Oct 19, 2012 at 11:49 AM, Richard Heck rgh...@lyx.org wrote:
 On 10/16/2012 01:05 PM, Maria Gouskova wrote:

 Hi LyX users,

 I have to turn all of my footnotes into endnotes and make their
 numbers in the endnote section not be superscripts. Like this:

 Notes

 1. The text of the endnote

 I loaded the Foot to End module, and added the following to the preamble:

 \usepackage{endnotes}
 \makeatletter
 \renewcommand\@makeentext[1]{%
 \noindent\makebox[0pt][r]{\@theenmark.\space}#1}
 \makeatother

 FootToEnd loads the endnotes package, so you shouldn't need to do so
 yourself.


 This is on analogy with the suggestion on this page
 http://www.latex-community.org/forum/viewtopic.php?f=44t=5640p=22079
 , modified fn to en according to the endnotes.sty manual--which
 says \makeentext is available, as is \theenmark. Yet LyX complains
 that \@makeentext is undefined. I also tried some of the tricks
 described here,

 http://compgroups.net/comp.text.tex/style-of-endnotes/1909406

 like \renewcommand\makeenmark{\theenmark. } in the preamble, and LyX
 again says that \makeenmark is undefined. What am I doing wrong here?

 Can you post a simple example file (handful of lines, few endnotes),
 including what you've tried to do? I can play with it then and try to make
 it work.

 rh



endnote_test_file.lyx
Description: Binary data


Re: Endnote number size/position

2012-10-22 Thread Maria Gouskova
Thanks, Richard--example file attached! It works when everything in
the preamble is commented out, but the endnote numbers appear as
superscripts in the Notes section (which is not what I want; I need
them to be on the main line in normal size, followed by periods and
then the note text).

Maria

On Fri, Oct 19, 2012 at 11:49 AM, Richard Heck rgh...@lyx.org wrote:
 On 10/16/2012 01:05 PM, Maria Gouskova wrote:

 Hi LyX users,

 I have to turn all of my footnotes into endnotes and make their
 numbers in the endnote section not be superscripts. Like this:

 Notes

 1. The text of the endnote

 I loaded the Foot to End module, and added the following to the preamble:

 \usepackage{endnotes}
 \makeatletter
 \renewcommand\@makeentext[1]{%
 \noindent\makebox[0pt][r]{\@theenmark.\space}#1}
 \makeatother

 FootToEnd loads the endnotes package, so you shouldn't need to do so
 yourself.


 This is on analogy with the suggestion on this page
 http://www.latex-community.org/forum/viewtopic.php?f=44t=5640p=22079
 , modified fn to en according to the endnotes.sty manual--which
 says \makeentext is available, as is \theenmark. Yet LyX complains
 that \@makeentext is undefined. I also tried some of the tricks
 described here,

 http://compgroups.net/comp.text.tex/style-of-endnotes/1909406

 like \renewcommand\makeenmark{\theenmark. } in the preamble, and LyX
 again says that \makeenmark is undefined. What am I doing wrong here?

 Can you post a simple example file (handful of lines, few endnotes),
 including what you've tried to do? I can play with it then and try to make
 it work.

 rh



endnote_test_file.lyx
Description: Binary data


Re: Endnote number size/position

2012-10-22 Thread Maria Gouskova
Thanks, Richard--example file attached! It works when everything in
the preamble is commented out, but the endnote numbers appear as
superscripts in the Notes section (which is not what I want; I need
them to be on the main line in normal size, followed by periods and
then the note text).

Maria

On Fri, Oct 19, 2012 at 11:49 AM, Richard Heck <rgh...@lyx.org> wrote:
> On 10/16/2012 01:05 PM, Maria Gouskova wrote:
>>
>> Hi LyX users,
>>
>> I have to turn all of my footnotes into endnotes and make their
>> numbers in the endnote section not be superscripts. Like this:
>>
>> Notes
>>
>> 1. The text of the endnote
>>
>> I loaded the Foot to End module, and added the following to the preamble:
>>
>> \usepackage{endnotes}
>> \makeatletter
>> \renewcommand\@makeentext[1]{%
>> \noindent\makebox[0pt][r]{\@theenmark.\space}#1}
>> \makeatother
>
> FootToEnd loads the endnotes package, so you shouldn't need to do so
> yourself.
>
>
>> This is on analogy with the suggestion on this page
>> http://www.latex-community.org/forum/viewtopic.php?f=44=5640=22079
>> , modified "fn" to "en" according to the endnotes.sty manual--which
>> says \makeentext is available, as is \theenmark. Yet LyX complains
>> that \@makeentext is undefined. I also tried some of the tricks
>> described here,
>>
>> http://compgroups.net/comp.text.tex/style-of-endnotes/1909406
>>
>> like \renewcommand\makeenmark{\theenmark. } in the preamble, and LyX
>> again says that \makeenmark is undefined. What am I doing wrong here?
>
> Can you post a simple example file (handful of lines, few endnotes),
> including what you've tried to do? I can play with it then and try to make
> it work.
>
> rh
>


endnote_test_file.lyx
Description: Binary data


Re: Caption alignment in figure/table floats

2012-10-16 Thread Maria Gouskova
On Tue, Oct 16, 2012 at 11:19 AM, Jürgen Spitzmüller sp...@lyx.org wrote:
 Maria Gouskova wrote:
 I used the caption package and put
 \usepackage[justification=raggedright]{caption} in the preamble. This
 correctly aligns captions that take more than one line, but It has no
 effect on shorter captions--those remain centered. Is this a bug in
 the caption package or LyX or is it how the package is supposed to
 work? Is there any way around this?

 Try
 \usepackage[singlelinecheck=false,justification=raggedright]{caption}

 The caption manual explains the behavior.

 HTH
 Jürgen

That fixed it! Thanks, Jürgen.

Maria


Re: Caption alignment in figure/table floats

2012-10-16 Thread Maria Gouskova
On Tue, Oct 16, 2012 at 11:19 AM, Jürgen Spitzmüller sp...@lyx.org wrote:
 Maria Gouskova wrote:
 I used the caption package and put
 \usepackage[justification=raggedright]{caption} in the preamble. This
 correctly aligns captions that take more than one line, but It has no
 effect on shorter captions--those remain centered. Is this a bug in
 the caption package or LyX or is it how the package is supposed to
 work? Is there any way around this?

 Try
 \usepackage[singlelinecheck=false,justification=raggedright]{caption}

 The caption manual explains the behavior.

 HTH
 Jürgen

That fixed it! Thanks, Jürgen.

Maria


Re: Caption alignment in figure/table floats

2012-10-16 Thread Maria Gouskova
On Tue, Oct 16, 2012 at 11:19 AM, Jürgen Spitzmüller <sp...@lyx.org> wrote:
> Maria Gouskova wrote:
>> I used the caption package and put
>> \usepackage[justification=raggedright]{caption} in the preamble. This
>> correctly aligns captions that take more than one line, but It has no
>> effect on shorter captions--those remain centered. Is this a bug in
>> the caption package or LyX or is it how the package is supposed to
>> work? Is there any way around this?
>
> Try
> \usepackage[singlelinecheck=false,justification=raggedright]{caption}
>
> The caption manual explains the behavior.
>
> HTH
> Jürgen

That fixed it! Thanks, Jürgen.

Maria


Re: Getting rid of You cannot type two spaces this way message?

2012-04-12 Thread Maria Gouskova
On Thu, Apr 12, 2012 at 3:39 PM, Bruce Pourciau
bruce.h.pourc...@lawrence.edu wrote:

 On Apr 11, 2012, at 2:46 PM, Liviu Andronic wrote:

 On Wed, Apr 11, 2012 at 7:50 PM, Bill Foote bi...@jovial.com wrote:

 Is there an easy way for me to get rid of the You cannot ... Please read
 the

 tutorial message?  I know that typing two spaces that way doesn't change
 the

 layout, and I'm more-or-less fine with LyX auto-deleting the space.  I'm

 completely fine with TeX not changing the formatting based on extra
 spaces.

 With all that said, I'd prefer that LyX stop nagging.  I know already!


 Start ignoring it. :) This is what I did. Besides, it's a good idea to
 always show it, so as to quickly and clearly explain new users what
 happens and why. LyX cannot know whether the user typing _knows_ it
 already or not.


 I'm not going to adjust my typing style, because most of the time when I
 type,

 putting two spaces after a period or some other punctuation is the right
 thing

 to do.


 Likely TeX/LaTeX would disagree.


 The author of The Elements of Typographical Style, Robert Bringhurst, has
 this to say about putting two spaces after a period:

 In the nineteenth century, which was a dark and inflationary age in
 typography and type design, many compositors were encouraged to stuff extra
 space between sentences. Generations of twentieth century typists were then
 taught to do the same, by hitting the spacebar twice after every period.
 Your typing as well as your typesetting will benefit from unlearning this
 quaint Victorian habit. As a general rule, no more than a single space is
 required after a period, colon or any other mark of punctuation.


 LyX is just nudging you along the path of unlearning.

 Bruce

I agree with Bill Foote that the nag message is annoying, even though
I do not share the habit. I do occasionally hit space to put in two
spaces by hand (an old habit from using word processors and text
editors).

Another inconsistency: the message in response to pressing the tab
character is simply command disabled--because the manual does not
discuss alternatives to tabbing in word processors and text editors.

Turning this stuff off after the first occurrence seems good enough to
me. Some programs, like Firefox, give you the option of keeping the
warnings or never showing them again--it's not a bad practice from a
usability standpoint.

In general, it is somewhat unhelpful when the response to your
program does something annoying in response to X is Don't do X.

I'll quote Steve Jobs: Just don't hold it that way.

Maria


  1   2   3   4   5   >