Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. documentclass[11pt,a4paper]{article}
  2. usepackage[margin=3cm]{geometry}
  3. usepackage[english]{babel}
  4. usepackage{amsmath, amsthm}
  5. begin{document}
  6.  
  7. begin{proof}
  8. Hello there good chap! I'll put in another line here just to be sure its clear what I mean.
  9. end{proof}
  10.  
  11.  
  12.  
  13. end{document}
  14.  
  15. usepackage{etoolbox}
  16. patchcmd{endproof}
  17. {popQED}
  18. {parpopQED}
  19. {}
  20. {}
  21.  
  22. documentclass[11pt,a4paper]{article}
  23. usepackage[margin=3cm]{geometry}
  24. usepackage[english]{babel}
  25. usepackage{amsmath, amsthm}
  26.  
  27. usepackage{etoolbox}
  28. patchcmd{endproof}
  29. {popQED}
  30. {parpopQED}
  31. {}
  32. {}
  33.  
  34. begin{document}
  35.  
  36. begin{proof}
  37. Hello there good chap! I'll put in another line here just to be sure its clear what I mean.
  38. end{proof}
  39.  
  40. end{document}
  41.  
  42. documentclass[a4paper]{article}
  43. usepackage{amsthm}
  44.  
  45. % lower the symbol and make it zero width
  46. renewcommand{qedsymbol}{raisebox{-baselineskip}{llap{openbox}}}
  47.  
  48. begin{document}
  49.  
  50. begin{proof}
  51. This is a proof that this setting is emph{really bad}
  52. end{proof}
  53.  
  54. end{document}
  55.  
  56. documentclass{article}
  57. usepackage{amsthm,amsmath,xpatch}
  58. newtheorem{theorem}{Theorem}
  59.  
  60. % xpatchcmd{<cmd>}{<search>}{<replace>}{<success>}{<failure>}
  61. xpatchcmd{qed}{leavevmode}{parnobreakleavevmode}{}{}
  62.  
  63. begin{document}
  64. begin{proof}
  65. begin{equation}
  66. f(x) = ax^2 + bx + c
  67. end{equation}
  68. end{proof}
  69.  
  70. begin{proof}
  71. begin{equation}
  72. f(x) = ax^2 + bx + c
  73. end{equation}
  74. Some more text.
  75. end{proof}
  76. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement