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

  • Thread starter Thread starter Math Amateur
  • Start date Start date
  • Tags Tags
    Code Latex Set
AI Thread Summary
The discussion centers around the proper use of LaTeX code for mathematical notation, specifically when expressing set differences. The original poster encountered issues with the command \K being undefined, which is a common error when using LaTeX. Participants suggested that the correct way to denote the set difference between two sets, A and B, is to use either \mathbb{R}^n\backslash K or \mathbb{R}^n\setminus K. The latter option provides better spacing around the slash. Additionally, it was noted that escaping the backslash character is necessary in certain contexts, which can lead to confusion. The "Detexify" tool was recommended as a helpful resource for identifying LaTeX commands. Overall, the conversation highlights the nuances of LaTeX syntax and offers solutions for common formatting issues.
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.
 

Similar threads

Replies
1
Views
1K
Replies
4
Views
2K
Replies
3
Views
2K
Replies
3
Views
2K
Back
Top