I want to make some definition in my thesis very clear, by putting it in its own line, with stylish, decorative (or whatever you call it) quotes. How can I do that in Latex?
Asked
Active
Viewed 824 times
1 Answers
2
Consider to put your definition into a theorem-like environment. Here's an example using the thmtools package (with ntheorem as backend):
\documentclass{article}
\usepackage{ntheorem}
\usepackage{thmtools}
\declaretheoremstyle[headfont=\scshape,bodyfont=\itshape,numberwithin=section]{mystyle}
\declaretheorem[style=mystyle]{definition}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\section{foo}
\blindtext
\begin{definition}
\blindtext
\end{definition}
\blindtext
\end{document}
lockstep
- 250,273
\declaretheoremstyle. – lockstep May 20 '11 at 16:39\listfilesat the very start of my example, compile and check the log file.ntheorem.styshould be version2011/02/16 1.31;thmtools.styshould be2010/08/09 v50. – lockstep May 20 '11 at 17:57headfont=\scshapewith e.g.headfont=\bfseries. – lockstep May 21 '11 at 16:21