Srinivas Nedunuri wrote:
currently Lyx numbers theorems, definitions, examples, claims, etc
sequentially using the same counter. How can i get it to use seperate
counters for (some specific subset of) each of these?
You will need to redefine the various environments to use their own
counters. For example, something along these lines should work for
definitions.
#\DeclareLyXModule{Definitions}
#DescriptionBegin
#Redefines definitions so that they use their own counter.
#DescriptionEnd
#Requires: theorems-ams
Format 11
Counter definition
EndCounter
Style Definition
LabelString "Definition \thedefinition."
Preamble
\theoremstyle{definition}
\newtheorem{defn}{Definition}
EndPreamble
End
Not tested but, as I said, something like that should work.
rh