我写了下面的代码:
\newtheoremstyle{examplestyle}{10mm}{10mm}{\slshape}{2pt}{\bfseries}{\newline}{10mm}{}
\theoremstyle{examplestyle}
能够得到这样的定理
Theorme:
bla bla bla bla
但它不应该适用于评论,为此我希望
remark : bla bla bla
并不是
remark:
bla bla bla
当我这样写的时候
\documentclass{article}%
\usepackage[utf8]{inputenc}%
\usepackage[T1]{fontenc}%
\usepackage[francais]{babel}%
\usepackage{textcomp}%
\usepackage{amsmath,amssymb}%
\usepackage{lmodern}%
\usepackage[a4paper]{geometry}%
\usepackage{graphicx}%
\usepackage{xcolor}%
\usepackage{microtype}%
\usepackage{amsthm}%
\usepackage{hyperref}%
\hypersetup{pdfstartview=XYZ}%
\newtheoremstyle{examplestyle}{10mm}{10mm}{\slshape}{2pt}{\bfseries}{\newline}{10mm}{}
\theoremstyle{examplestyle}
\newtheorem{theorem}{Théorème}[section]
\newtheorem{definition}[theorem]{Définition}
\newtheorem{corollory}[theorem]{Corollaire}
\newtheorem{lemma}[theorem]{Lemme}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{remark}[theorem]{Remarque}
\newtheorem{property}[theorem]{Propriété}
\newtheorem{demonstration}[theorem]{Démonstration.}
\renewcommand{\labelenumi}{(\alph{enumi})}
\renewcommand{\labelitemi}{$\bullet$}
\begin{document}
\begin{theorem}
bla bla bla
\end{theorem}
\begin{property}
\begin{itemize}
\item Si X est une variable aléatoire de loi N(m, t) alors
\[ \mathbb{E}(\exp(zX))=\exp(\frac{tz^{2}}{2}+mz), \hspace{4mm} \forall z \in \mathbb{C} ;\]
\item Si X suit une loi $\mathcal{N}(m,t)$, alors $a+bX$ suit une loi $\mathcal{N}(a+bm,b^{2}t).$ ;
\item Si $X$ et $Y$ sont deux variables aléatoires indépendantes suivant respectivement les lois $\mathcal{N}(a,t)$ et $N(b,s),$ alors $X+Y$ suit la loi $\mathcal{N}(a+b,t+s).$.
\end{itemize}
...\end{property}
\begin{property}
\
\begin{itemize}
\item Si X est une variable aléatoire de loi N(m, t) alors
\[ \mathbb{E}(\exp(zX))=\exp(\frac{tz^{2}}{2}+mz), \hspace{4mm} \forall z \in \mathbb{C} ;\]
\item Si X suit une loi $\mathcal{N}(m,t)$, alors $a+bX$ suit une loi $\mathcal{N}(a+bm,b^{2}t).$ ;
\item Si $X$ et $Y$ sont deux variables aléatoires indépendantes suivant respectivement les lois $\mathcal{N}(a,t)$ et $N(b,s),$ alors $X+Y$ suit la loi $\mathcal{N}(a+b,t+s).$.
\end{itemize}
\end{property}
\end{document}
我希望定理和注释的主体部分都放在新行上。
答案1
您的\newline
论点放在了错误的地方amsthm
。这就是您所拥有的:
\newtheoremstyle{examplestyle}{10mm}{10mm}{\slshape}{2pt}{\bfseries}{\newline}{10mm}{}
说明书上说你应该有以下东西:
\newtheoremstyle{examplestyle}{10mm}{10mm}{\slshape}{2pt}{\bfseries}{}{\newline}{}
(我不太清楚您要用 做什么10mm
,所以我把它省略了。)
您已将要查找标题后面标点符号的\newline
位置。\newtheoremstyle
下一个参数应该是“thm 头后的空格”,其中\newline
= 换行符。
这样做的一个问题是,当标题后面直接跟一个列表时,会插入额外的空间,并且(由于列表的定义方式),这可能会导致标题单独留在页面的底部。我不知道有什么好的自动修复方法可以解决这个问题。