What package and command do I have to insert to write letter V in a handwriting style using Inline Math Mode?
Below is the result I want to obtain:
What package and command do I have to insert to write letter V in a handwriting style using Inline Math Mode?
Below is the result I want to obtain:
A version with \mathcal:
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}% for \mathbb
\begin{document}
$ \mathcal{V} \subset \mathbb{R}^3 $
\end{document}
The shape of the symbol depends on the font. An example with mathptmx (Times):
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}% for \mathbb
\usepackage{mathptmx}
\begin{document}
$ \mathcal{V} \subset \mathbb{R}^3 $
\end{document}
The same with mathpazo (Palatino) instead of mathptmx:
The .ttf version of the font Mayfair can be downloaded here. You will have to use Lua- or XeLaTeX in order to get it running, though.
% arara: lualatex
\documentclass{article}
\usepackage{fontspec}
\usepackage{mathtools}
\newcommand*{\myV}{\text{{\fontspec{Mayfair.ttf}V}}}
\usepackage{amssymb}
\begin{document}
Here is your desired inline math: $\myV\subset\mathbb{R}^3$
And back to the normal font again.
\end{document}
fontspecin order to see how to include an.otffont like this one. – LaRiFaRi Aug 20 '15 at 12:49