🔰style
LaTeX ⟩ style
\mathbb{...} % math font
\color{blue}{...} % text color
example
code
% text color
\color{blue}{...}
\color{#f00}{...}
% simple border
\fbox {your text here}
% background color
% - rendered as text
% - use `$...$` to switch back to math mode
\colorbox{orange}{$F=ma$ ... (1)}
% border and background color
% - rendered as text
% - use `$...$` to switch back to math mode
\fcolorbox{orange}{red}{$F=ma$ ... (1)}
% {border}{background}{...}
Last updated
Was this helpful?