Code: Select all
\usepackage[greek,english]{babel}
\usepackage[T1]{fontenc}
\usepackage{times}
\usepackage{lucimono} %%my package, sets Lucida Mono EF as monospace font
\usepackage[kerkis]{psgreek}
\usepackage[colorlinks,linkcolor=blue,urlcolor=blue]{hyperref}
At the present, there is not an official symbol for bitcoin and the most commonly used symbols in graphics are not yet in fonts.
For this reason, I use the following definitions.
Code: Select all
\newcommand{\btc}{BTC}
\newcommand{\mbtc}{mBTC}
\newcommand{\ubtc}{\foreignlanguage{greek}{m}BTC}
I use those within a LaTeX section:
Code: Select all
\subsection{\btc{}, \mbtc{}, \ubtc{}}
There, the link to the subsection uses m instead of Greek mu for my
\ubtc{}
command. So it looks likeBTC, mBTC, mBTC
That last mBTC should be Greek character mu BTC. I would prefer it use the mu obviously, but if that is not possible, then use a "u" instead of "m".
How do I do this?