I am trying to learn, how to create my own layouts for use with LuX. Went Steve Litts tutorials, so i understand the basics. (Unfortunately, here i find the LyX documentation, while extensive, very frustrating to process when searching for a specific answer - any general hints in that respect would be appreciated).
And i do remember a bit of (and have books on) how LaTeX itself works.
The main question is: Where can i find a full, concise reference of all the available fields, options and keywords.
For example, from experimentation and exporting my example text via LuaTex, i noticed, that
LabelType Manual causes my handedited label to be passed down to LaTex as [{Label}] while
LabelType Stytic
LabelString "Example:" only displays the label in LyX (misaligned) and does not pass it into TeX.
So, what are all the possible options for LabelType ?
What other relevant fields are there?
Below is the test layout i'm working on; Tho i'm mostly looking for sources of information, rather than for specific solutions.
Code: Select all
#% Do not delete the line below; configure depends on this
# \DeclareLaTeXClass[book]{Custom Book Style}
# \DeclareCategory{Books}
Input stdclass.inc
# %%% Example Environment
Style Example
Category Own
LatexType Environment
LabelType Manual
LabelString "Example:"
LabelSep x
LatexName example_l
PARSEP 0.7
Font
Shape Italic
EndFont
LabelFont
Shape Italic
Series Bold
EndFont
Preamble
\newenvironment{example_l}[1][Ex:]
{
\itshape
\textbf{#1}
}
{
\par
}
EndPreamble
End