Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{amsthm, amsmath}
  3. usepackage{enumitem}
  4.  
  5.  
  6. newtheoremstyle{MyTheorem}% name of the style to be used
  7. {}% measure of space to leave above the theorem. E.g.: 3pt
  8. {}% measure of space to leave below the theorem. E.g.: 3pt
  9. {}% name of font to use in the body of the theorem
  10. {}% measure of space to indent
  11. {}% name of head font
  12. {}% punctuation between head and body
  13. {}% space after theorem head; " " = normal interword space
  14. {}% Manually specify head
  15.  
  16.  
  17. theoremstyle{MyTheorem}
  18. newtheorem*{theorem}{Theorem}
  19.  
  20.  
  21. begin{document}
  22.  
  23. begin{theorem}
  24. Any $ell in L$ is a root of an irreducible polynomial $p in F[x]$ which splits in $L$ into distinct linear factors.
  25. end{theorem}
  26.  
  27. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement