pic versus macro in TikZDraw 4 of the same figure in the same tikzpicturecopy and scale one figure (wheel)Rotate a node but not its content: the case of the ellipse decorationTikZ - bad positioning of images drawn by macroPass key option inside a macro to a TikZ drawing commandHow to define the default vertical distance between nodes?Numerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themTikZ: clip with Pic?Nested tikz pics?

Were tables of square roots ever in use?

Is it possible to fly backward if you have really strong headwind?

The usage of kelvin in formulas

Can I utilise a baking stone to make crepes?

Sql Server delete syntax

How do i export activities related to an account with a specific recordtype?

Did Apple bundle a specific monitor with the Apple II+ for schools?

Should I refuse to be named as co-author of a low quality paper?

Is there a set of positive integers of density 1 which contains no infinite arithmetic progression?

If I leave the US through an airport, do I have to return through the same airport?

Analogy between an unknown in an argument, and a contradiction in the principle of explosion

Can you make an identity from this product?

How to befriend someone who doesn't like to talk?

If a Variant Human is Reincarnated, would they lose the feat and skill proficiency they started with?

Is it safe to change the harddrive power feature so that it never turns off?

Who voices the small round football sized demon In Good Omens

Do you have to have figures when playing D&D?

Solving ‘Null geometry…’ error during distance matrix operation?

How to publish items after pipeline is finished?

Why does this query, missing a FROM clause, not error out?

Why did Intel abandon unified CPU cache?

Was Self-modifying-code possible just using BASIC?

Should I put programming books I wrote a few years ago on my resume?

How long is it safe to leave marker on a Chessex battle map?



pic versus macro in TikZ


Draw 4 of the same figure in the same tikzpicturecopy and scale one figure (wheel)Rotate a node but not its content: the case of the ellipse decorationTikZ - bad positioning of images drawn by macroPass key option inside a macro to a TikZ drawing commandHow to define the default vertical distance between nodes?Numerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themTikZ: clip with Pic?Nested tikz pics?













14















Consider this code in the TikZ - PGF manual, which uses a macro



% Main code from
% The TikZ - PGF manual
% Author: Till Tantau et al
% Version 3.1.3, released May 9, 2019
% Page 40
documentclass[tikz]standalone
begindocument
begintikzpicture
defrectanglepath-- ++(1cm,0cm) -- ++(0cm,1cm) -- ++(-1cm,0cm) -- cycle
draw (0,0) rectanglepath;
draw (1.5,0) rectanglepath;
endtikzpicture
enddocument


and this one written by me, which uses pic



documentclass[tikz]standalone
begindocument
begintikzpicture
[rectanglepath/.pic=draw (0,0)--++(1cm,0cm)--++(0cm,1cm)--++(-1cm,0cm)--cycle;]
pic at (0,0) rectanglepath;
pic at (1.5,0) rectanglepath;
endtikzpicture
enddocument


Both give us the same output



enter image description here



Observation



Both give the same output. I prefer the latter one, as it is more "TikZ-ish". However, we can always change a code from pic to macro and vice versa, as above (am I wrong – is there a case in which we can't convert?), or draw the same figure using two different codes (this and this for example).



Also, I can't see any aspects in which macros are better than pic. Even arguments: we can also have pic with up to nine arguments with any pattern using /.style args.



In the PGF manual, sometimes I see pic is used, but sometimes a macro is used (it is even used in the title page!). From those examples, I can't figure out in what case I should use a macro and in what case I should use a pic.



Question



It may be quite clear by now.




If I have to draw the same "sub-"picture many times in a TikZ picture, should I use a pic or a macro? And why? Is there any cases in which I must use this one and not the other?




Thanks in advance.




Edit



As for @marmot's nice codes, I have written myself some code (against it) which uses macros



documentclassarticle
usepackagetikz
begindocument
subsection*Macros can have more complicated constructions

begintikzpicture%[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
%draw[red] (-0.5,0.5) -- (0.5,-0.5);]
newcommandrectanglepath[2][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) -- (0.5,-0.5);endscope
%path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath;
rectanglepath0,0
rectanglepath[dashed]2,0
endtikzpicture

subsection*Macros can have names

begintikzpicture%[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
%draw[red] (-0.5,0.5) coordinate(-tl) -- (0.5,-0.5) coordinate(-br) ;]
newcommandrectanglepath[3][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) coordinate (#3-tl)
-- (0.5,-0.5) coordinate (#3-br);endscope
%path (0,0) pic (A) rectanglepath (2,0) pic[dashed] (B) rectanglepath;
rectanglepath0,0A
rectanglepath[dashed]2,0B
draw (A-tl) to[out=30,in=150] (B-tl) (A-br) to[out=-30,in=-150] (B-br);
endtikzpicture

subsection*Transformations are much more intuitive on macros

begintikzpicture[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);]
newcommandrectanglepath[2][]
scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1);endscope
%path (0,0) pic[rotate=45]rectanglepath (2,0) pic[dashed,rotate=-30]rectanglepath
%(4,0) pic[thick,xscale=0.5]rectanglepath;
rectanglepath[rotate=45]0,0
rectanglepath[rotate=-30,dashed]2,0
rectanglepath[thick,xscale=0.5]4,0
endtikzpicture
enddocument


enter image description here










share|improve this question
























  • My experience is that pics are faster. For example, the threads on a screw.

    – John Kormylo
    May 25 at 13:45











  • @JohnKormylo If yes, probably it is faster on very long documents. On reports I usually write, they are equal in time taken

    – The old JouleV
    May 25 at 15:16















14















Consider this code in the TikZ - PGF manual, which uses a macro



% Main code from
% The TikZ - PGF manual
% Author: Till Tantau et al
% Version 3.1.3, released May 9, 2019
% Page 40
documentclass[tikz]standalone
begindocument
begintikzpicture
defrectanglepath-- ++(1cm,0cm) -- ++(0cm,1cm) -- ++(-1cm,0cm) -- cycle
draw (0,0) rectanglepath;
draw (1.5,0) rectanglepath;
endtikzpicture
enddocument


and this one written by me, which uses pic



documentclass[tikz]standalone
begindocument
begintikzpicture
[rectanglepath/.pic=draw (0,0)--++(1cm,0cm)--++(0cm,1cm)--++(-1cm,0cm)--cycle;]
pic at (0,0) rectanglepath;
pic at (1.5,0) rectanglepath;
endtikzpicture
enddocument


Both give us the same output



enter image description here



Observation



Both give the same output. I prefer the latter one, as it is more "TikZ-ish". However, we can always change a code from pic to macro and vice versa, as above (am I wrong – is there a case in which we can't convert?), or draw the same figure using two different codes (this and this for example).



Also, I can't see any aspects in which macros are better than pic. Even arguments: we can also have pic with up to nine arguments with any pattern using /.style args.



In the PGF manual, sometimes I see pic is used, but sometimes a macro is used (it is even used in the title page!). From those examples, I can't figure out in what case I should use a macro and in what case I should use a pic.



Question



It may be quite clear by now.




If I have to draw the same "sub-"picture many times in a TikZ picture, should I use a pic or a macro? And why? Is there any cases in which I must use this one and not the other?




Thanks in advance.




Edit



As for @marmot's nice codes, I have written myself some code (against it) which uses macros



documentclassarticle
usepackagetikz
begindocument
subsection*Macros can have more complicated constructions

begintikzpicture%[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
%draw[red] (-0.5,0.5) -- (0.5,-0.5);]
newcommandrectanglepath[2][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) -- (0.5,-0.5);endscope
%path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath;
rectanglepath0,0
rectanglepath[dashed]2,0
endtikzpicture

subsection*Macros can have names

begintikzpicture%[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
%draw[red] (-0.5,0.5) coordinate(-tl) -- (0.5,-0.5) coordinate(-br) ;]
newcommandrectanglepath[3][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) coordinate (#3-tl)
-- (0.5,-0.5) coordinate (#3-br);endscope
%path (0,0) pic (A) rectanglepath (2,0) pic[dashed] (B) rectanglepath;
rectanglepath0,0A
rectanglepath[dashed]2,0B
draw (A-tl) to[out=30,in=150] (B-tl) (A-br) to[out=-30,in=-150] (B-br);
endtikzpicture

subsection*Transformations are much more intuitive on macros

begintikzpicture[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);]
newcommandrectanglepath[2][]
scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1);endscope
%path (0,0) pic[rotate=45]rectanglepath (2,0) pic[dashed,rotate=-30]rectanglepath
%(4,0) pic[thick,xscale=0.5]rectanglepath;
rectanglepath[rotate=45]0,0
rectanglepath[rotate=-30,dashed]2,0
rectanglepath[thick,xscale=0.5]4,0
endtikzpicture
enddocument


enter image description here










share|improve this question
























  • My experience is that pics are faster. For example, the threads on a screw.

    – John Kormylo
    May 25 at 13:45











  • @JohnKormylo If yes, probably it is faster on very long documents. On reports I usually write, they are equal in time taken

    – The old JouleV
    May 25 at 15:16













14












14








14


2






Consider this code in the TikZ - PGF manual, which uses a macro



% Main code from
% The TikZ - PGF manual
% Author: Till Tantau et al
% Version 3.1.3, released May 9, 2019
% Page 40
documentclass[tikz]standalone
begindocument
begintikzpicture
defrectanglepath-- ++(1cm,0cm) -- ++(0cm,1cm) -- ++(-1cm,0cm) -- cycle
draw (0,0) rectanglepath;
draw (1.5,0) rectanglepath;
endtikzpicture
enddocument


and this one written by me, which uses pic



documentclass[tikz]standalone
begindocument
begintikzpicture
[rectanglepath/.pic=draw (0,0)--++(1cm,0cm)--++(0cm,1cm)--++(-1cm,0cm)--cycle;]
pic at (0,0) rectanglepath;
pic at (1.5,0) rectanglepath;
endtikzpicture
enddocument


Both give us the same output



enter image description here



Observation



Both give the same output. I prefer the latter one, as it is more "TikZ-ish". However, we can always change a code from pic to macro and vice versa, as above (am I wrong – is there a case in which we can't convert?), or draw the same figure using two different codes (this and this for example).



Also, I can't see any aspects in which macros are better than pic. Even arguments: we can also have pic with up to nine arguments with any pattern using /.style args.



In the PGF manual, sometimes I see pic is used, but sometimes a macro is used (it is even used in the title page!). From those examples, I can't figure out in what case I should use a macro and in what case I should use a pic.



Question



It may be quite clear by now.




If I have to draw the same "sub-"picture many times in a TikZ picture, should I use a pic or a macro? And why? Is there any cases in which I must use this one and not the other?




Thanks in advance.




Edit



As for @marmot's nice codes, I have written myself some code (against it) which uses macros



documentclassarticle
usepackagetikz
begindocument
subsection*Macros can have more complicated constructions

begintikzpicture%[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
%draw[red] (-0.5,0.5) -- (0.5,-0.5);]
newcommandrectanglepath[2][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) -- (0.5,-0.5);endscope
%path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath;
rectanglepath0,0
rectanglepath[dashed]2,0
endtikzpicture

subsection*Macros can have names

begintikzpicture%[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
%draw[red] (-0.5,0.5) coordinate(-tl) -- (0.5,-0.5) coordinate(-br) ;]
newcommandrectanglepath[3][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) coordinate (#3-tl)
-- (0.5,-0.5) coordinate (#3-br);endscope
%path (0,0) pic (A) rectanglepath (2,0) pic[dashed] (B) rectanglepath;
rectanglepath0,0A
rectanglepath[dashed]2,0B
draw (A-tl) to[out=30,in=150] (B-tl) (A-br) to[out=-30,in=-150] (B-br);
endtikzpicture

subsection*Transformations are much more intuitive on macros

begintikzpicture[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);]
newcommandrectanglepath[2][]
scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1);endscope
%path (0,0) pic[rotate=45]rectanglepath (2,0) pic[dashed,rotate=-30]rectanglepath
%(4,0) pic[thick,xscale=0.5]rectanglepath;
rectanglepath[rotate=45]0,0
rectanglepath[rotate=-30,dashed]2,0
rectanglepath[thick,xscale=0.5]4,0
endtikzpicture
enddocument


enter image description here










share|improve this question
















Consider this code in the TikZ - PGF manual, which uses a macro



% Main code from
% The TikZ - PGF manual
% Author: Till Tantau et al
% Version 3.1.3, released May 9, 2019
% Page 40
documentclass[tikz]standalone
begindocument
begintikzpicture
defrectanglepath-- ++(1cm,0cm) -- ++(0cm,1cm) -- ++(-1cm,0cm) -- cycle
draw (0,0) rectanglepath;
draw (1.5,0) rectanglepath;
endtikzpicture
enddocument


and this one written by me, which uses pic



documentclass[tikz]standalone
begindocument
begintikzpicture
[rectanglepath/.pic=draw (0,0)--++(1cm,0cm)--++(0cm,1cm)--++(-1cm,0cm)--cycle;]
pic at (0,0) rectanglepath;
pic at (1.5,0) rectanglepath;
endtikzpicture
enddocument


Both give us the same output



enter image description here



Observation



Both give the same output. I prefer the latter one, as it is more "TikZ-ish". However, we can always change a code from pic to macro and vice versa, as above (am I wrong – is there a case in which we can't convert?), or draw the same figure using two different codes (this and this for example).



Also, I can't see any aspects in which macros are better than pic. Even arguments: we can also have pic with up to nine arguments with any pattern using /.style args.



In the PGF manual, sometimes I see pic is used, but sometimes a macro is used (it is even used in the title page!). From those examples, I can't figure out in what case I should use a macro and in what case I should use a pic.



Question



It may be quite clear by now.




If I have to draw the same "sub-"picture many times in a TikZ picture, should I use a pic or a macro? And why? Is there any cases in which I must use this one and not the other?




Thanks in advance.




Edit



As for @marmot's nice codes, I have written myself some code (against it) which uses macros



documentclassarticle
usepackagetikz
begindocument
subsection*Macros can have more complicated constructions

begintikzpicture%[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
%draw[red] (-0.5,0.5) -- (0.5,-0.5);]
newcommandrectanglepath[2][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) -- (0.5,-0.5);endscope
%path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath;
rectanglepath0,0
rectanglepath[dashed]2,0
endtikzpicture

subsection*Macros can have names

begintikzpicture%[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
%draw[red] (-0.5,0.5) coordinate(-tl) -- (0.5,-0.5) coordinate(-br) ;]
newcommandrectanglepath[3][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) coordinate (#3-tl)
-- (0.5,-0.5) coordinate (#3-br);endscope
%path (0,0) pic (A) rectanglepath (2,0) pic[dashed] (B) rectanglepath;
rectanglepath0,0A
rectanglepath[dashed]2,0B
draw (A-tl) to[out=30,in=150] (B-tl) (A-br) to[out=-30,in=-150] (B-br);
endtikzpicture

subsection*Transformations are much more intuitive on macros

begintikzpicture[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);]
newcommandrectanglepath[2][]
scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1);endscope
%path (0,0) pic[rotate=45]rectanglepath (2,0) pic[dashed,rotate=-30]rectanglepath
%(4,0) pic[thick,xscale=0.5]rectanglepath;
rectanglepath[rotate=45]0,0
rectanglepath[rotate=-30,dashed]2,0
rectanglepath[thick,xscale=0.5]4,0
endtikzpicture
enddocument


enter image description here







tikz-pgf macros tikz-pic






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 25 at 16:11







The old JouleV

















asked May 25 at 11:38









The old JouleVThe old JouleV

19.5k43176




19.5k43176












  • My experience is that pics are faster. For example, the threads on a screw.

    – John Kormylo
    May 25 at 13:45











  • @JohnKormylo If yes, probably it is faster on very long documents. On reports I usually write, they are equal in time taken

    – The old JouleV
    May 25 at 15:16

















  • My experience is that pics are faster. For example, the threads on a screw.

    – John Kormylo
    May 25 at 13:45











  • @JohnKormylo If yes, probably it is faster on very long documents. On reports I usually write, they are equal in time taken

    – The old JouleV
    May 25 at 15:16
















My experience is that pics are faster. For example, the threads on a screw.

– John Kormylo
May 25 at 13:45





My experience is that pics are faster. For example, the threads on a screw.

– John Kormylo
May 25 at 13:45













@JohnKormylo If yes, probably it is faster on very long documents. On reports I usually write, they are equal in time taken

– The old JouleV
May 25 at 15:16





@JohnKormylo If yes, probably it is faster on very long documents. On reports I usually write, they are equal in time taken

– The old JouleV
May 25 at 15:16










1 Answer
1






active

oldest

votes


















11














Here are threefour examples of things that are much harder to achieve in the macro approach. The first three examples have been translated to macros in the revised question.



documentclassarticle
usepackagetikz
begindocument
subsection*Pics can have more complicated constructions
tikzsetrectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) coordinate(-tl) -- (0.5,-0.5) coordinate(-br) ;

begintikzpicture
path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath;
endtikzpicture

subsection*Pics can have names

begintikzpicture
path (0,0) pic (A) rectanglepath (2,0) pic[dashed] (B) rectanglepath;
draw (A-tl) to[out=30,in=150] (B-tl) (A-br) to[out=-30,in=-150] (B-br);
endtikzpicture

subsection*Transformations are much more intuitive on pics

begintikzpicture
path (0,0) pic[rotate=45]rectanglepath (2,0) pic[dashed,rotate=-30]rectanglepath
(4,0) pic[thick,xscale=0.5]rectanglepath;
endtikzpicture

subsection*You can insert pics in paths

begintikzpicture[xboard/.style=insert path=
(0,0) grid (#1,#1)
foreach X in 1,...,#1
(X-0.5,X-0.5) picrectanglepath (X-0.5,#1-X+0.5) pic[rotate=90]rectanglepath]
draw[xboard=1,xshift=2cm,xboard=3,xshift=4cm,xboard=5];
endtikzpicture

enddocument


enter image description here



My personal take: pics win, at least in the above-described scenarios. IMHO the translated macros in the revised question substantiate this.



Notice that "behind the scenes" pics are macros at some level. So you will always be able to reproduce the outcome of a pic with a macro. However, the effort will be more substantial. And yes, if you are in the mood to do some unnecessary extra work, you can use macros instead of pics. So, yes, the choice can depend on the mood of the day.



Let me also stress that there are scenarios in which pics perform worse. An example of this type may be a life wheel.



BTW, there is also the insert path option that is sometimes preferable over pics IMO.






share|improve this answer




















  • 1





    +1: Perfect answer!

    – Dr. Manuel Kuehner
    May 25 at 13:42






  • 2





    @JouleV Well, at some level a pic is a macro. My point is simply that things are harder to achieve with macros, and your macros substantiate this. I never claimed that you cannot achieve things done with a pic also with a macro, it is just harder and also less elegant IMHO.

    – marmot
    May 25 at 15:42






  • 2





    @JouleV You also misinterpreted "The first thingy has newcommandrectanglepath[2][]..., the next newcommandrectanglepath[3][]..., they are not the same. ". The point is that you have to write different macros for different situations, and if you want to have the combined functionality, things become even more complicated. BTW, foreach X in 1,2,3 begintikzpicture[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);] path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath; endtikzpicture works ...

    – marmot
    May 25 at 15:55






  • 1





    but foreach X in 1,2,3 begintikzpicture newcommandrectanglepath[2][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);endscope rectanglepath0,0 rectanglepath[dashed]2,0 endtikzpicture doesn't. (Yes, I know how to fix it but it is, again, more complicated.)

    – marmot
    May 25 at 15:55






  • 1





    @JouleV I tried to answer the question If I have to draw the same "sub-"picture many times in a TikZ picture, should I use a pic or a macro? And why?. My answer is that in most situations pics are less complicated, which is why they are arguably preferable.

    – marmot
    May 25 at 16:48











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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f492585%2fpic-versus-macro-in-tikz%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









11














Here are threefour examples of things that are much harder to achieve in the macro approach. The first three examples have been translated to macros in the revised question.



documentclassarticle
usepackagetikz
begindocument
subsection*Pics can have more complicated constructions
tikzsetrectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) coordinate(-tl) -- (0.5,-0.5) coordinate(-br) ;

begintikzpicture
path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath;
endtikzpicture

subsection*Pics can have names

begintikzpicture
path (0,0) pic (A) rectanglepath (2,0) pic[dashed] (B) rectanglepath;
draw (A-tl) to[out=30,in=150] (B-tl) (A-br) to[out=-30,in=-150] (B-br);
endtikzpicture

subsection*Transformations are much more intuitive on pics

begintikzpicture
path (0,0) pic[rotate=45]rectanglepath (2,0) pic[dashed,rotate=-30]rectanglepath
(4,0) pic[thick,xscale=0.5]rectanglepath;
endtikzpicture

subsection*You can insert pics in paths

begintikzpicture[xboard/.style=insert path=
(0,0) grid (#1,#1)
foreach X in 1,...,#1
(X-0.5,X-0.5) picrectanglepath (X-0.5,#1-X+0.5) pic[rotate=90]rectanglepath]
draw[xboard=1,xshift=2cm,xboard=3,xshift=4cm,xboard=5];
endtikzpicture

enddocument


enter image description here



My personal take: pics win, at least in the above-described scenarios. IMHO the translated macros in the revised question substantiate this.



Notice that "behind the scenes" pics are macros at some level. So you will always be able to reproduce the outcome of a pic with a macro. However, the effort will be more substantial. And yes, if you are in the mood to do some unnecessary extra work, you can use macros instead of pics. So, yes, the choice can depend on the mood of the day.



Let me also stress that there are scenarios in which pics perform worse. An example of this type may be a life wheel.



BTW, there is also the insert path option that is sometimes preferable over pics IMO.






share|improve this answer




















  • 1





    +1: Perfect answer!

    – Dr. Manuel Kuehner
    May 25 at 13:42






  • 2





    @JouleV Well, at some level a pic is a macro. My point is simply that things are harder to achieve with macros, and your macros substantiate this. I never claimed that you cannot achieve things done with a pic also with a macro, it is just harder and also less elegant IMHO.

    – marmot
    May 25 at 15:42






  • 2





    @JouleV You also misinterpreted "The first thingy has newcommandrectanglepath[2][]..., the next newcommandrectanglepath[3][]..., they are not the same. ". The point is that you have to write different macros for different situations, and if you want to have the combined functionality, things become even more complicated. BTW, foreach X in 1,2,3 begintikzpicture[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);] path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath; endtikzpicture works ...

    – marmot
    May 25 at 15:55






  • 1





    but foreach X in 1,2,3 begintikzpicture newcommandrectanglepath[2][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);endscope rectanglepath0,0 rectanglepath[dashed]2,0 endtikzpicture doesn't. (Yes, I know how to fix it but it is, again, more complicated.)

    – marmot
    May 25 at 15:55






  • 1





    @JouleV I tried to answer the question If I have to draw the same "sub-"picture many times in a TikZ picture, should I use a pic or a macro? And why?. My answer is that in most situations pics are less complicated, which is why they are arguably preferable.

    – marmot
    May 25 at 16:48















11














Here are threefour examples of things that are much harder to achieve in the macro approach. The first three examples have been translated to macros in the revised question.



documentclassarticle
usepackagetikz
begindocument
subsection*Pics can have more complicated constructions
tikzsetrectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) coordinate(-tl) -- (0.5,-0.5) coordinate(-br) ;

begintikzpicture
path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath;
endtikzpicture

subsection*Pics can have names

begintikzpicture
path (0,0) pic (A) rectanglepath (2,0) pic[dashed] (B) rectanglepath;
draw (A-tl) to[out=30,in=150] (B-tl) (A-br) to[out=-30,in=-150] (B-br);
endtikzpicture

subsection*Transformations are much more intuitive on pics

begintikzpicture
path (0,0) pic[rotate=45]rectanglepath (2,0) pic[dashed,rotate=-30]rectanglepath
(4,0) pic[thick,xscale=0.5]rectanglepath;
endtikzpicture

subsection*You can insert pics in paths

begintikzpicture[xboard/.style=insert path=
(0,0) grid (#1,#1)
foreach X in 1,...,#1
(X-0.5,X-0.5) picrectanglepath (X-0.5,#1-X+0.5) pic[rotate=90]rectanglepath]
draw[xboard=1,xshift=2cm,xboard=3,xshift=4cm,xboard=5];
endtikzpicture

enddocument


enter image description here



My personal take: pics win, at least in the above-described scenarios. IMHO the translated macros in the revised question substantiate this.



Notice that "behind the scenes" pics are macros at some level. So you will always be able to reproduce the outcome of a pic with a macro. However, the effort will be more substantial. And yes, if you are in the mood to do some unnecessary extra work, you can use macros instead of pics. So, yes, the choice can depend on the mood of the day.



Let me also stress that there are scenarios in which pics perform worse. An example of this type may be a life wheel.



BTW, there is also the insert path option that is sometimes preferable over pics IMO.






share|improve this answer




















  • 1





    +1: Perfect answer!

    – Dr. Manuel Kuehner
    May 25 at 13:42






  • 2





    @JouleV Well, at some level a pic is a macro. My point is simply that things are harder to achieve with macros, and your macros substantiate this. I never claimed that you cannot achieve things done with a pic also with a macro, it is just harder and also less elegant IMHO.

    – marmot
    May 25 at 15:42






  • 2





    @JouleV You also misinterpreted "The first thingy has newcommandrectanglepath[2][]..., the next newcommandrectanglepath[3][]..., they are not the same. ". The point is that you have to write different macros for different situations, and if you want to have the combined functionality, things become even more complicated. BTW, foreach X in 1,2,3 begintikzpicture[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);] path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath; endtikzpicture works ...

    – marmot
    May 25 at 15:55






  • 1





    but foreach X in 1,2,3 begintikzpicture newcommandrectanglepath[2][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);endscope rectanglepath0,0 rectanglepath[dashed]2,0 endtikzpicture doesn't. (Yes, I know how to fix it but it is, again, more complicated.)

    – marmot
    May 25 at 15:55






  • 1





    @JouleV I tried to answer the question If I have to draw the same "sub-"picture many times in a TikZ picture, should I use a pic or a macro? And why?. My answer is that in most situations pics are less complicated, which is why they are arguably preferable.

    – marmot
    May 25 at 16:48













11












11








11







Here are threefour examples of things that are much harder to achieve in the macro approach. The first three examples have been translated to macros in the revised question.



documentclassarticle
usepackagetikz
begindocument
subsection*Pics can have more complicated constructions
tikzsetrectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) coordinate(-tl) -- (0.5,-0.5) coordinate(-br) ;

begintikzpicture
path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath;
endtikzpicture

subsection*Pics can have names

begintikzpicture
path (0,0) pic (A) rectanglepath (2,0) pic[dashed] (B) rectanglepath;
draw (A-tl) to[out=30,in=150] (B-tl) (A-br) to[out=-30,in=-150] (B-br);
endtikzpicture

subsection*Transformations are much more intuitive on pics

begintikzpicture
path (0,0) pic[rotate=45]rectanglepath (2,0) pic[dashed,rotate=-30]rectanglepath
(4,0) pic[thick,xscale=0.5]rectanglepath;
endtikzpicture

subsection*You can insert pics in paths

begintikzpicture[xboard/.style=insert path=
(0,0) grid (#1,#1)
foreach X in 1,...,#1
(X-0.5,X-0.5) picrectanglepath (X-0.5,#1-X+0.5) pic[rotate=90]rectanglepath]
draw[xboard=1,xshift=2cm,xboard=3,xshift=4cm,xboard=5];
endtikzpicture

enddocument


enter image description here



My personal take: pics win, at least in the above-described scenarios. IMHO the translated macros in the revised question substantiate this.



Notice that "behind the scenes" pics are macros at some level. So you will always be able to reproduce the outcome of a pic with a macro. However, the effort will be more substantial. And yes, if you are in the mood to do some unnecessary extra work, you can use macros instead of pics. So, yes, the choice can depend on the mood of the day.



Let me also stress that there are scenarios in which pics perform worse. An example of this type may be a life wheel.



BTW, there is also the insert path option that is sometimes preferable over pics IMO.






share|improve this answer















Here are threefour examples of things that are much harder to achieve in the macro approach. The first three examples have been translated to macros in the revised question.



documentclassarticle
usepackagetikz
begindocument
subsection*Pics can have more complicated constructions
tikzsetrectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1);
draw[red] (-0.5,0.5) coordinate(-tl) -- (0.5,-0.5) coordinate(-br) ;

begintikzpicture
path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath;
endtikzpicture

subsection*Pics can have names

begintikzpicture
path (0,0) pic (A) rectanglepath (2,0) pic[dashed] (B) rectanglepath;
draw (A-tl) to[out=30,in=150] (B-tl) (A-br) to[out=-30,in=-150] (B-br);
endtikzpicture

subsection*Transformations are much more intuitive on pics

begintikzpicture
path (0,0) pic[rotate=45]rectanglepath (2,0) pic[dashed,rotate=-30]rectanglepath
(4,0) pic[thick,xscale=0.5]rectanglepath;
endtikzpicture

subsection*You can insert pics in paths

begintikzpicture[xboard/.style=insert path=
(0,0) grid (#1,#1)
foreach X in 1,...,#1
(X-0.5,X-0.5) picrectanglepath (X-0.5,#1-X+0.5) pic[rotate=90]rectanglepath]
draw[xboard=1,xshift=2cm,xboard=3,xshift=4cm,xboard=5];
endtikzpicture

enddocument


enter image description here



My personal take: pics win, at least in the above-described scenarios. IMHO the translated macros in the revised question substantiate this.



Notice that "behind the scenes" pics are macros at some level. So you will always be able to reproduce the outcome of a pic with a macro. However, the effort will be more substantial. And yes, if you are in the mood to do some unnecessary extra work, you can use macros instead of pics. So, yes, the choice can depend on the mood of the day.



Let me also stress that there are scenarios in which pics perform worse. An example of this type may be a life wheel.



BTW, there is also the insert path option that is sometimes preferable over pics IMO.







share|improve this answer














share|improve this answer



share|improve this answer








edited May 28 at 20:16

























answered May 25 at 13:37









marmotmarmot

134k6174322




134k6174322







  • 1





    +1: Perfect answer!

    – Dr. Manuel Kuehner
    May 25 at 13:42






  • 2





    @JouleV Well, at some level a pic is a macro. My point is simply that things are harder to achieve with macros, and your macros substantiate this. I never claimed that you cannot achieve things done with a pic also with a macro, it is just harder and also less elegant IMHO.

    – marmot
    May 25 at 15:42






  • 2





    @JouleV You also misinterpreted "The first thingy has newcommandrectanglepath[2][]..., the next newcommandrectanglepath[3][]..., they are not the same. ". The point is that you have to write different macros for different situations, and if you want to have the combined functionality, things become even more complicated. BTW, foreach X in 1,2,3 begintikzpicture[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);] path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath; endtikzpicture works ...

    – marmot
    May 25 at 15:55






  • 1





    but foreach X in 1,2,3 begintikzpicture newcommandrectanglepath[2][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);endscope rectanglepath0,0 rectanglepath[dashed]2,0 endtikzpicture doesn't. (Yes, I know how to fix it but it is, again, more complicated.)

    – marmot
    May 25 at 15:55






  • 1





    @JouleV I tried to answer the question If I have to draw the same "sub-"picture many times in a TikZ picture, should I use a pic or a macro? And why?. My answer is that in most situations pics are less complicated, which is why they are arguably preferable.

    – marmot
    May 25 at 16:48












  • 1





    +1: Perfect answer!

    – Dr. Manuel Kuehner
    May 25 at 13:42






  • 2





    @JouleV Well, at some level a pic is a macro. My point is simply that things are harder to achieve with macros, and your macros substantiate this. I never claimed that you cannot achieve things done with a pic also with a macro, it is just harder and also less elegant IMHO.

    – marmot
    May 25 at 15:42






  • 2





    @JouleV You also misinterpreted "The first thingy has newcommandrectanglepath[2][]..., the next newcommandrectanglepath[3][]..., they are not the same. ". The point is that you have to write different macros for different situations, and if you want to have the combined functionality, things become even more complicated. BTW, foreach X in 1,2,3 begintikzpicture[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);] path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath; endtikzpicture works ...

    – marmot
    May 25 at 15:55






  • 1





    but foreach X in 1,2,3 begintikzpicture newcommandrectanglepath[2][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);endscope rectanglepath0,0 rectanglepath[dashed]2,0 endtikzpicture doesn't. (Yes, I know how to fix it but it is, again, more complicated.)

    – marmot
    May 25 at 15:55






  • 1





    @JouleV I tried to answer the question If I have to draw the same "sub-"picture many times in a TikZ picture, should I use a pic or a macro? And why?. My answer is that in most situations pics are less complicated, which is why they are arguably preferable.

    – marmot
    May 25 at 16:48







1




1





+1: Perfect answer!

– Dr. Manuel Kuehner
May 25 at 13:42





+1: Perfect answer!

– Dr. Manuel Kuehner
May 25 at 13:42




2




2





@JouleV Well, at some level a pic is a macro. My point is simply that things are harder to achieve with macros, and your macros substantiate this. I never claimed that you cannot achieve things done with a pic also with a macro, it is just harder and also less elegant IMHO.

– marmot
May 25 at 15:42





@JouleV Well, at some level a pic is a macro. My point is simply that things are harder to achieve with macros, and your macros substantiate this. I never claimed that you cannot achieve things done with a pic also with a macro, it is just harder and also less elegant IMHO.

– marmot
May 25 at 15:42




2




2





@JouleV You also misinterpreted "The first thingy has newcommandrectanglepath[2][]..., the next newcommandrectanglepath[3][]..., they are not the same. ". The point is that you have to write different macros for different situations, and if you want to have the combined functionality, things become even more complicated. BTW, foreach X in 1,2,3 begintikzpicture[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);] path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath; endtikzpicture works ...

– marmot
May 25 at 15:55





@JouleV You also misinterpreted "The first thingy has newcommandrectanglepath[2][]..., the next newcommandrectanglepath[3][]..., they are not the same. ". The point is that you have to write different macros for different situations, and if you want to have the combined functionality, things become even more complicated. BTW, foreach X in 1,2,3 begintikzpicture[rectanglepath/.pic=draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);] path (0,0) picrectanglepath (2,0) pic[dashed]rectanglepath; endtikzpicture works ...

– marmot
May 25 at 15:55




1




1





but foreach X in 1,2,3 begintikzpicture newcommandrectanglepath[2][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);endscope rectanglepath0,0 rectanglepath[dashed]2,0 endtikzpicture doesn't. (Yes, I know how to fix it but it is, again, more complicated.)

– marmot
May 25 at 15:55





but foreach X in 1,2,3 begintikzpicture newcommandrectanglepath[2][]scope[shift=(#2),#1]draw (-0.5,-0.5) rectangle ++(1,1); draw[red] (-0.5,0.5) -- (0.5,-0.5);endscope rectanglepath0,0 rectanglepath[dashed]2,0 endtikzpicture doesn't. (Yes, I know how to fix it but it is, again, more complicated.)

– marmot
May 25 at 15:55




1




1





@JouleV I tried to answer the question If I have to draw the same "sub-"picture many times in a TikZ picture, should I use a pic or a macro? And why?. My answer is that in most situations pics are less complicated, which is why they are arguably preferable.

– marmot
May 25 at 16:48





@JouleV I tried to answer the question If I have to draw the same "sub-"picture many times in a TikZ picture, should I use a pic or a macro? And why?. My answer is that in most situations pics are less complicated, which is why they are arguably preferable.

– marmot
May 25 at 16:48

















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f492585%2fpic-versus-macro-in-tikz%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

Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company