0

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

3

2 Answers 2

2
\documentclass{article}
\usepackage{fontawesome5} 
\begin{document}
Voici les symboles :  \faBitcoin  et  \faBtc
\end{document}

Other symbol you can use with this package can be found here: https://mirrors.ibiblio.org/CTAN/fonts/fontawesome5/doc/fontawesome5.pdf

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}
1
  • 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. Commented Sep 17, 2014 at 20:03

Not the answer you're looking for? Browse other questions tagged or ask your own question.