-1

I am using Latex, and I can't share my specific code for privacy reasons, but I want to remove the qed symbol for separate proofs, but not change every proof in the document. The only thing is don't know how to do that, so any help would be much appreciated.

  • 4
    well you will have to share code if you want help. – Ulrike Fischer Nov 12 '20 at 13:39
  • 1
    This is not mathoverflow, you can make up fake theorems and proofs. – Jay Nov 12 '20 at 13:54
  • Welcome to TeX.SE ... Without seeing your code, not able to give correct solution, atleast generate your code with using standard inputs like book.cls – MadyYuvi Nov 12 '20 at 14:30
  • Sorry, but I can't put in my code, but I am looking to see if there is some command you can put in with the proof code so that you can change the qed for only that proof. – Jonathan Davis Nov 12 '20 at 14:46
  • You don't have to put here your real code but at least the document class and the loaded packages. It might be as simple as \renewcommand{\qed}{} within the proof environment but without code it's only a guess. – campa Nov 12 '20 at 17:00
  • If you are using amsthm, you can locally redfine \qedsymbol within the proof. This question provides some additional information: https://tex.stackexchange.com/q/256944 – barbara beeton Nov 12 '20 at 17:02

1 Answers1

0

The ntheorem package allows you to redefine QED symbols that way. See section 2.6 of the manual, and the examples in section 4.

Davislor
  • 44,045