Double checkmark symbol











up vote
6
down vote

favorite
1












How do I produce double checkmarks? Similar to this:



enter image description here



rlap{checkmark}checkmark


overlaps one on the other










share|improve this question







New contributor




Rakshit Kothari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    up vote
    6
    down vote

    favorite
    1












    How do I produce double checkmarks? Similar to this:



    enter image description here



    rlap{checkmark}checkmark


    overlaps one on the other










    share|improve this question







    New contributor




    Rakshit Kothari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      6
      down vote

      favorite
      1









      up vote
      6
      down vote

      favorite
      1






      1





      How do I produce double checkmarks? Similar to this:



      enter image description here



      rlap{checkmark}checkmark


      overlaps one on the other










      share|improve this question







      New contributor




      Rakshit Kothari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      How do I produce double checkmarks? Similar to this:



      enter image description here



      rlap{checkmark}checkmark


      overlaps one on the other







      stacking-symbols






      share|improve this question







      New contributor




      Rakshit Kothari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Rakshit Kothari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Rakshit Kothari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 2 days ago









      Rakshit Kothari

      333




      333




      New contributor




      Rakshit Kothari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Rakshit Kothari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Rakshit Kothari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          14
          down vote



          accepted










          Rather than checkmark from the amssymb package this symbols looks closure to checked from wasysym. You can use:



          documentclass{article}
          usepackage{xcolor}
          usepackage{wasysym}

          newcommanddoublecheck{textcolor{blue}{checkedkern-0.6emchecked}}

          begin{document}

          doublecheck

          end{document}


          to produce:



          enter image description here






          share|improve this answer























          • Thank you for the answer, I've marked this as solved.
            – Rakshit Kothari
            2 days ago










          • @egreg Thanks. Fixed.
            – Andrew
            yesterday


















          up vote
          8
          down vote













          Just for fun (meaning that @Andrew's answer is the one that should be accepted): a TikZy proposal.



          documentclass{article}
          usepackage{tikz}
          tikzset{pics/.cd,
          checkmark/.style={code={% starting point : https://tex.stackexchange.com/a/132790/121799
          pgfgettransformentries{tmpxx}{tmp}{tmp}{tmp}{tmp}{tmp}
          draw[line width=tmpxx*1pt,blue!80,fill=blue!60,line join=bevel] (0,.35) -- (.25,0) to[bend left=5] (0.8,.6) to[bend
          right=5] (.25,.18) -- cycle;}}}
          newcommand{doubleckmark}{begin{tikzpicture}[baseline={(0,0)}]
          path (0,0) pic[scale=0.4]{checkmark} (0.12,0) pic[scale=0.4]{checkmark};
          end{tikzpicture}}
          begin{document}
          begin{tikzpicture}
          pic{checkmark};
          end{tikzpicture}

          abc doubleckmark xyz

          end{document}


          enter image description here






          share|improve this answer

















          • 2




            +1 I vote for marmot's answer as it fulfills the two colour requirement
            – Andrew
            2 days ago










          • Nice, but the slope is not steep enough and the colours are not the same.
            – AndréC
            2 days ago










          • @AndréC Thanks! Yes, I know that this is not an exact match, but the OP says "similar to". Of course, if the OP gives me more feedback, I'll be happy to adjust the graphics.
            – marmot
            2 days ago






          • 1




            Thank you very much @marmot you gave me exactly what I needed. The slope and colors are minor details irrelevant to my needs.
            – Rakshit Kothari
            2 days ago












          • @Andrew I agree too and I vote positively.
            – Sebastiano
            yesterday











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "85"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          Rakshit Kothari is a new contributor. Be nice, and check out our Code of Conduct.










           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461926%2fdouble-checkmark-symbol%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          14
          down vote



          accepted










          Rather than checkmark from the amssymb package this symbols looks closure to checked from wasysym. You can use:



          documentclass{article}
          usepackage{xcolor}
          usepackage{wasysym}

          newcommanddoublecheck{textcolor{blue}{checkedkern-0.6emchecked}}

          begin{document}

          doublecheck

          end{document}


          to produce:



          enter image description here






          share|improve this answer























          • Thank you for the answer, I've marked this as solved.
            – Rakshit Kothari
            2 days ago










          • @egreg Thanks. Fixed.
            – Andrew
            yesterday















          up vote
          14
          down vote



          accepted










          Rather than checkmark from the amssymb package this symbols looks closure to checked from wasysym. You can use:



          documentclass{article}
          usepackage{xcolor}
          usepackage{wasysym}

          newcommanddoublecheck{textcolor{blue}{checkedkern-0.6emchecked}}

          begin{document}

          doublecheck

          end{document}


          to produce:



          enter image description here






          share|improve this answer























          • Thank you for the answer, I've marked this as solved.
            – Rakshit Kothari
            2 days ago










          • @egreg Thanks. Fixed.
            – Andrew
            yesterday













          up vote
          14
          down vote



          accepted







          up vote
          14
          down vote



          accepted






          Rather than checkmark from the amssymb package this symbols looks closure to checked from wasysym. You can use:



          documentclass{article}
          usepackage{xcolor}
          usepackage{wasysym}

          newcommanddoublecheck{textcolor{blue}{checkedkern-0.6emchecked}}

          begin{document}

          doublecheck

          end{document}


          to produce:



          enter image description here






          share|improve this answer














          Rather than checkmark from the amssymb package this symbols looks closure to checked from wasysym. You can use:



          documentclass{article}
          usepackage{xcolor}
          usepackage{wasysym}

          newcommanddoublecheck{textcolor{blue}{checkedkern-0.6emchecked}}

          begin{document}

          doublecheck

          end{document}


          to produce:



          enter image description here







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited yesterday

























          answered 2 days ago









          Andrew

          29.6k34279




          29.6k34279












          • Thank you for the answer, I've marked this as solved.
            – Rakshit Kothari
            2 days ago










          • @egreg Thanks. Fixed.
            – Andrew
            yesterday


















          • Thank you for the answer, I've marked this as solved.
            – Rakshit Kothari
            2 days ago










          • @egreg Thanks. Fixed.
            – Andrew
            yesterday
















          Thank you for the answer, I've marked this as solved.
          – Rakshit Kothari
          2 days ago




          Thank you for the answer, I've marked this as solved.
          – Rakshit Kothari
          2 days ago












          @egreg Thanks. Fixed.
          – Andrew
          yesterday




          @egreg Thanks. Fixed.
          – Andrew
          yesterday










          up vote
          8
          down vote













          Just for fun (meaning that @Andrew's answer is the one that should be accepted): a TikZy proposal.



          documentclass{article}
          usepackage{tikz}
          tikzset{pics/.cd,
          checkmark/.style={code={% starting point : https://tex.stackexchange.com/a/132790/121799
          pgfgettransformentries{tmpxx}{tmp}{tmp}{tmp}{tmp}{tmp}
          draw[line width=tmpxx*1pt,blue!80,fill=blue!60,line join=bevel] (0,.35) -- (.25,0) to[bend left=5] (0.8,.6) to[bend
          right=5] (.25,.18) -- cycle;}}}
          newcommand{doubleckmark}{begin{tikzpicture}[baseline={(0,0)}]
          path (0,0) pic[scale=0.4]{checkmark} (0.12,0) pic[scale=0.4]{checkmark};
          end{tikzpicture}}
          begin{document}
          begin{tikzpicture}
          pic{checkmark};
          end{tikzpicture}

          abc doubleckmark xyz

          end{document}


          enter image description here






          share|improve this answer

















          • 2




            +1 I vote for marmot's answer as it fulfills the two colour requirement
            – Andrew
            2 days ago










          • Nice, but the slope is not steep enough and the colours are not the same.
            – AndréC
            2 days ago










          • @AndréC Thanks! Yes, I know that this is not an exact match, but the OP says "similar to". Of course, if the OP gives me more feedback, I'll be happy to adjust the graphics.
            – marmot
            2 days ago






          • 1




            Thank you very much @marmot you gave me exactly what I needed. The slope and colors are minor details irrelevant to my needs.
            – Rakshit Kothari
            2 days ago












          • @Andrew I agree too and I vote positively.
            – Sebastiano
            yesterday















          up vote
          8
          down vote













          Just for fun (meaning that @Andrew's answer is the one that should be accepted): a TikZy proposal.



          documentclass{article}
          usepackage{tikz}
          tikzset{pics/.cd,
          checkmark/.style={code={% starting point : https://tex.stackexchange.com/a/132790/121799
          pgfgettransformentries{tmpxx}{tmp}{tmp}{tmp}{tmp}{tmp}
          draw[line width=tmpxx*1pt,blue!80,fill=blue!60,line join=bevel] (0,.35) -- (.25,0) to[bend left=5] (0.8,.6) to[bend
          right=5] (.25,.18) -- cycle;}}}
          newcommand{doubleckmark}{begin{tikzpicture}[baseline={(0,0)}]
          path (0,0) pic[scale=0.4]{checkmark} (0.12,0) pic[scale=0.4]{checkmark};
          end{tikzpicture}}
          begin{document}
          begin{tikzpicture}
          pic{checkmark};
          end{tikzpicture}

          abc doubleckmark xyz

          end{document}


          enter image description here






          share|improve this answer

















          • 2




            +1 I vote for marmot's answer as it fulfills the two colour requirement
            – Andrew
            2 days ago










          • Nice, but the slope is not steep enough and the colours are not the same.
            – AndréC
            2 days ago










          • @AndréC Thanks! Yes, I know that this is not an exact match, but the OP says "similar to". Of course, if the OP gives me more feedback, I'll be happy to adjust the graphics.
            – marmot
            2 days ago






          • 1




            Thank you very much @marmot you gave me exactly what I needed. The slope and colors are minor details irrelevant to my needs.
            – Rakshit Kothari
            2 days ago












          • @Andrew I agree too and I vote positively.
            – Sebastiano
            yesterday













          up vote
          8
          down vote










          up vote
          8
          down vote









          Just for fun (meaning that @Andrew's answer is the one that should be accepted): a TikZy proposal.



          documentclass{article}
          usepackage{tikz}
          tikzset{pics/.cd,
          checkmark/.style={code={% starting point : https://tex.stackexchange.com/a/132790/121799
          pgfgettransformentries{tmpxx}{tmp}{tmp}{tmp}{tmp}{tmp}
          draw[line width=tmpxx*1pt,blue!80,fill=blue!60,line join=bevel] (0,.35) -- (.25,0) to[bend left=5] (0.8,.6) to[bend
          right=5] (.25,.18) -- cycle;}}}
          newcommand{doubleckmark}{begin{tikzpicture}[baseline={(0,0)}]
          path (0,0) pic[scale=0.4]{checkmark} (0.12,0) pic[scale=0.4]{checkmark};
          end{tikzpicture}}
          begin{document}
          begin{tikzpicture}
          pic{checkmark};
          end{tikzpicture}

          abc doubleckmark xyz

          end{document}


          enter image description here






          share|improve this answer












          Just for fun (meaning that @Andrew's answer is the one that should be accepted): a TikZy proposal.



          documentclass{article}
          usepackage{tikz}
          tikzset{pics/.cd,
          checkmark/.style={code={% starting point : https://tex.stackexchange.com/a/132790/121799
          pgfgettransformentries{tmpxx}{tmp}{tmp}{tmp}{tmp}{tmp}
          draw[line width=tmpxx*1pt,blue!80,fill=blue!60,line join=bevel] (0,.35) -- (.25,0) to[bend left=5] (0.8,.6) to[bend
          right=5] (.25,.18) -- cycle;}}}
          newcommand{doubleckmark}{begin{tikzpicture}[baseline={(0,0)}]
          path (0,0) pic[scale=0.4]{checkmark} (0.12,0) pic[scale=0.4]{checkmark};
          end{tikzpicture}}
          begin{document}
          begin{tikzpicture}
          pic{checkmark};
          end{tikzpicture}

          abc doubleckmark xyz

          end{document}


          enter image description here







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 days ago









          marmot

          79k488166




          79k488166








          • 2




            +1 I vote for marmot's answer as it fulfills the two colour requirement
            – Andrew
            2 days ago










          • Nice, but the slope is not steep enough and the colours are not the same.
            – AndréC
            2 days ago










          • @AndréC Thanks! Yes, I know that this is not an exact match, but the OP says "similar to". Of course, if the OP gives me more feedback, I'll be happy to adjust the graphics.
            – marmot
            2 days ago






          • 1




            Thank you very much @marmot you gave me exactly what I needed. The slope and colors are minor details irrelevant to my needs.
            – Rakshit Kothari
            2 days ago












          • @Andrew I agree too and I vote positively.
            – Sebastiano
            yesterday














          • 2




            +1 I vote for marmot's answer as it fulfills the two colour requirement
            – Andrew
            2 days ago










          • Nice, but the slope is not steep enough and the colours are not the same.
            – AndréC
            2 days ago










          • @AndréC Thanks! Yes, I know that this is not an exact match, but the OP says "similar to". Of course, if the OP gives me more feedback, I'll be happy to adjust the graphics.
            – marmot
            2 days ago






          • 1




            Thank you very much @marmot you gave me exactly what I needed. The slope and colors are minor details irrelevant to my needs.
            – Rakshit Kothari
            2 days ago












          • @Andrew I agree too and I vote positively.
            – Sebastiano
            yesterday








          2




          2




          +1 I vote for marmot's answer as it fulfills the two colour requirement
          – Andrew
          2 days ago




          +1 I vote for marmot's answer as it fulfills the two colour requirement
          – Andrew
          2 days ago












          Nice, but the slope is not steep enough and the colours are not the same.
          – AndréC
          2 days ago




          Nice, but the slope is not steep enough and the colours are not the same.
          – AndréC
          2 days ago












          @AndréC Thanks! Yes, I know that this is not an exact match, but the OP says "similar to". Of course, if the OP gives me more feedback, I'll be happy to adjust the graphics.
          – marmot
          2 days ago




          @AndréC Thanks! Yes, I know that this is not an exact match, but the OP says "similar to". Of course, if the OP gives me more feedback, I'll be happy to adjust the graphics.
          – marmot
          2 days ago




          1




          1




          Thank you very much @marmot you gave me exactly what I needed. The slope and colors are minor details irrelevant to my needs.
          – Rakshit Kothari
          2 days ago






          Thank you very much @marmot you gave me exactly what I needed. The slope and colors are minor details irrelevant to my needs.
          – Rakshit Kothari
          2 days ago














          @Andrew I agree too and I vote positively.
          – Sebastiano
          yesterday




          @Andrew I agree too and I vote positively.
          – Sebastiano
          yesterday










          Rakshit Kothari is a new contributor. Be nice, and check out our Code of Conduct.










           

          draft saved


          draft discarded


















          Rakshit Kothari is a new contributor. Be nice, and check out our Code of Conduct.













          Rakshit Kothari is a new contributor. Be nice, and check out our Code of Conduct.












          Rakshit Kothari is a new contributor. Be nice, and check out our Code of Conduct.















           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461926%2fdouble-checkmark-symbol%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Quarter-circle Tiles

          build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

          Mont Emei