1

I am looking to replace the \qed or \qedsymbol with a Christmas tree or a Christmas tree inside a box. I've done this already with a smiley by using \renewcommand{\qedsymbol}{\smiley}, but I don't know how one would go about this using a Christmas tree (since there is no Christmas tree character)

inf
  • 13
  • You could make use of fontawesome5's \faTree symbol: `\documentclass{article} \usepackage{fontawesome5} \usepackage{amsthm} \renewcommand\qedsymbol{\faTree}

    \begin{document} \begin{proof} Merry Christmas! \end{proof}
    \end{document}` Resulting output: https://i.stack.imgur.com/iXraq.png

    – leandriis Dec 16 '20 at 08:55

1 Answers1

0

Similar to tombstones and beer mugs

\documentclass[11pt]{article}

\usepackage{graphicx} \usepackage{amsthm}

\usepackage[a4paper,margin=1in,footskip=0.25in]{geometry}

\renewcommand\qedsymbol{\raisebox{-4pt}{\includegraphics[height=10pt]{christ_tree}}}

\begin{document}

\begin{proof}
    Merry Christmas!
\end{proof}

\end{document}

enter image description here

jl00
  • 116