
Como evitar o espaço no início da primeira linha pelo teorema
\documentclass[a4paper,10pt,openany,twoside]{scrbook}
\usepackage[paperwidth=94mm,paperheight=50mm,margin=2mm,footskip=2mm,showframe
] {geometry}
\usepackage{amsmath,amssymb}
%
\usepackage[amsmath,thmmarks]{ntheorem}
\theoremstyle{nonumberplain}
\theorembodyfont{\normalfont}
\theoremsymbol{\ensuremath{\vartriangleleft}}
\newtheorem{mythm}{}
%
\setlength\parindent{0pt}
\begin{document}
\begin{mythm}
Some text\\
Some other text
\[
a = b
\]
\end{mythm}
\end{document}
Responder1
O nonumberplain
estilo espera que o teorema tenha um título especificado pelo segundo argumento \newtheorem
e insere algum espaço que deve ficar entre esse título e o corpo do teorema.
Você pode ver a definição de estilo nonumberplain na página 52 dodocumentação do teorema.
Suponho que uma maneira de contornar isso seria definir outro estilo de teorema semelhante a ele, mas sem o \hskip
s, e usá-lo para seus teoremas sem título e sem número:
\documentclass[a4paper,10pt,openany,twoside]{scrbook}
\usepackage[paperwidth=94mm,paperheight=50mm,margin=2mm,footskip=2mm,showframe
] {geometry}
\usepackage{amsmath,amssymb}
%
\usepackage[amsmath,thmmarks]{ntheorem}
\makeatletter
\newtheoremstyle{nonumbernoheading}%
{\item[\theorem@headerfont##1\theorem@separator]}%
{\item[\theorem@headerfont##1\ (##3)\theorem@separator]}
\makeatother
\theoremstyle{nonumbernoheading}
\theorembodyfont{\normalfont}
\theoremsymbol{\ensuremath{\vartriangleleft}}
\newtheorem{mythm}{}
%
\setlength\parindent{0pt}
\begin{document}
\begin{mythm}
Some text\\
Some other text
\[
a = b
\]
\end{mythm}
\end{document}