5

I am looking for this symbol:

I have seen it in the tutorials and manuals in menu Help. I think it's the code:

\lyxarrow{}

But in the example it isn't code; I can see:

• Open a new file with File ▷ New

Edit: I know i can put the triangle writing $\triangleright$ but I'm looking for how to write using the menu. I want to see the triangle in the text directly, without input ERT.

Speravir
  • 19,491
norbux
  • 289

1 Answers1

7

Using "View > View Source" you already correctly discovered that LyX uses \lyxarrow. But what is the definition of that?

Looking at the beginning of the LaTeX code preview (choose "Complete Source" or "Preamble Only" under "View Source") you will find

\DeclareRobustCommand*{\lyxarrow}{%
\@ifstar
{\leavevmode\,$\triangleleft$\,\allowbreak}
{\leavevmode\,$\triangleright$\,\allowbreak}}

Hence, it is \triangleright in this case.

Update: In LyX, you can insert this symbol using "Insert > Special Character > Menu Separator".

e-birk
  • 4,373