Footprints symbol in LaTeXAdding a signature on an online job applicationHow does PGF/TikZ work?Converting...
PTIJ: Should I kill my computer after installing software?
Are there historical instances of the capital of a colonising country being temporarily or permanently shifted to one of its colonies?
Virginia employer terminated employee and wants signing bonus returned
Does a warlock using the Darkness/Devil's Sight combo still have advantage on ranged attacks against a target outside the Darkness?
Declaring and defining template, and specialising them
Why the color red for the Republican Party
Why was Goose renamed from Chewie for the Captain Marvel film?
How can I ensure my trip to the UK will not have to be cancelled because of Brexit?
In the late 1940’s to early 1950’s what technology was available that could melt a LOT of ice?
How many characters using PHB rules does it take to be able to have access to any PHB spell at the start of an adventuring day?
Are tamper resistant receptacles really safer?
UART pins to unpowered MCU?
Are babies of evil humanoid species inherently evil?
Examples of a statistic that is not independent of sample's distribution?
Doesn't allowing a user mode program to access kernel space memory and execute the IN and OUT instructions defeat the purpose of having CPU modes?
Accepted offer letter, position changed
Vocabulary for giving just numbers, not a full answer
Was Luke Skywalker the leader of the Rebel forces on Hoth?
Am I not good enough for you?
PTIJ: wiping amalek’s memory?
How to detect if C code (which needs 'extern C') is compiled in C++
How can I get players to stop ignoring or overlooking the plot hooks I'm giving them?
Can one live in the U.S. and not use a credit card?
Why doesn't this Google Translate ad use the word "Translation" instead of "Translate"?
Footprints symbol in LaTeX
Adding a signature on an online job applicationHow does PGF/TikZ work?Converting Tikz code to PGFIs there a symbol for “hand-wave”?LaTeX symbol for table sortingIs it possible to get a diagonal subset symbol?Bitcoin symbol in LaTeXIdentifying a single math symbolLooking for stylized H-symbolIs This Laplace Transform Symbol Available in LaTeX?Per mille symbol in SIunitxSymbol creation in TikZIs there a CD icon/symbol for latex?
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 |
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
3
The tikz decoration library has something similar
– samcarter
Sep 10 '18 at 15:44
1
TikZ has footprints in the libraryusetikzlibrary{decorations.footprints}
.
– marmot
Sep 10 '18 at 15:44
add a comment |
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 '18 at 11:37
pipe
1055
1055
asked Sep 10 '18 at 15:40
Jo-AchnaJo-Achna
1269
1269
3
The tikz decoration library has something similar
– samcarter
Sep 10 '18 at 15:44
1
TikZ has footprints in the libraryusetikzlibrary{decorations.footprints}
.
– marmot
Sep 10 '18 at 15:44
add a comment |
3
The tikz decoration library has something similar
– samcarter
Sep 10 '18 at 15:44
1
TikZ has footprints in the libraryusetikzlibrary{decorations.footprints}
.
– marmot
Sep 10 '18 at 15:44
3
3
The tikz decoration library has something similar
– samcarter
Sep 10 '18 at 15:44
The tikz decoration library has something similar
– samcarter
Sep 10 '18 at 15:44
1
1
TikZ has footprints in the library
usetikzlibrary{decorations.footprints}
.– marmot
Sep 10 '18 at 15:44
TikZ has footprints in the library
usetikzlibrary{decorations.footprints}
.– marmot
Sep 10 '18 at 15:44
add a comment |
2 Answers
2
active
oldest
votes
Welcome to the TikZ section of TeX.SE!
documentclass[tikz,border=3.14mm]{standalone}
usetikzlibrary{decorations.footprints}
begin{document}
begin{tikzpicture}[decoration={footprints,foot length=20pt}]
draw [decorate] (0,0) -- (0,1.5);
end{tikzpicture}
end{document}
ADDENDUM: A version for tikzlings. ;-)
documentclass[tikz,border=3.14mm]{standalone}
usetikzlibrary{decorations.footprints}
begin{document}
begin{tikzpicture}
foreach X [count=Y] in {human,gnome,bird,felis silvestris}
{begin{scope}[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};
end{scope}}
end{tikzpicture}
end{document}
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.)
potrace
to make it a vector image,potrace pic.pnm
. - You can open that with
inkscape
and 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
convertscurveto
topgfpathcurveto
, similarly forlineto
and
moveto
. And a coordinate(x,y)
needs to become
{pgfqpoint{xpt}{ypt}}
(the outer braces are important). - Then get rid of all
newrgbcolor
,pscustom
andnewpath
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
pgftransformcm{0}{-1}{1}{0}{pgfqpoint{0pt}{0.8pt}}
pgftransformscale{0.005}
<result of your conversion>
makeatother
Of course, you may have to adjust the transformations, e.g. by dialing a different scale factor in pgftransformscale{0.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 '18 at 15:51
6
-1, as no marmot prints:-)
– David Carlisle
Sep 10 '18 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 '18 at 17:06
@marmot: Yourpotrace
suggestion is similar to this: Adding a signature on an online job application
– Werner
Sep 10 '18 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 '18 at 18:21
|
show 5 more comments
A version for when it's cold in the winter and one needs shoes (a problem unknown to marmots, because they hibernate):
documentclass{article}
usepackage{fontawesome5}
begin{document}
faIcon{shoe-prints}
end{document}
fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
– pzorba75
Sep 11 '18 at 14:04
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
– samcarter
Sep 11 '18 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 '18 at 15:21
add a comment |
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',
autoActivateHeartbeat: false,
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
});
}
});
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
Required, but never shown
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
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Welcome to the TikZ section of TeX.SE!
documentclass[tikz,border=3.14mm]{standalone}
usetikzlibrary{decorations.footprints}
begin{document}
begin{tikzpicture}[decoration={footprints,foot length=20pt}]
draw [decorate] (0,0) -- (0,1.5);
end{tikzpicture}
end{document}
ADDENDUM: A version for tikzlings. ;-)
documentclass[tikz,border=3.14mm]{standalone}
usetikzlibrary{decorations.footprints}
begin{document}
begin{tikzpicture}
foreach X [count=Y] in {human,gnome,bird,felis silvestris}
{begin{scope}[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};
end{scope}}
end{tikzpicture}
end{document}
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.)
potrace
to make it a vector image,potrace pic.pnm
. - You can open that with
inkscape
and 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
convertscurveto
topgfpathcurveto
, similarly forlineto
and
moveto
. And a coordinate(x,y)
needs to become
{pgfqpoint{xpt}{ypt}}
(the outer braces are important). - Then get rid of all
newrgbcolor
,pscustom
andnewpath
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
pgftransformcm{0}{-1}{1}{0}{pgfqpoint{0pt}{0.8pt}}
pgftransformscale{0.005}
<result of your conversion>
makeatother
Of course, you may have to adjust the transformations, e.g. by dialing a different scale factor in pgftransformscale{0.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 '18 at 15:51
6
-1, as no marmot prints:-)
– David Carlisle
Sep 10 '18 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 '18 at 17:06
@marmot: Yourpotrace
suggestion is similar to this: Adding a signature on an online job application
– Werner
Sep 10 '18 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 '18 at 18:21
|
show 5 more comments
Welcome to the TikZ section of TeX.SE!
documentclass[tikz,border=3.14mm]{standalone}
usetikzlibrary{decorations.footprints}
begin{document}
begin{tikzpicture}[decoration={footprints,foot length=20pt}]
draw [decorate] (0,0) -- (0,1.5);
end{tikzpicture}
end{document}
ADDENDUM: A version for tikzlings. ;-)
documentclass[tikz,border=3.14mm]{standalone}
usetikzlibrary{decorations.footprints}
begin{document}
begin{tikzpicture}
foreach X [count=Y] in {human,gnome,bird,felis silvestris}
{begin{scope}[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};
end{scope}}
end{tikzpicture}
end{document}
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.)
potrace
to make it a vector image,potrace pic.pnm
. - You can open that with
inkscape
and 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
convertscurveto
topgfpathcurveto
, similarly forlineto
and
moveto
. And a coordinate(x,y)
needs to become
{pgfqpoint{xpt}{ypt}}
(the outer braces are important). - Then get rid of all
newrgbcolor
,pscustom
andnewpath
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
pgftransformcm{0}{-1}{1}{0}{pgfqpoint{0pt}{0.8pt}}
pgftransformscale{0.005}
<result of your conversion>
makeatother
Of course, you may have to adjust the transformations, e.g. by dialing a different scale factor in pgftransformscale{0.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 '18 at 15:51
6
-1, as no marmot prints:-)
– David Carlisle
Sep 10 '18 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 '18 at 17:06
@marmot: Yourpotrace
suggestion is similar to this: Adding a signature on an online job application
– Werner
Sep 10 '18 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 '18 at 18:21
|
show 5 more comments
Welcome to the TikZ section of TeX.SE!
documentclass[tikz,border=3.14mm]{standalone}
usetikzlibrary{decorations.footprints}
begin{document}
begin{tikzpicture}[decoration={footprints,foot length=20pt}]
draw [decorate] (0,0) -- (0,1.5);
end{tikzpicture}
end{document}
ADDENDUM: A version for tikzlings. ;-)
documentclass[tikz,border=3.14mm]{standalone}
usetikzlibrary{decorations.footprints}
begin{document}
begin{tikzpicture}
foreach X [count=Y] in {human,gnome,bird,felis silvestris}
{begin{scope}[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};
end{scope}}
end{tikzpicture}
end{document}
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.)
potrace
to make it a vector image,potrace pic.pnm
. - You can open that with
inkscape
and 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
convertscurveto
topgfpathcurveto
, similarly forlineto
and
moveto
. And a coordinate(x,y)
needs to become
{pgfqpoint{xpt}{ypt}}
(the outer braces are important). - Then get rid of all
newrgbcolor
,pscustom
andnewpath
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
pgftransformcm{0}{-1}{1}{0}{pgfqpoint{0pt}{0.8pt}}
pgftransformscale{0.005}
<result of your conversion>
makeatother
Of course, you may have to adjust the transformations, e.g. by dialing a different scale factor in pgftransformscale{0.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}
usetikzlibrary{decorations.footprints}
begin{document}
begin{tikzpicture}[decoration={footprints,foot length=20pt}]
draw [decorate] (0,0) -- (0,1.5);
end{tikzpicture}
end{document}
ADDENDUM: A version for tikzlings. ;-)
documentclass[tikz,border=3.14mm]{standalone}
usetikzlibrary{decorations.footprints}
begin{document}
begin{tikzpicture}
foreach X [count=Y] in {human,gnome,bird,felis silvestris}
{begin{scope}[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};
end{scope}}
end{tikzpicture}
end{document}
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.)
potrace
to make it a vector image,potrace pic.pnm
. - You can open that with
inkscape
and 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
convertscurveto
topgfpathcurveto
, similarly forlineto
and
moveto
. And a coordinate(x,y)
needs to become
{pgfqpoint{xpt}{ypt}}
(the outer braces are important). - Then get rid of all
newrgbcolor
,pscustom
andnewpath
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
pgftransformcm{0}{-1}{1}{0}{pgfqpoint{0pt}{0.8pt}}
pgftransformscale{0.005}
<result of your conversion>
makeatother
Of course, you may have to adjust the transformations, e.g. by dialing a different scale factor in pgftransformscale{0.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 8 mins ago
answered Sep 10 '18 at 15:47
marmotmarmot
107k5130244
107k5130244
SUPER!Just what I was looking for!
– Jo-Achna
Sep 10 '18 at 15:51
6
-1, as no marmot prints:-)
– David Carlisle
Sep 10 '18 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 '18 at 17:06
@marmot: Yourpotrace
suggestion is similar to this: Adding a signature on an online job application
– Werner
Sep 10 '18 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 '18 at 18:21
|
show 5 more comments
SUPER!Just what I was looking for!
– Jo-Achna
Sep 10 '18 at 15:51
6
-1, as no marmot prints:-)
– David Carlisle
Sep 10 '18 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 '18 at 17:06
@marmot: Yourpotrace
suggestion is similar to this: Adding a signature on an online job application
– Werner
Sep 10 '18 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 '18 at 18:21
SUPER!Just what I was looking for!
– Jo-Achna
Sep 10 '18 at 15:51
SUPER!Just what I was looking for!
– Jo-Achna
Sep 10 '18 at 15:51
6
6
-1, as no marmot prints:-)
– David Carlisle
Sep 10 '18 at 16:05
-1, as no marmot prints:-)
– David Carlisle
Sep 10 '18 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 '18 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 '18 at 17:06
@marmot: Your
potrace
suggestion is similar to this: Adding a signature on an online job application– Werner
Sep 10 '18 at 18:18
@marmot: Your
potrace
suggestion is similar to this: Adding a signature on an online job application– Werner
Sep 10 '18 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 '18 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 '18 at 18:21
|
show 5 more comments
A version for when it's cold in the winter and one needs shoes (a problem unknown to marmots, because they hibernate):
documentclass{article}
usepackage{fontawesome5}
begin{document}
faIcon{shoe-prints}
end{document}
fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
– pzorba75
Sep 11 '18 at 14:04
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
– samcarter
Sep 11 '18 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 '18 at 15:21
add a comment |
A version for when it's cold in the winter and one needs shoes (a problem unknown to marmots, because they hibernate):
documentclass{article}
usepackage{fontawesome5}
begin{document}
faIcon{shoe-prints}
end{document}
fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
– pzorba75
Sep 11 '18 at 14:04
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
– samcarter
Sep 11 '18 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 '18 at 15:21
add a comment |
A version for when it's cold in the winter and one needs shoes (a problem unknown to marmots, because they hibernate):
documentclass{article}
usepackage{fontawesome5}
begin{document}
faIcon{shoe-prints}
end{document}
A version for when it's cold in the winter and one needs shoes (a problem unknown to marmots, because they hibernate):
documentclass{article}
usepackage{fontawesome5}
begin{document}
faIcon{shoe-prints}
end{document}
answered Sep 10 '18 at 15:48
samcartersamcarter
90.9k7104294
90.9k7104294
fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
– pzorba75
Sep 11 '18 at 14:04
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
– samcarter
Sep 11 '18 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 '18 at 15:21
add a comment |
fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
– pzorba75
Sep 11 '18 at 14:04
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
– samcarter
Sep 11 '18 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 '18 at 15:21
fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
– pzorba75
Sep 11 '18 at 14:04
fontawesome5.sty is not available with Miktex 2.9. Where can I download this package?
– pzorba75
Sep 11 '18 at 14:04
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
– samcarter
Sep 11 '18 at 14:09
@pzorba75 ctan.org/pkg/fontawesome5?lang=en says it is also available for miktex
– samcarter
Sep 11 '18 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 '18 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 '18 at 15:21
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
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
3
The tikz decoration library has something similar
– samcarter
Sep 10 '18 at 15:44
1
TikZ has footprints in the library
usetikzlibrary{decorations.footprints}
.– marmot
Sep 10 '18 at 15:44