Footprints symbol in LaTeX

Clash Royale CLAN TAG#URR8PPP
up vote
10
down vote
favorite
I was wondering if someone knows if there is a foot/feet symbol available in any of latex packages that I could use in my text? I would appreciate any hint.
I do really mean a foot/feet icon as in the picture below.

symbols packages
add a comment |Â
up vote
10
down vote
favorite
I was wondering if someone knows if there is a foot/feet symbol available in any of latex packages that I could use in my text? I would appreciate any hint.
I do really mean a foot/feet icon as in the picture below.

symbols packages
2
The tikz decoration library has something similar
â samcarter
Sep 10 at 15:44
1
TikZ has footprints in the libraryusetikzlibrarydecorations.footprints.
â marmot
Sep 10 at 15:44
add a comment |Â
up vote
10
down vote
favorite
up vote
10
down vote
favorite
I was wondering if someone knows if there is a foot/feet symbol available in any of latex packages that I could use in my text? I would appreciate any hint.
I do really mean a foot/feet icon as in the picture below.

symbols packages
I was wondering if someone knows if there is a foot/feet symbol available in any of latex packages that I could use in my text? I would appreciate any hint.
I do really mean a foot/feet icon as in the picture below.

symbols packages
symbols packages
edited Sep 11 at 11:37
pipe
1055
1055
asked Sep 10 at 15:40
Jo-Achna
1078
1078
2
The tikz decoration library has something similar
â samcarter
Sep 10 at 15:44
1
TikZ has footprints in the libraryusetikzlibrarydecorations.footprints.
â marmot
Sep 10 at 15:44
add a comment |Â
2
The tikz decoration library has something similar
â samcarter
Sep 10 at 15:44
1
TikZ has footprints in the libraryusetikzlibrarydecorations.footprints.
â marmot
Sep 10 at 15:44
2
2
The tikz decoration library has something similar
â samcarter
Sep 10 at 15:44
The tikz decoration library has something similar
â samcarter
Sep 10 at 15:44
1
1
TikZ has footprints in the library
usetikzlibrarydecorations.footprints.â marmot
Sep 10 at 15:44
TikZ has footprints in the library
usetikzlibrarydecorations.footprints.â marmot
Sep 10 at 15:44
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
21
down vote
Welcome to the TikZ section of TeX.SE!
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.footprints
begindocument
begintikzpicture[decoration=footprints,foot length=20pt]
draw [decorate] (0,0) -- (0,1.5);
endtikzpicture
enddocument

ADDENDUM: A version for tikzlings. ;-)
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.footprints
begindocument
begintikzpicture
foreach X [count=Y] in human,gnome,bird,felis silvestris
beginscope[xshift=2.25*Y*1cm,decoration=footprints,foot length=20pt,foot of=X]
draw [decorate] (0,0) -- (0,1.3);
node[font=sffamily] at (0,1.5) X;
endscope
endtikzpicture
enddocument

2nd ADDENDUM: How to create your custom footprints? I assume you have some black/white picture of a left foot, which you can legally use for that.
- Convert this picture to the pnm format. For instance, on Linux/Mac
OS you can usepngtopnm pic.png >pic.pnm. - Then use (e.g.)
potraceto make it a vector image,potrace pic.pnm. - You can open that with
inkscapeand save it astex, which
yields a document in the pstricks format. Remove the preamble and end. - Next you only need to do a regex search and replace that convers
convertscurvetotopgfcurveto, similarly forlinetoandmoveto. And a coordinate(x,y)needs to becomepgfqpointxptypt(the outer braces are important). - Then get rid of all
newrgbcolor,pscustomandnewpath
statements and extra braces, but end all paths withpgfpathclose.
Finally wrap this into
makeatletter
defpgf@lib@foot@of@critter{
% Coordinates extracted from
% license... Unknown author.
%
% Flip and rotate
pgftransformcm0-110pgfqpoint0pt0.8pt
pgftransformscale0.005
<result of your conversion>
makeatother
Of course, you may have to adjust the transformations, e.g. by dialing a different scale factor in pgftransformscale0.005.
You can then access these foot prints by saying foot of=critter. I will be happy to supplement this by an explicit example if someone points me to an image of a foot print that is free to use.
SUPER!Just what I was looking for!
â Jo-Achna
Sep 10 at 15:51
5
-1, as no marmot prints:-)
â David Carlisle
Sep 10 at 16:05
@marmot Would it help to have the coordinates as tikz code? (I can convert from vector graphic to tikz, but no idea how to get the raw pgf code)
â samcarter
Sep 10 at 17:06
@marmot: Yourpotracesuggestion is similar to this: Adding a signature on an online job application
â Werner
Sep 10 at 18:18
@Werner The potrace part, yes, not the (IMHO important) part on converting the resulting eps to pgf, which was implicitly asked by samcarter in this comment. Do you agree?
â marmot
Sep 10 at 18:21
 |Â
