thmbox con fuente normal y numeración de secciones

thmbox con fuente normal y numeración de secciones

¿Cómo puedo usar "fuente normal" para definiciones y "cursiva" para comentarios (y entornos similares como ellos) en el entorno thmbox que declara algunos comandos? También necesito una numeración como "sección" o "subsección".

\documentclass[11pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage[left=2.50cm, right=2.50cm, top=2.50cm, bottom=2.50cm]{geometry}

\usepackage{thmtools}
\declaretheorem[style=normalfont, thmbox=M, name=Definition]{definition}
\declaretheorem[style=remark, thmbox=M, name=Remark]{remark}
\begin{document}
\section{Trying}
\begin{remark}
This is a remark.
\end{remark}
\begin{definition}
This is a definition. i just need this as normal font.
\end{definition}
in addition, numbering should be in section (or subsection).
\end{document}

Respuesta1

Debe pasar las opciones correspondientes a thmbox, ya que este paquete se hace cargo cuando se deben definir los teoremas encuadrados.

\documentclass[11pt,a4paper]{article}
\usepackage{amsmath,amsthm} % amsthm is important!
\usepackage{thmtools}

\declaretheorem[style=remark]{xyz}

\declaretheorem[
  style=plain,
  thmbox={style=M,bodystyle=\normalfont},
  name=Definition,
  within=section,
]{definition}

\declaretheorem[
  style=remark,
  thmbox={style=M,bodystyle=\normalfont,headstyle=\itshape Remark \upshape\theremark},
  name=Remark,
  within=section,
]{remark}

\begin{document}

\section{Trying}

\begin{remark}
This is a remark.
\end{remark}

\begin{definition}
This is a definition. I just need this as normal font.
\end{definition}

In addition, numbering should be in section (or subsection).

\end{document}

ingrese la descripción de la imagen aquí

Itenerdecir que este resultado es simplemente terrible. Sólo mi opinión, por supuesto.

información relacionada