Closed ivannomad closed 3 years ago
Hello! You can find a definition for \R
command in his preamble.tex.
\newcommand\R{\ensuremath{\mathbb{R}}}
Thanks, it really help me! But I made minor changes. Now my commands look as follow:
\newcommand{\N}{\mathbb{N}}
\newcommand{\R}{\mathbb{R}}
\newcommand{\Z}{\mathbb{Z}}
\newcommand{\Q}{\mathbb{Q}}
\renewcommand{\O}{\emptyset}
You are welcome!
Great question @ivannomad and thanks for answering @NikitaEvs!
Hello! For math I use next
\usepackage{mathtools, amssymb}
. If I type\mathbb{R}
in .tex file it compile as double-struck R which means real numbers. But in your tex.snippet file you use next code for number sets:I think, that is more convenient than
\mathbb{R}
. But unfortunately, my compiler not recognise\R
even if I use it in math mode$\R$
What math packages do you use for this?