Latex Code for One Set Minus Another .... .... A\B .... ....

  • Context: LaTeX 
  • Thread starter Thread starter Math Amateur
  • Start date Start date
  • Tags Tags
    Code Latex Set
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 5K views
Math Amateur
Gold Member
MHB
Messages
3,920
Reaction score
48
Recently I posted the following text on the Analysis forum ..." ... ... In order to demonstrate that $$K$$ is closed, we prove that $$\mathbb{R}^n\K$$ is open. Indeed, choose $$y \notin K$$ and define $$O_j = \{ x \in \mathbb{R}^n \ \mid \ \mid \mid x - y \mid \mid \gt \frac{1}{j} \}$$ for $$j \in \mathbb{N}$$. ... ... "... and (as I did above) got a red \K in \mathbb{R}^n\K presumably because I'm misusing a special character \ in the code ...

What is wrong with what I've done and how do I correct it?

Further, how does one correctly write Latex code for one set minus another as in A\B?

Peter
 
Physics news on Phys.org
This works, although there might be a better solution...

\mathbb{R}^n\text{\\}K

gives:

$$\mathbb{R}^n\text{\\}K$$
 
MarkFL said:
This works, although there might be a better solution...

\mathbb{R}^n\text{\\}K

gives:

$$\mathbb{R}^n\text{\\}K$$
Thanks Mark ... but seems strange to me that two \s are required in text{ \\ } ... but then ... hey ... that's the rules of the code :)

Thanks again ...

Peter
 
Peter said:
Thanks Mark ... but seems strange to me that two \s are required in text{ \\ } ... but then ... hey ... that's the rules of the code :)

Thanks again ...

Peter

Yeah, you have to escape the escape character to get a literal character. :)

You can also use:

\mathbb{R}^n\backslash K

or:

\mathbb{R}^n\setminus K (this one has more padding to the left and right of the slash)
 
I also want to point out that in the "MHB Widgets" block to the right of the editor is "Detexify" listed as the second entry in the list, and clicking that will popup a window into which you can draw a character you wish to use, and it will give you in most cases several options to try. (Yes)
 
MarkFL said:
\mathbb{R}^n\setminus K (this one has more padding to the left and right of the slash)
This is the correct solution.

Peter said:
What is wrong with what I've done and how do I correct it?
The command \K is undefined. TeX commands usually consist of a backslash followed by letters.