show 5 more comments
up vote
15
down vote
A version for when it's cold in the winter and one needs shoes (a problem unknown to marmots, because they hibernate):
documentclassarticle
usepackagefontawesome5
begindocument
faIconshoe-prints
enddocument

fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
â pzorba75
Sep 11 at 14:04
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
â samcarter
Sep 11 at 14:09
Available out of Miktex. To be installed manually not automatically on the fly when compiling with Texmaker and Miktex.
â pzorba75
Sep 11 at 15:21
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
21
down vote
Welcome to the TikZ section of TeX.SE!
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.footprints
begindocument
begintikzpicture[decoration=footprints,foot length=20pt]
draw [decorate] (0,0) -- (0,1.5);
endtikzpicture
enddocument

ADDENDUM: A version for tikzlings. ;-)
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.footprints
begindocument
begintikzpicture
foreach X [count=Y] in human,gnome,bird,felis silvestris
beginscope[xshift=2.25*Y*1cm,decoration=footprints,foot length=20pt,foot of=X]
draw [decorate] (0,0) -- (0,1.3);
node[font=sffamily] at (0,1.5) X;
endscope
endtikzpicture
enddocument

2nd ADDENDUM: How to create your custom footprints? I assume you have some black/white picture of a left foot, which you can legally use for that.
- Convert this picture to the pnm format. For instance, on Linux/Mac
OS you can usepngtopnm pic.png >pic.pnm. - Then use (e.g.)
potraceto make it a vector image,potrace pic.pnm. - You can open that with
inkscapeand save it astex, which
yields a document in the pstricks format. Remove the preamble and end. - Next you only need to do a regex search and replace that convers
convertscurvetotopgfcurveto, similarly forlinetoandmoveto. And a coordinate(x,y)needs to becomepgfqpointxptypt(the outer braces are important). - Then get rid of all
newrgbcolor,pscustomandnewpath
statements and extra braces, but end all paths withpgfpathclose.
Finally wrap this into
makeatletter
defpgf@lib@foot@of@critter{
% Coordinates extracted from
% license... Unknown author.
%
% Flip and rotate
pgftransformcm0-110pgfqpoint0pt0.8pt
pgftransformscale0.005
<result of your conversion>
makeatother
Of course, you may have to adjust the transformations, e.g. by dialing a different scale factor in pgftransformscale0.005.
You can then access these foot prints by saying foot of=critter. I will be happy to supplement this by an explicit example if someone points me to an image of a foot print that is free to use.
SUPER!Just what I was looking for!
â Jo-Achna
Sep 10 at 15:51
5
-1, as no marmot prints:-)
â David Carlisle
Sep 10 at 16:05
@marmot Would it help to have the coordinates as tikz code? (I can convert from vector graphic to tikz, but no idea how to get the raw pgf code)
â samcarter
Sep 10 at 17:06
@marmot: Yourpotracesuggestion is similar to this: Adding a signature on an online job application
â Werner
Sep 10 at 18:18
@Werner The potrace part, yes, not the (IMHO important) part on converting the resulting eps to pgf, which was implicitly asked by samcarter in this comment. Do you agree?
â marmot
Sep 10 at 18:21
 |Â
show 5 more comments
up vote
21
down vote
Welcome to the TikZ section of TeX.SE!
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.footprints
begindocument
begintikzpicture[decoration=footprints,foot length=20pt]
draw [decorate] (0,0) -- (0,1.5);
endtikzpicture
enddocument

