I am continuing my question from Class relationship between two given .cls file?
To use an custom document class one needs to create LyX layout named appropriately.
In my custom document class. I have code like this
\if@Synopsis
\LoadClass[12pt,a4paper]{article}
\else
\LoadClass[12pt,a4paper]{report}
\fi
It is dynamically loading either the article or report class. So, in this case can anyone let me know how to name my LyX layout?
\@Synopsisto eithertrueorfalsebefore your custom document class is loaded - something I don't think you have a hook into with LyX's interface. – Werner Sep 19 '12 at 5:59