Bitcoin logo in LaTeX?

0

Is there a fairly simple way to include a standard-looking but not too elaborate "Bitcoin accepted here" logo in a LaTeX document?

Michael Hardy

Posted 2014-09-17T16:55:10.543

Reputation: 1 213

Check this answer out from the Tex.StackExchange community: http://tex.stackexchange.com/questions/112161/bitcoin-symbol-in-latex

Luca Matteis 2014-09-17T17:33:23.243

@LucaMatteis: That seems to be for the Bitcoin currency symbol, not for the logo (e.g. the orange coin).Nate Eldredge 2014-09-17T17:49:30.820

1

Asked and answered on Tex.SE: http://tex.stackexchange.com/questions/201597/bitcoin-accepted-here

Nate Eldredge 2014-09-17T18:02:35.407

Answers

1

Yeah, check out this answer on tex.

% arara: lualatex

\documentclass{article}
\usepackage{fontspec}
\usepackage{fontawesome}
\def\faBtc{\FA\symbol{"F15A}}
\usepackage{tikz}
\usetikzlibrary

{positioning}
\newcommand{\bitcoin}{%
    \begin{tikzpicture}
\foreach \i in {0,100}{
    \node [circle, fill=orange!90!white!\i, font=\large, inner sep=0.25ex, rotate=-15, text=white] 
    (symbol) at (-1.25,1/8+\i/4000) {\faBtc};}
    \end{tikzpicture}}
\usepackage{mathtools}
\usepackage{siunitx}
\DeclareSIUnit{\btc}{\ifmmode\text{\faBtc}\else\faBtc\fi}

\begin{document}
\SI{1000000}{\btc}
\bitcoin
\end{document}

Loourr

Posted 2014-09-17T16:55:10.543

Reputation: 3 022

Actually, the reason I posted here is that I thouoght someone here might know something that those who posted there do not know. For example, maybe something like invoking one style file designed for the occasion and adding a single command to the document where the logo is to appear.Michael Hardy 2014-09-17T20:03:48.920