ADDENDUM: A version for tikzlings. ;-)
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.footprints
begindocument
begintikzpicture
foreach X [count=Y] in human,gnome,bird,felis silvestris
beginscope[xshift=2.25*Y*1cm,decoration=footprints,foot length=20pt,foot of=X]
draw [decorate] (0,0) -- (0,1.3);
node[font=sffamily] at (0,1.5) X;
endscope
endtikzpicture
enddocument

2nd ADDENDUM: How to create your custom footprints? I assume you have some black/white picture of a left foot, which you can legally use for that.
- Convert this picture to the pnm format. For instance, on Linux/Mac
OS you can usepngtopnm pic.png >pic.pnm. - Then use (e.g.)
potraceto make it a vector image,potrace pic.pnm. - You can open that with
inkscapeand save it astex, which
yields a document in the pstricks format. Remove the preamble and end. - Next you only need to do a regex search and replace that convers
convertscurvetotopgfcurveto, similarly forlinetoandmoveto. And a coordinate(x,y)needs to becomepgfqpointxptypt(the outer braces are important). - Then get rid of all
newrgbcolor,pscustomandnewpath
statements and extra braces, but end all paths withpgfpathclose.
Finally wrap this into
makeatletter
defpgf@lib@foot@of@critter{
% Coordinates extracted from
% license... Unknown author.
%
% Flip and rotate
pgftransformcm0-110pgfqpoint0pt0.8pt
pgftransformscale0.005
<result of your conversion>
makeatother
Of course, you may have to adjust the transformations, e.g. by dialing a different scale factor in pgftransformscale0.005.
You can then access these foot prints by saying foot of=critter. I will be happy to supplement this by an explicit example if someone points me to an image of a foot print that is free to use.
SUPER!Just what I was looking for!
â Jo-Achna
Sep 10 at 15:51
5
-1, as no marmot prints:-)
â David Carlisle
Sep 10 at 16:05
@marmot Would it help to have the coordinates as tikz code? (I can convert from vector graphic to tikz, but no idea how to get the raw pgf code)
â samcarter
Sep 10 at 17:06
@marmot: Yourpotracesuggestion is similar to this: Adding a signature on an online job application
â Werner
Sep 10 at 18:18
@Werner The potrace part, yes, not the (IMHO important) part on converting the resulting eps to pgf, which was implicitly asked by samcarter in this comment. Do you agree?
â marmot
Sep 10 at 18:21
 |Â
show 5 more comments
up vote
21
down vote
up vote
21
down vote
Welcome to the TikZ section of TeX.SE!
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.footprints
begindocument
begintikzpicture[decoration=footprints,foot length=20pt]
draw [decorate] (0,0) -- (0,1.5);
endtikzpicture
enddocument

ADDENDUM: A version for tikzlings. ;-)
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.footprints
begindocument
begintikzpicture
foreach X [count=Y] in human,gnome,bird,felis silvestris
beginscope[xshift=2.25*Y*1cm,decoration=footprints,foot length=20pt,foot of=X]
draw [decorate] (0,0) -- (0,1.3);
node[font=sffamily] at (0,1.5) X;
endscope
endtikzpicture
enddocument

2nd ADDENDUM: How to create your custom footprints? I assume you have some black/white picture of a left foot, which you can legally use for that.
- Convert this picture to the pnm format. For instance, on Linux/Mac
OS you can usepngtopnm pic.png >pic.pnm. - Then use (e.g.)
potraceto make it a vector image,potrace pic.pnm. - You can open that with
inkscapeand save it astex, which
yields a document in the pstricks format. Remove the preamble and end. - Next you only need to do a regex search and replace that convers
convertscurvetotopgfcurveto, similarly forlinetoandmoveto. And a coordinate(x,y)needs to becomepgfqpointxptypt(the outer braces are important). - Then get rid of all
newrgbcolor,pscustomandnewpath
statements and extra braces, but end all paths withpgfpathclose.
Finally wrap this into
makeatletter
defpgf@lib@foot@of@critter{
% Coordinates extracted from
% license... Unknown author.
%
% Flip and rotate
pgftransformcm0-110pgfqpoint0pt0.8pt
pgftransformscale0.005
<result of your conversion>
makeatother
Of course, you may have to adjust the transformations, e.g. by dialing a different scale factor in pgftransformscale0.005.
You can then access these foot prints by saying foot of=critter. I will be happy to supplement this by an explicit example if someone points me to an image of a foot print that is free to use.
Welcome to the TikZ section of TeX.SE!
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.footprints
begindocument
begintikzpicture[decoration=footprints,foot length=20pt]
draw [decorate] (0,0) -- (0,1.5);
endtikzpicture
enddocument

ADDENDUM: A version for tikzlings. ;-)
documentclass[tikz,border=3.14mm]standalone
usetikzlibrarydecorations.footprints
begindocument
begintikzpicture
foreach X [count=Y] in human,gnome,bird,felis silvestris
beginscope[xshift=2.25*Y*1cm,decoration=footprints,foot length=20pt,foot of=X]
draw [decorate] (0,0) -- (0,1.3);
node[font=sffamily] at (0,1.5) X;
endscope
endtikzpicture
enddocument

2nd ADDENDUM: How to create your custom footprints? I assume you have some black/white picture of a left foot, which you can legally use for that.
- Convert this picture to the pnm format. For instance, on Linux/Mac
OS you can usepngtopnm pic.png >pic.pnm. - Then use (e.g.)
potraceto make it a vector image,potrace pic.pnm. - You can open that with
inkscapeand save it astex, which
yields a document in the pstricks format. Remove the preamble and end. - Next you only need to do a regex search and replace that convers
convertscurvetotopgfcurveto, similarly forlinetoandmoveto. And a coordinate(x,y)needs to becomepgfqpointxptypt(the outer braces are important). - Then get rid of all
newrgbcolor,pscustomandnewpath
statements and extra braces, but end all paths withpgfpathclose.
Finally wrap this into
makeatletter
defpgf@lib@foot@of@critter{
% Coordinates extracted from
% license... Unknown author.
%
% Flip and rotate
pgftransformcm0-110pgfqpoint0pt0.8pt
pgftransformscale0.005
<result of your conversion>
makeatother
Of course, you may have to adjust the transformations, e.g. by dialing a different scale factor in pgftransformscale0.005.
You can then access these foot prints by saying foot of=critter. I will be happy to supplement this by an explicit example if someone points me to an image of a foot print that is free to use.
edited Sep 10 at 18:15
answered Sep 10 at 15:47
marmot
61.4k465133
61.4k465133
SUPER!Just what I was looking for!
â Jo-Achna
Sep 10 at 15:51
5
-1, as no marmot prints:-)
â David Carlisle
Sep 10 at 16:05
@marmot Would it help to have the coordinates as tikz code? (I can convert from vector graphic to tikz, but no idea how to get the raw pgf code)
â samcarter
Sep 10 at 17:06
@marmot: Yourpotracesuggestion is similar to this: Adding a signature on an online job application
â Werner
Sep 10 at 18:18
@Werner The potrace part, yes, not the (IMHO important) part on converting the resulting eps to pgf, which was implicitly asked by samcarter in this comment. Do you agree?
â marmot
Sep 10 at 18:21
 |Â
show 5 more comments
SUPER!Just what I was looking for!
â Jo-Achna
Sep 10 at 15:51
5
-1, as no marmot prints:-)
â David Carlisle
Sep 10 at 16:05
@marmot Would it help to have the coordinates as tikz code? (I can convert from vector graphic to tikz, but no idea how to get the raw pgf code)
â samcarter
Sep 10 at 17:06
@marmot: Yourpotracesuggestion is similar to this: Adding a signature on an online job application
â Werner
Sep 10 at 18:18
@Werner The potrace part, yes, not the (IMHO important) part on converting the resulting eps to pgf, which was implicitly asked by samcarter in this comment. Do you agree?
â marmot
Sep 10 at 18:21
SUPER!Just what I was looking for!
â Jo-Achna
Sep 10 at 15:51
SUPER!Just what I was looking for!
â Jo-Achna
Sep 10 at 15:51
5
5
-1, as no marmot prints:-)
â David Carlisle
Sep 10 at 16:05
-1, as no marmot prints:-)
â David Carlisle
Sep 10 at 16:05
@marmot Would it help to have the coordinates as tikz code? (I can convert from vector graphic to tikz, but no idea how to get the raw pgf code)
â samcarter
Sep 10 at 17:06
@marmot Would it help to have the coordinates as tikz code? (I can convert from vector graphic to tikz, but no idea how to get the raw pgf code)
â samcarter
Sep 10 at 17:06
@marmot: Your
potrace suggestion is similar to this: Adding a signature on an online job applicationâ Werner
Sep 10 at 18:18
@marmot: Your
potrace suggestion is similar to this: Adding a signature on an online job applicationâ Werner
Sep 10 at 18:18
@Werner The potrace part, yes, not the (IMHO important) part on converting the resulting eps to pgf, which was implicitly asked by samcarter in this comment. Do you agree?
â marmot
Sep 10 at 18:21
@Werner The potrace part, yes, not the (IMHO important) part on converting the resulting eps to pgf, which was implicitly asked by samcarter in this comment. Do you agree?
â marmot
Sep 10 at 18:21
 |Â
show 5 more comments
up vote
15
down vote
A version for when it's cold in the winter and one needs shoes (a problem unknown to marmots, because they hibernate):
documentclassarticle
usepackagefontawesome5
begindocument
faIconshoe-prints
enddocument

fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
â pzorba75
Sep 11 at 14:04
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
â samcarter
Sep 11 at 14:09
Available out of Miktex. To be installed manually not automatically on the fly when compiling with Texmaker and Miktex.
â pzorba75
Sep 11 at 15:21
add a comment |Â
up vote
15
down vote
A version for when it's cold in the winter and one needs shoes (a problem unknown to marmots, because they hibernate):
documentclassarticle
usepackagefontawesome5
begindocument
faIconshoe-prints
enddocument

fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
â pzorba75
Sep 11 at 14:04
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
â samcarter
Sep 11 at 14:09
Available out of Miktex. To be installed manually not automatically on the fly when compiling with Texmaker and Miktex.
â pzorba75
Sep 11 at 15:21
add a comment |Â
up vote
15
down vote
up vote
15
down vote
A version for when it's cold in the winter and one needs shoes (a problem unknown to marmots, because they hibernate):
documentclassarticle
usepackagefontawesome5
begindocument
faIconshoe-prints
enddocument

A version for when it's cold in the winter and one needs shoes (a problem unknown to marmots, because they hibernate):
documentclassarticle
usepackagefontawesome5
begindocument
faIconshoe-prints
enddocument

answered Sep 10 at 15:48
samcarter
76.6k786244
76.6k786244
fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
â pzorba75
Sep 11 at 14:04
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
â samcarter
Sep 11 at 14:09
Available out of Miktex. To be installed manually not automatically on the fly when compiling with Texmaker and Miktex.
â pzorba75
Sep 11 at 15:21
add a comment |Â
fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
â pzorba75
Sep 11 at 14:04
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
â samcarter
Sep 11 at 14:09
Available out of Miktex. To be installed manually not automatically on the fly when compiling with Texmaker and Miktex.
â pzorba75
Sep 11 at 15:21
fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
â pzorba75
Sep 11 at 14:04
fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
â pzorba75
Sep 11 at 14:04
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
â samcarter
Sep 11 at 14:09
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
â samcarter
Sep 11 at 14:09
Available out of Miktex. To be installed manually not automatically on the fly when compiling with Texmaker and Miktex.
â pzorba75
Sep 11 at 15:21
Available out of Miktex. To be installed manually not automatically on the fly when compiling with Texmaker and Miktex.
â pzorba75
Sep 11 at 15:21
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f450269%2ffootprints-symbol-in-latex%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
2
The tikz decoration library has something similar
â samcarter
Sep 10 at 15:44
1
TikZ has footprints in the library
usetikzlibrarydecorations.footprints.â marmot
Sep 10 at 15:44