Guest User

Untitled

a guest
Dec 19th, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.94 KB | None | 0 0
  1. \documentclass{article}
  2.  
  3. \usepackage{type1cm}
  4. \usepackage{lettrine}
  5.  
  6. \makeatletter
  7. \newenvironment{thm}{%
  8.   \trivlist
  9.   \@topsep=\topsep
  10.   \@topsepadd=\topsep
  11.   \item                             %% <- it doesn't need a label
  12.   \def\LettrineFontHook{\normalfont\bfseries}%
  13.   \def\LettrineTextFont{\normalfont\bfseries}%
  14.   \lettrine[nindent=0em, findent=0.125em, realheight]{T}{heorem.}%
  15.   \everypar{\parshape0\everypar{}}% %% <- reset \parshape
  16.   \itshape\space\ignorespaces
  17. }{%
  18.   \endtrivlist
  19.   \@endpefalse
  20. }
  21. \makeatother
  22.  
  23. \def\lipsum{Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
  24.           Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae, felis.
  25.           Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget,
  26.           consectetuer id, vulputate a, magna. Donec vehicula augue eu neque.}
  27.  
  28. \begin{document}
  29.  
  30. \lipsum
  31.  
  32. \begin{thm}
  33.    \lipsum
  34.  
  35.    \lipsum
  36. \end{thm}
  37.  
  38. \lipsum
  39.  
  40. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment