Creating a lot of checkbox'es to make visible/invisible arrows using `tikzpicture` environmentChecking whether or not a node has been previously definedHow to draw a diagram of custom subject correlativitiesDesign an algorithm capable of predicting collisions to choose alternative path using `tikzpicture` environmentHow to connect `pic`s through a set of colorful arrows using `tikzpicture` environment

Method to test if a number is a perfect power?

I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?

Two monoidal structures and copowering

Is exact Kanji stroke length important?

How do we know the LHC results are robust?

Where does the Z80 processor start executing from?

What is the best translation for "slot" in the context of multiplayer video games?

Would a high gravity rocky planet be guaranteed to have an atmosphere?

Risk of infection at the gym?

How to check is there any negative term in a large list?

Fine Tuning of the Universe

What happens if you roll doubles 3 times then land on "Go to jail?"

Why Were Madagascar and New Zealand Discovered So Late?

For a non-Jew, is there a punishment for not observing the 7 Noahide Laws?

How to write papers efficiently when English isn't my first language?

How can we prove that any integral in the set of non-elementary integrals cannot be expressed in the form of elementary functions?

Trouble understanding the speech of overseas colleagues

Are student evaluations of teaching assistants read by others in the faculty?

Proof of work - lottery approach

How do I extract a value from a time formatted value in excel?

Is a stroke of luck acceptable after a series of unfavorable events?

Is this apparent Class Action settlement a spam message?

How can a function with a hole (removable discontinuity) equal a function with no hole?

Unreliable Magic - Is it worth it?



Creating a lot of checkbox'es to make visible/invisible arrows using `tikzpicture` environment


Checking whether or not a node has been previously definedHow to draw a diagram of custom subject correlativitiesDesign an algorithm capable of predicting collisions to choose alternative path using `tikzpicture` environmentHow to connect `pic`s through a set of colorful arrows using `tikzpicture` environment













0















I have this MWE, taken from marmot's nice answer:



documentclassarticle
usepackage[margin=0in,footskip=0in,paperwidth=60cm,paperheight=29cm]geometry
usepackage[english]babel
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackagehyperref

usepackagetikz
usetikzlibrarypositioning,fit,calc
pgfdeclarelayerbehind
pgfdeclarelayerbackground
pgfdeclarelayerforeground
pgfsetlayersbehind,background,main,foreground
tikzset
text field/.style=text height=1.5ex,align=center,rounded corners,
nonfillable title field/.style=text height=2ex,text depth=0.3em,anchor=south,text
width=5cm,align=center,font=footnotesizesffamily,
fillable title field/.style=text height=3.14ex,text depth=0em,anchor=south,text
width=5cm,align=center,font=footnotesizesffamily,
pics/fillable subject/.style=code=%
node[text field] (-TF)
hspace*-0.5emTextField[align=1,name=#1-day,width=1em,charsize=7pt,maxlen=2,bordercolor=1 1 1]~~/hspace*-0.15emTextField[align=1,name=#1-month,width=1em,charsize=7pt,maxlen=2,bordercolor=1 1 1]~~/hspace*-0emTextField[align=1,name=#1-year,width=2em,charsize=7pt,maxlen=4,bordercolor=1 1 1]~;
node[nonfillable title field] (-Title)
at ([yshift=0.4em]-TF.north) #1;
draw[rounded corners] (-TF.south west) ,
pics/nonfillable subject/.style=code= (-TF.south east)
-- cycle;
draw ([xshift=4pt]-Title.south west) -- ([xshift=-4pt]-Title.south east);
,
pics/fillable elective subject/.style=code=- (-Title.south west)
,
pics/nonfillable elective subject/.style=code=- (-Title.north east) -- (-Title.south east) -,
manoooh/.style=column sep=-1.75cm,row sep=5mm,
manooohE/.style=column sep=-2.25cm,row sep=5mm,anchor=south,
electives/.style=column sep=-7.25cm,row sep=5mm,
fit sep/.initial=4pt, % change width of node (big rectangle shape)
fit dist/.initial=40pt, % change node distance (big rectangle shape)
inlay top sep/.initial=24pt,
matrix top sep/.initial=24pt,
manoooh curve/.style=to path=let p1=($(tikztotarget)-(tikztostart)$)
in (tikztostart) .. controls ($(tikztostart)+(#1*x1,0)$)
and ($(tikztotarget)+(-#1*x1,0)$) .. (tikztotarget),
manoooh curve/.default=0.3,
along node/.style=insert path=
to[out=0,in=180]
([yshift=5pt]#1-Title.north west) -- ([yshift=5pt]#1-Title.north east)
% From https://tex.stackexchange.com/a/478723/152550

makeatletter% from https://tex.stackexchange.com/a/85531/121799
longdefifnodedefined#1#2#3%
@ifundefinedpgf@sh@ns@#1#3#2%

makeatother

begindocument
thispagestyleempty % To suppress page number
noindent
begintikzpicture
fill[white,fill=orange] (0,0) rectangle (paperwidth,-2cm) node[midway,align=center,font=Huge] bfseries Some text here\LARGE More text here;
endtikzpicture

ifdefinedmymatbottom
else
typeoutPleasespace recompilespace yourspace file!
defmymatbottom-150pt
fi
ifdefinedmyheight
else
defmyheight0
typeoutPleasespace recompilespace yourspace file!
fi
ifdefinedLstMatYShifts
else
defLstMatYShifts0pt,0pt,0pt,0pt,0pt,0pt,0pt
fi
ifdefinedLstMatXShifts
else
defLstMatXShifts0pt,0pt,0pt,0pt,0pt,0pt,0pt
fi

%typeoutheight:myheight
%typeoutxshifts(in):LstMatXShifts

vfill
centering
beginForm
begintikzpicture
% step 1: add the matrices, name them mat0, mat1 etc.
beginscope[local bounding box=matrices]
matrix[manoooh] (mat0) at (LstMatXShifts[0],LstMatYShifts[0])
pic[local bounding box=A] (0) nonfillable subject=Subject A; \
pic (1) nonfillable subject=Subject B; \
;
matrix[manoooh] (mat1) at (LstMatXShifts[1],LstMatYShifts[1])

pic (2) nonfillable subject=Subject C; \
pic (3) nonfillable subject=Subject D; \
pic (4) nonfillable subject=Subject E; \
pic (5) nonfillable subject=Subject F; \
pic (6) nonfillable subject=Subject G; \
pic (7) nonfillable subject=Subject H; \
pic (8) nonfillable subject=Subject I; \
pic[draw=red] (9) nonfillable subject=Subject J; \
;
matrix[manoooh] (mat2) at (LstMatXShifts[2],LstMatYShifts[2])
pic[draw=red] (10) nonfillable subject=Subject K; \
pic (11) nonfillable subject=Subject L; \
pic (12) nonfillable subject=Subject A; \
pic (13) nonfillable subject=Subject N; \
pic (14) nonfillable subject=Subject O; \
pic (15) nonfillable subject=Subject P; \
pic (16) nonfillable subject=Subject Q; \
pic (17) nonfillable subject=Subject R; \
;
matrix[manoooh] (mat3) at (LstMatXShifts[3],LstMatYShifts[3])
pic[draw=red] (18) nonfillable subject=Subject S; \
pic (19) nonfillable subject=Subject T; \
pic (20) nonfillable subject=Subject U; \
pic (21) nonfillable subject=Subject V; \
pic (22) nonfillable subject=Subject W; \
pic (23) nonfillable subject=Subject X; \
pic (24) nonfillable subject=Subject Y; \
pic (25) nonfillable subject=Subject Z; \
;
matrix[manooohE] (matE3) at (LstMatXShifts[3],mymatbottom)
pic (L3E1) nonfillable elective subject=Subject; & &
pic (L3E2) nonfillable elective subject=Subject; \
& pic (L3E3) nonfillable elective subject=Subject; & \
;
matrix[manoooh] (mat4) at (LstMatXShifts[4],LstMatYShifts[4])
& pic[draw=red] (26) nonfillable subject=Subject AA; & \
pic (27) nonfillable subject=Subject AB; & & pic (28) nonfillable subject=Subject AC; \
& pic (29) nonfillable subject=Subject AD; & \
& pic (30) nonfillable subject=Subject AE; & \
& pic (31) nonfillable subject=Subject AF; & \
& pic (32) nonfillable subject=Subject AG; & \
;
matrix[manooohE] (matE4) at (LstMatXShifts[4],mymatbottom)
pic (L4E1) nonfillable elective subject=Subject; \
;
matrix[manoooh] (mat5) at (LstMatXShifts[5],LstMatYShifts[5])
pic (33) nonfillable subject=Subject AH; \
pic (34) nonfillable subject=Subject AI; \
pic[draw=red] (35) nonfillable subject=Subject AJ; \
pic (36) nonfillable subject=Subject AK; \
;
matrix[manooohE] (matE5) at (LstMatXShifts[5],mymatbottom)
pic (L5E1) nonfillable elective subject=Subject; \
pic (L5E2) nonfillable elective subject=Subject; \
pic (L5E3) nonfillable elective subject=Subject; \
pic (L5E4) nonfillable elective subject=Subject; \
pic (L5E5) nonfillable elective subject=Subject; \
;
endscope
pgfmathsetmacrogroupwidth0
pgfmathsetmacrolastwidth0
foreach X in 0,...,5 %<- if you have more or less matrices, adjust 3

node[anchor=south,yshift=1cm,align=center,font=LARGEbfseriesboldmath]
at (matX
makeatletter
immediatewrite@mainauxxdefstringmymatbottom-mymatbottomrelax
immediatewrite@mainauxxdefstringmyheightmyheightrelax
immediatewrite@mainauxxdefstringLstMatYShiftsLstMatYShiftsrelax
immediatewrite@mainauxxdefstringLstMatXShiftsLstMatXShiftsrelax
makeatother

newcommandtotalnodes5 % Define the total of subjects that need arrows-1

% From https://tex.stackexchange.com/a/480685/152550

% now add the arrows.

defLstCon%

"2,...,9",%subjects that 0 links
"2,10/5,13/5,14/5",%subjects that 1 links
"11,14",%subjects that 2 links
"10,13,14,25/13",%subjects that 3 links
"36/12,21,29",%subjects that 4 links


foreach X in 0,...,totalnodes
pgfmathsetmacrohuenumX*0.75*(1/totalnodes)
definecolormycolorhsbhuenum,1,1
pgfmathsetmacromylstLstCon[X]
typeoutX:mylst
foreach Y/myalong in mylst
ifxmyalongY
%typeoutX:Y,empty
draw[-latex,mycolor,very thick] (X-Title.east)
to[manoooh curve] (Y-Title.west);
else
%typeoutX:Yspace andspace myalong
draw[-latex,mycolor,very thick] (X-Title.east)
[along node/.list/.expanded=myalong]
to[manoooh curve] (Y-Title.west);
fi


endtikzpicture
endForm

vfill

enddocument


MWE



I would like to add a set of checkbox'es from ocgx2 package, where we can set the arrows to "Visible" or "Invisible" that connect two or more subjects:



What I want



If we deselect e.g. "Correlatives of subject C" then all the arrows that start from "Subject C" must be changed to "Invisible", so we cannot see them. Also the "Select All" checkbox has to change, meaning that "We have not selected all the checkbox'es" i.e.:



Example



If we deselect all of them:



Example 2



Note that the "Select All" checkbox is automatically changed due to the user's deselection of all the other checkbox'es.



As expected, the user can select "Select All" to make all the arrows visible. If he deselects it, all the arrows must be invisible.



You can rely on this great example of AlexG's comment:



documentclass[12pt,margin=3pt]standalone

usepackage[tikz]ocgx2 % PDF Layers
usepackageamssymb % checkmark
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% check box command for layer switching
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
newcommandlayerCheckBox[3]%
% #1: layer name (as shown in Layers tab), #2: layer id,
% #3: initial visibility
resizebox2ex!ooalign%
switchocg#2$square$cr%
beginocg#1#2#3$checkmark$endocg%
%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

begindocument

begintikzpicture
node (a) at (0,0) A;
node (b) at (1,1) B;
beginscope[ocg=name=Arrow,ref=myArrow,status=visible]
draw[->] (a.east) -| (b.south);
endscope
endtikzpicture

layerCheckBoxArrowmyArrowonA$rightarrow$B

enddocument


If possible, the addition of the checkbox'es should be automatic, in the sense that if there is a set of arrows then they will be inserted in a new line of the big black frame.



After the compilation all the checkbox'es have to start "on".









share


























    0















    I have this MWE, taken from marmot's nice answer:



    documentclassarticle
    usepackage[margin=0in,footskip=0in,paperwidth=60cm,paperheight=29cm]geometry
    usepackage[english]babel
    usepackage[utf8]inputenc
    usepackage[T1]fontenc
    usepackagehyperref

    usepackagetikz
    usetikzlibrarypositioning,fit,calc
    pgfdeclarelayerbehind
    pgfdeclarelayerbackground
    pgfdeclarelayerforeground
    pgfsetlayersbehind,background,main,foreground
    tikzset
    text field/.style=text height=1.5ex,align=center,rounded corners,
    nonfillable title field/.style=text height=2ex,text depth=0.3em,anchor=south,text
    width=5cm,align=center,font=footnotesizesffamily,
    fillable title field/.style=text height=3.14ex,text depth=0em,anchor=south,text
    width=5cm,align=center,font=footnotesizesffamily,
    pics/fillable subject/.style=code=%
    node[text field] (-TF)
    hspace*-0.5emTextField[align=1,name=#1-day,width=1em,charsize=7pt,maxlen=2,bordercolor=1 1 1]~~/hspace*-0.15emTextField[align=1,name=#1-month,width=1em,charsize=7pt,maxlen=2,bordercolor=1 1 1]~~/hspace*-0emTextField[align=1,name=#1-year,width=2em,charsize=7pt,maxlen=4,bordercolor=1 1 1]~;
    node[nonfillable title field] (-Title)
    at ([yshift=0.4em]-TF.north) #1;
    draw[rounded corners] (-TF.south west) ,
    pics/nonfillable subject/.style=code= (-TF.south east)
    -- cycle;
    draw ([xshift=4pt]-Title.south west) -- ([xshift=-4pt]-Title.south east);
    ,
    pics/fillable elective subject/.style=code=- (-Title.south west)
    ,
    pics/nonfillable elective subject/.style=code=- (-Title.north east) -- (-Title.south east) -,
    manoooh/.style=column sep=-1.75cm,row sep=5mm,
    manooohE/.style=column sep=-2.25cm,row sep=5mm,anchor=south,
    electives/.style=column sep=-7.25cm,row sep=5mm,
    fit sep/.initial=4pt, % change width of node (big rectangle shape)
    fit dist/.initial=40pt, % change node distance (big rectangle shape)
    inlay top sep/.initial=24pt,
    matrix top sep/.initial=24pt,
    manoooh curve/.style=to path=let p1=($(tikztotarget)-(tikztostart)$)
    in (tikztostart) .. controls ($(tikztostart)+(#1*x1,0)$)
    and ($(tikztotarget)+(-#1*x1,0)$) .. (tikztotarget),
    manoooh curve/.default=0.3,
    along node/.style=insert path=
    to[out=0,in=180]
    ([yshift=5pt]#1-Title.north west) -- ([yshift=5pt]#1-Title.north east)
    % From https://tex.stackexchange.com/a/478723/152550

    makeatletter% from https://tex.stackexchange.com/a/85531/121799
    longdefifnodedefined#1#2#3%
    @ifundefinedpgf@sh@ns@#1#3#2%

    makeatother

    begindocument
    thispagestyleempty % To suppress page number
    noindent
    begintikzpicture
    fill[white,fill=orange] (0,0) rectangle (paperwidth,-2cm) node[midway,align=center,font=Huge] bfseries Some text here\LARGE More text here;
    endtikzpicture

    ifdefinedmymatbottom
    else
    typeoutPleasespace recompilespace yourspace file!
    defmymatbottom-150pt
    fi
    ifdefinedmyheight
    else
    defmyheight0
    typeoutPleasespace recompilespace yourspace file!
    fi
    ifdefinedLstMatYShifts
    else
    defLstMatYShifts0pt,0pt,0pt,0pt,0pt,0pt,0pt
    fi
    ifdefinedLstMatXShifts
    else
    defLstMatXShifts0pt,0pt,0pt,0pt,0pt,0pt,0pt
    fi

    %typeoutheight:myheight
    %typeoutxshifts(in):LstMatXShifts

    vfill
    centering
    beginForm
    begintikzpicture
    % step 1: add the matrices, name them mat0, mat1 etc.
    beginscope[local bounding box=matrices]
    matrix[manoooh] (mat0) at (LstMatXShifts[0],LstMatYShifts[0])
    pic[local bounding box=A] (0) nonfillable subject=Subject A; \
    pic (1) nonfillable subject=Subject B; \
    ;
    matrix[manoooh] (mat1) at (LstMatXShifts[1],LstMatYShifts[1])

    pic (2) nonfillable subject=Subject C; \
    pic (3) nonfillable subject=Subject D; \
    pic (4) nonfillable subject=Subject E; \
    pic (5) nonfillable subject=Subject F; \
    pic (6) nonfillable subject=Subject G; \
    pic (7) nonfillable subject=Subject H; \
    pic (8) nonfillable subject=Subject I; \
    pic[draw=red] (9) nonfillable subject=Subject J; \
    ;
    matrix[manoooh] (mat2) at (LstMatXShifts[2],LstMatYShifts[2])
    pic[draw=red] (10) nonfillable subject=Subject K; \
    pic (11) nonfillable subject=Subject L; \
    pic (12) nonfillable subject=Subject A; \
    pic (13) nonfillable subject=Subject N; \
    pic (14) nonfillable subject=Subject O; \
    pic (15) nonfillable subject=Subject P; \
    pic (16) nonfillable subject=Subject Q; \
    pic (17) nonfillable subject=Subject R; \
    ;
    matrix[manoooh] (mat3) at (LstMatXShifts[3],LstMatYShifts[3])
    pic[draw=red] (18) nonfillable subject=Subject S; \
    pic (19) nonfillable subject=Subject T; \
    pic (20) nonfillable subject=Subject U; \
    pic (21) nonfillable subject=Subject V; \
    pic (22) nonfillable subject=Subject W; \
    pic (23) nonfillable subject=Subject X; \
    pic (24) nonfillable subject=Subject Y; \
    pic (25) nonfillable subject=Subject Z; \
    ;
    matrix[manooohE] (matE3) at (LstMatXShifts[3],mymatbottom)
    pic (L3E1) nonfillable elective subject=Subject; & &
    pic (L3E2) nonfillable elective subject=Subject; \
    & pic (L3E3) nonfillable elective subject=Subject; & \
    ;
    matrix[manoooh] (mat4) at (LstMatXShifts[4],LstMatYShifts[4])
    & pic[draw=red] (26) nonfillable subject=Subject AA; & \
    pic (27) nonfillable subject=Subject AB; & & pic (28) nonfillable subject=Subject AC; \
    & pic (29) nonfillable subject=Subject AD; & \
    & pic (30) nonfillable subject=Subject AE; & \
    & pic (31) nonfillable subject=Subject AF; & \
    & pic (32) nonfillable subject=Subject AG; & \
    ;
    matrix[manooohE] (matE4) at (LstMatXShifts[4],mymatbottom)
    pic (L4E1) nonfillable elective subject=Subject; \
    ;
    matrix[manoooh] (mat5) at (LstMatXShifts[5],LstMatYShifts[5])
    pic (33) nonfillable subject=Subject AH; \
    pic (34) nonfillable subject=Subject AI; \
    pic[draw=red] (35) nonfillable subject=Subject AJ; \
    pic (36) nonfillable subject=Subject AK; \
    ;
    matrix[manooohE] (matE5) at (LstMatXShifts[5],mymatbottom)
    pic (L5E1) nonfillable elective subject=Subject; \
    pic (L5E2) nonfillable elective subject=Subject; \
    pic (L5E3) nonfillable elective subject=Subject; \
    pic (L5E4) nonfillable elective subject=Subject; \
    pic (L5E5) nonfillable elective subject=Subject; \
    ;
    endscope
    pgfmathsetmacrogroupwidth0
    pgfmathsetmacrolastwidth0
    foreach X in 0,...,5 %<- if you have more or less matrices, adjust 3

    node[anchor=south,yshift=1cm,align=center,font=LARGEbfseriesboldmath]
    at (matX
    makeatletter
    immediatewrite@mainauxxdefstringmymatbottom-mymatbottomrelax
    immediatewrite@mainauxxdefstringmyheightmyheightrelax
    immediatewrite@mainauxxdefstringLstMatYShiftsLstMatYShiftsrelax
    immediatewrite@mainauxxdefstringLstMatXShiftsLstMatXShiftsrelax
    makeatother

    newcommandtotalnodes5 % Define the total of subjects that need arrows-1

    % From https://tex.stackexchange.com/a/480685/152550

    % now add the arrows.

    defLstCon%

    "2,...,9",%subjects that 0 links
    "2,10/5,13/5,14/5",%subjects that 1 links
    "11,14",%subjects that 2 links
    "10,13,14,25/13",%subjects that 3 links
    "36/12,21,29",%subjects that 4 links


    foreach X in 0,...,totalnodes
    pgfmathsetmacrohuenumX*0.75*(1/totalnodes)
    definecolormycolorhsbhuenum,1,1
    pgfmathsetmacromylstLstCon[X]
    typeoutX:mylst
    foreach Y/myalong in mylst
    ifxmyalongY
    %typeoutX:Y,empty
    draw[-latex,mycolor,very thick] (X-Title.east)
    to[manoooh curve] (Y-Title.west);
    else
    %typeoutX:Yspace andspace myalong
    draw[-latex,mycolor,very thick] (X-Title.east)
    [along node/.list/.expanded=myalong]
    to[manoooh curve] (Y-Title.west);
    fi


    endtikzpicture
    endForm

    vfill

    enddocument


    MWE



    I would like to add a set of checkbox'es from ocgx2 package, where we can set the arrows to "Visible" or "Invisible" that connect two or more subjects:



    What I want



    If we deselect e.g. "Correlatives of subject C" then all the arrows that start from "Subject C" must be changed to "Invisible", so we cannot see them. Also the "Select All" checkbox has to change, meaning that "We have not selected all the checkbox'es" i.e.:



    Example



    If we deselect all of them:



    Example 2



    Note that the "Select All" checkbox is automatically changed due to the user's deselection of all the other checkbox'es.



    As expected, the user can select "Select All" to make all the arrows visible. If he deselects it, all the arrows must be invisible.



    You can rely on this great example of AlexG's comment:



    documentclass[12pt,margin=3pt]standalone

    usepackage[tikz]ocgx2 % PDF Layers
    usepackageamssymb % checkmark
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    % check box command for layer switching
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    newcommandlayerCheckBox[3]%
    % #1: layer name (as shown in Layers tab), #2: layer id,
    % #3: initial visibility
    resizebox2ex!ooalign%
    switchocg#2$square$cr%
    beginocg#1#2#3$checkmark$endocg%
    %

    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

    begindocument

    begintikzpicture
    node (a) at (0,0) A;
    node (b) at (1,1) B;
    beginscope[ocg=name=Arrow,ref=myArrow,status=visible]
    draw[->] (a.east) -| (b.south);
    endscope
    endtikzpicture

    layerCheckBoxArrowmyArrowonA$rightarrow$B

    enddocument


    If possible, the addition of the checkbox'es should be automatic, in the sense that if there is a set of arrows then they will be inserted in a new line of the big black frame.



    After the compilation all the checkbox'es have to start "on".









    share
























      0












      0








      0








      I have this MWE, taken from marmot's nice answer:



      documentclassarticle
      usepackage[margin=0in,footskip=0in,paperwidth=60cm,paperheight=29cm]geometry
      usepackage[english]babel
      usepackage[utf8]inputenc
      usepackage[T1]fontenc
      usepackagehyperref

      usepackagetikz
      usetikzlibrarypositioning,fit,calc
      pgfdeclarelayerbehind
      pgfdeclarelayerbackground
      pgfdeclarelayerforeground
      pgfsetlayersbehind,background,main,foreground
      tikzset
      text field/.style=text height=1.5ex,align=center,rounded corners,
      nonfillable title field/.style=text height=2ex,text depth=0.3em,anchor=south,text
      width=5cm,align=center,font=footnotesizesffamily,
      fillable title field/.style=text height=3.14ex,text depth=0em,anchor=south,text
      width=5cm,align=center,font=footnotesizesffamily,
      pics/fillable subject/.style=code=%
      node[text field] (-TF)
      hspace*-0.5emTextField[align=1,name=#1-day,width=1em,charsize=7pt,maxlen=2,bordercolor=1 1 1]~~/hspace*-0.15emTextField[align=1,name=#1-month,width=1em,charsize=7pt,maxlen=2,bordercolor=1 1 1]~~/hspace*-0emTextField[align=1,name=#1-year,width=2em,charsize=7pt,maxlen=4,bordercolor=1 1 1]~;
      node[nonfillable title field] (-Title)
      at ([yshift=0.4em]-TF.north) #1;
      draw[rounded corners] (-TF.south west) ,
      pics/nonfillable subject/.style=code= (-TF.south east)
      -- cycle;
      draw ([xshift=4pt]-Title.south west) -- ([xshift=-4pt]-Title.south east);
      ,
      pics/fillable elective subject/.style=code=- (-Title.south west)
      ,
      pics/nonfillable elective subject/.style=code=- (-Title.north east) -- (-Title.south east) -,
      manoooh/.style=column sep=-1.75cm,row sep=5mm,
      manooohE/.style=column sep=-2.25cm,row sep=5mm,anchor=south,
      electives/.style=column sep=-7.25cm,row sep=5mm,
      fit sep/.initial=4pt, % change width of node (big rectangle shape)
      fit dist/.initial=40pt, % change node distance (big rectangle shape)
      inlay top sep/.initial=24pt,
      matrix top sep/.initial=24pt,
      manoooh curve/.style=to path=let p1=($(tikztotarget)-(tikztostart)$)
      in (tikztostart) .. controls ($(tikztostart)+(#1*x1,0)$)
      and ($(tikztotarget)+(-#1*x1,0)$) .. (tikztotarget),
      manoooh curve/.default=0.3,
      along node/.style=insert path=
      to[out=0,in=180]
      ([yshift=5pt]#1-Title.north west) -- ([yshift=5pt]#1-Title.north east)
      % From https://tex.stackexchange.com/a/478723/152550

      makeatletter% from https://tex.stackexchange.com/a/85531/121799
      longdefifnodedefined#1#2#3%
      @ifundefinedpgf@sh@ns@#1#3#2%

      makeatother

      begindocument
      thispagestyleempty % To suppress page number
      noindent
      begintikzpicture
      fill[white,fill=orange] (0,0) rectangle (paperwidth,-2cm) node[midway,align=center,font=Huge] bfseries Some text here\LARGE More text here;
      endtikzpicture

      ifdefinedmymatbottom
      else
      typeoutPleasespace recompilespace yourspace file!
      defmymatbottom-150pt
      fi
      ifdefinedmyheight
      else
      defmyheight0
      typeoutPleasespace recompilespace yourspace file!
      fi
      ifdefinedLstMatYShifts
      else
      defLstMatYShifts0pt,0pt,0pt,0pt,0pt,0pt,0pt
      fi
      ifdefinedLstMatXShifts
      else
      defLstMatXShifts0pt,0pt,0pt,0pt,0pt,0pt,0pt
      fi

      %typeoutheight:myheight
      %typeoutxshifts(in):LstMatXShifts

      vfill
      centering
      beginForm
      begintikzpicture
      % step 1: add the matrices, name them mat0, mat1 etc.
      beginscope[local bounding box=matrices]
      matrix[manoooh] (mat0) at (LstMatXShifts[0],LstMatYShifts[0])
      pic[local bounding box=A] (0) nonfillable subject=Subject A; \
      pic (1) nonfillable subject=Subject B; \
      ;
      matrix[manoooh] (mat1) at (LstMatXShifts[1],LstMatYShifts[1])

      pic (2) nonfillable subject=Subject C; \
      pic (3) nonfillable subject=Subject D; \
      pic (4) nonfillable subject=Subject E; \
      pic (5) nonfillable subject=Subject F; \
      pic (6) nonfillable subject=Subject G; \
      pic (7) nonfillable subject=Subject H; \
      pic (8) nonfillable subject=Subject I; \
      pic[draw=red] (9) nonfillable subject=Subject J; \
      ;
      matrix[manoooh] (mat2) at (LstMatXShifts[2],LstMatYShifts[2])
      pic[draw=red] (10) nonfillable subject=Subject K; \
      pic (11) nonfillable subject=Subject L; \
      pic (12) nonfillable subject=Subject A; \
      pic (13) nonfillable subject=Subject N; \
      pic (14) nonfillable subject=Subject O; \
      pic (15) nonfillable subject=Subject P; \
      pic (16) nonfillable subject=Subject Q; \
      pic (17) nonfillable subject=Subject R; \
      ;
      matrix[manoooh] (mat3) at (LstMatXShifts[3],LstMatYShifts[3])
      pic[draw=red] (18) nonfillable subject=Subject S; \
      pic (19) nonfillable subject=Subject T; \
      pic (20) nonfillable subject=Subject U; \
      pic (21) nonfillable subject=Subject V; \
      pic (22) nonfillable subject=Subject W; \
      pic (23) nonfillable subject=Subject X; \
      pic (24) nonfillable subject=Subject Y; \
      pic (25) nonfillable subject=Subject Z; \
      ;
      matrix[manooohE] (matE3) at (LstMatXShifts[3],mymatbottom)
      pic (L3E1) nonfillable elective subject=Subject; & &
      pic (L3E2) nonfillable elective subject=Subject; \
      & pic (L3E3) nonfillable elective subject=Subject; & \
      ;
      matrix[manoooh] (mat4) at (LstMatXShifts[4],LstMatYShifts[4])
      & pic[draw=red] (26) nonfillable subject=Subject AA; & \
      pic (27) nonfillable subject=Subject AB; & & pic (28) nonfillable subject=Subject AC; \
      & pic (29) nonfillable subject=Subject AD; & \
      & pic (30) nonfillable subject=Subject AE; & \
      & pic (31) nonfillable subject=Subject AF; & \
      & pic (32) nonfillable subject=Subject AG; & \
      ;
      matrix[manooohE] (matE4) at (LstMatXShifts[4],mymatbottom)
      pic (L4E1) nonfillable elective subject=Subject; \
      ;
      matrix[manoooh] (mat5) at (LstMatXShifts[5],LstMatYShifts[5])
      pic (33) nonfillable subject=Subject AH; \
      pic (34) nonfillable subject=Subject AI; \
      pic[draw=red] (35) nonfillable subject=Subject AJ; \
      pic (36) nonfillable subject=Subject AK; \
      ;
      matrix[manooohE] (matE5) at (LstMatXShifts[5],mymatbottom)
      pic (L5E1) nonfillable elective subject=Subject; \
      pic (L5E2) nonfillable elective subject=Subject; \
      pic (L5E3) nonfillable elective subject=Subject; \
      pic (L5E4) nonfillable elective subject=Subject; \
      pic (L5E5) nonfillable elective subject=Subject; \
      ;
      endscope
      pgfmathsetmacrogroupwidth0
      pgfmathsetmacrolastwidth0
      foreach X in 0,...,5 %<- if you have more or less matrices, adjust 3

      node[anchor=south,yshift=1cm,align=center,font=LARGEbfseriesboldmath]
      at (matX
      makeatletter
      immediatewrite@mainauxxdefstringmymatbottom-mymatbottomrelax
      immediatewrite@mainauxxdefstringmyheightmyheightrelax
      immediatewrite@mainauxxdefstringLstMatYShiftsLstMatYShiftsrelax
      immediatewrite@mainauxxdefstringLstMatXShiftsLstMatXShiftsrelax
      makeatother

      newcommandtotalnodes5 % Define the total of subjects that need arrows-1

      % From https://tex.stackexchange.com/a/480685/152550

      % now add the arrows.

      defLstCon%

      "2,...,9",%subjects that 0 links
      "2,10/5,13/5,14/5",%subjects that 1 links
      "11,14",%subjects that 2 links
      "10,13,14,25/13",%subjects that 3 links
      "36/12,21,29",%subjects that 4 links


      foreach X in 0,...,totalnodes
      pgfmathsetmacrohuenumX*0.75*(1/totalnodes)
      definecolormycolorhsbhuenum,1,1
      pgfmathsetmacromylstLstCon[X]
      typeoutX:mylst
      foreach Y/myalong in mylst
      ifxmyalongY
      %typeoutX:Y,empty
      draw[-latex,mycolor,very thick] (X-Title.east)
      to[manoooh curve] (Y-Title.west);
      else
      %typeoutX:Yspace andspace myalong
      draw[-latex,mycolor,very thick] (X-Title.east)
      [along node/.list/.expanded=myalong]
      to[manoooh curve] (Y-Title.west);
      fi


      endtikzpicture
      endForm

      vfill

      enddocument


      MWE



      I would like to add a set of checkbox'es from ocgx2 package, where we can set the arrows to "Visible" or "Invisible" that connect two or more subjects:



      What I want



      If we deselect e.g. "Correlatives of subject C" then all the arrows that start from "Subject C" must be changed to "Invisible", so we cannot see them. Also the "Select All" checkbox has to change, meaning that "We have not selected all the checkbox'es" i.e.:



      Example



      If we deselect all of them:



      Example 2



      Note that the "Select All" checkbox is automatically changed due to the user's deselection of all the other checkbox'es.



      As expected, the user can select "Select All" to make all the arrows visible. If he deselects it, all the arrows must be invisible.



      You can rely on this great example of AlexG's comment:



      documentclass[12pt,margin=3pt]standalone

      usepackage[tikz]ocgx2 % PDF Layers
      usepackageamssymb % checkmark
      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
      % check box command for layer switching
      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
      newcommandlayerCheckBox[3]%
      % #1: layer name (as shown in Layers tab), #2: layer id,
      % #3: initial visibility
      resizebox2ex!ooalign%
      switchocg#2$square$cr%
      beginocg#1#2#3$checkmark$endocg%
      %

      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

      begindocument

      begintikzpicture
      node (a) at (0,0) A;
      node (b) at (1,1) B;
      beginscope[ocg=name=Arrow,ref=myArrow,status=visible]
      draw[->] (a.east) -| (b.south);
      endscope
      endtikzpicture

      layerCheckBoxArrowmyArrowonA$rightarrow$B

      enddocument


      If possible, the addition of the checkbox'es should be automatic, in the sense that if there is a set of arrows then they will be inserted in a new line of the big black frame.



      After the compilation all the checkbox'es have to start "on".









      share














      I have this MWE, taken from marmot's nice answer:



      documentclassarticle
      usepackage[margin=0in,footskip=0in,paperwidth=60cm,paperheight=29cm]geometry
      usepackage[english]babel
      usepackage[utf8]inputenc
      usepackage[T1]fontenc
      usepackagehyperref

      usepackagetikz
      usetikzlibrarypositioning,fit,calc
      pgfdeclarelayerbehind
      pgfdeclarelayerbackground
      pgfdeclarelayerforeground
      pgfsetlayersbehind,background,main,foreground
      tikzset
      text field/.style=text height=1.5ex,align=center,rounded corners,
      nonfillable title field/.style=text height=2ex,text depth=0.3em,anchor=south,text
      width=5cm,align=center,font=footnotesizesffamily,
      fillable title field/.style=text height=3.14ex,text depth=0em,anchor=south,text
      width=5cm,align=center,font=footnotesizesffamily,
      pics/fillable subject/.style=code=%
      node[text field] (-TF)
      hspace*-0.5emTextField[align=1,name=#1-day,width=1em,charsize=7pt,maxlen=2,bordercolor=1 1 1]~~/hspace*-0.15emTextField[align=1,name=#1-month,width=1em,charsize=7pt,maxlen=2,bordercolor=1 1 1]~~/hspace*-0emTextField[align=1,name=#1-year,width=2em,charsize=7pt,maxlen=4,bordercolor=1 1 1]~;
      node[nonfillable title field] (-Title)
      at ([yshift=0.4em]-TF.north) #1;
      draw[rounded corners] (-TF.south west) ,
      pics/nonfillable subject/.style=code= (-TF.south east)
      -- cycle;
      draw ([xshift=4pt]-Title.south west) -- ([xshift=-4pt]-Title.south east);
      ,
      pics/fillable elective subject/.style=code=- (-Title.south west)
      ,
      pics/nonfillable elective subject/.style=code=- (-Title.north east) -- (-Title.south east) -,
      manoooh/.style=column sep=-1.75cm,row sep=5mm,
      manooohE/.style=column sep=-2.25cm,row sep=5mm,anchor=south,
      electives/.style=column sep=-7.25cm,row sep=5mm,
      fit sep/.initial=4pt, % change width of node (big rectangle shape)
      fit dist/.initial=40pt, % change node distance (big rectangle shape)
      inlay top sep/.initial=24pt,
      matrix top sep/.initial=24pt,
      manoooh curve/.style=to path=let p1=($(tikztotarget)-(tikztostart)$)
      in (tikztostart) .. controls ($(tikztostart)+(#1*x1,0)$)
      and ($(tikztotarget)+(-#1*x1,0)$) .. (tikztotarget),
      manoooh curve/.default=0.3,
      along node/.style=insert path=
      to[out=0,in=180]
      ([yshift=5pt]#1-Title.north west) -- ([yshift=5pt]#1-Title.north east)
      % From https://tex.stackexchange.com/a/478723/152550

      makeatletter% from https://tex.stackexchange.com/a/85531/121799
      longdefifnodedefined#1#2#3%
      @ifundefinedpgf@sh@ns@#1#3#2%

      makeatother

      begindocument
      thispagestyleempty % To suppress page number
      noindent
      begintikzpicture
      fill[white,fill=orange] (0,0) rectangle (paperwidth,-2cm) node[midway,align=center,font=Huge] bfseries Some text here\LARGE More text here;
      endtikzpicture

      ifdefinedmymatbottom
      else
      typeoutPleasespace recompilespace yourspace file!
      defmymatbottom-150pt
      fi
      ifdefinedmyheight
      else
      defmyheight0
      typeoutPleasespace recompilespace yourspace file!
      fi
      ifdefinedLstMatYShifts
      else
      defLstMatYShifts0pt,0pt,0pt,0pt,0pt,0pt,0pt
      fi
      ifdefinedLstMatXShifts
      else
      defLstMatXShifts0pt,0pt,0pt,0pt,0pt,0pt,0pt
      fi

      %typeoutheight:myheight
      %typeoutxshifts(in):LstMatXShifts

      vfill
      centering
      beginForm
      begintikzpicture
      % step 1: add the matrices, name them mat0, mat1 etc.
      beginscope[local bounding box=matrices]
      matrix[manoooh] (mat0) at (LstMatXShifts[0],LstMatYShifts[0])
      pic[local bounding box=A] (0) nonfillable subject=Subject A; \
      pic (1) nonfillable subject=Subject B; \
      ;
      matrix[manoooh] (mat1) at (LstMatXShifts[1],LstMatYShifts[1])

      pic (2) nonfillable subject=Subject C; \
      pic (3) nonfillable subject=Subject D; \
      pic (4) nonfillable subject=Subject E; \
      pic (5) nonfillable subject=Subject F; \
      pic (6) nonfillable subject=Subject G; \
      pic (7) nonfillable subject=Subject H; \
      pic (8) nonfillable subject=Subject I; \
      pic[draw=red] (9) nonfillable subject=Subject J; \
      ;
      matrix[manoooh] (mat2) at (LstMatXShifts[2],LstMatYShifts[2])
      pic[draw=red] (10) nonfillable subject=Subject K; \
      pic (11) nonfillable subject=Subject L; \
      pic (12) nonfillable subject=Subject A; \
      pic (13) nonfillable subject=Subject N; \
      pic (14) nonfillable subject=Subject O; \
      pic (15) nonfillable subject=Subject P; \
      pic (16) nonfillable subject=Subject Q; \
      pic (17) nonfillable subject=Subject R; \
      ;
      matrix[manoooh] (mat3) at (LstMatXShifts[3],LstMatYShifts[3])
      pic[draw=red] (18) nonfillable subject=Subject S; \
      pic (19) nonfillable subject=Subject T; \
      pic (20) nonfillable subject=Subject U; \
      pic (21) nonfillable subject=Subject V; \
      pic (22) nonfillable subject=Subject W; \
      pic (23) nonfillable subject=Subject X; \
      pic (24) nonfillable subject=Subject Y; \
      pic (25) nonfillable subject=Subject Z; \
      ;
      matrix[manooohE] (matE3) at (LstMatXShifts[3],mymatbottom)
      pic (L3E1) nonfillable elective subject=Subject; & &
      pic (L3E2) nonfillable elective subject=Subject; \
      & pic (L3E3) nonfillable elective subject=Subject; & \
      ;
      matrix[manoooh] (mat4) at (LstMatXShifts[4],LstMatYShifts[4])
      & pic[draw=red] (26) nonfillable subject=Subject AA; & \
      pic (27) nonfillable subject=Subject AB; & & pic (28) nonfillable subject=Subject AC; \
      & pic (29) nonfillable subject=Subject AD; & \
      & pic (30) nonfillable subject=Subject AE; & \
      & pic (31) nonfillable subject=Subject AF; & \
      & pic (32) nonfillable subject=Subject AG; & \
      ;
      matrix[manooohE] (matE4) at (LstMatXShifts[4],mymatbottom)
      pic (L4E1) nonfillable elective subject=Subject; \
      ;
      matrix[manoooh] (mat5) at (LstMatXShifts[5],LstMatYShifts[5])
      pic (33) nonfillable subject=Subject AH; \
      pic (34) nonfillable subject=Subject AI; \
      pic[draw=red] (35) nonfillable subject=Subject AJ; \
      pic (36) nonfillable subject=Subject AK; \
      ;
      matrix[manooohE] (matE5) at (LstMatXShifts[5],mymatbottom)
      pic (L5E1) nonfillable elective subject=Subject; \
      pic (L5E2) nonfillable elective subject=Subject; \
      pic (L5E3) nonfillable elective subject=Subject; \
      pic (L5E4) nonfillable elective subject=Subject; \
      pic (L5E5) nonfillable elective subject=Subject; \
      ;
      endscope
      pgfmathsetmacrogroupwidth0
      pgfmathsetmacrolastwidth0
      foreach X in 0,...,5 %<- if you have more or less matrices, adjust 3

      node[anchor=south,yshift=1cm,align=center,font=LARGEbfseriesboldmath]
      at (matX
      makeatletter
      immediatewrite@mainauxxdefstringmymatbottom-mymatbottomrelax
      immediatewrite@mainauxxdefstringmyheightmyheightrelax
      immediatewrite@mainauxxdefstringLstMatYShiftsLstMatYShiftsrelax
      immediatewrite@mainauxxdefstringLstMatXShiftsLstMatXShiftsrelax
      makeatother

      newcommandtotalnodes5 % Define the total of subjects that need arrows-1

      % From https://tex.stackexchange.com/a/480685/152550

      % now add the arrows.

      defLstCon%

      "2,...,9",%subjects that 0 links
      "2,10/5,13/5,14/5",%subjects that 1 links
      "11,14",%subjects that 2 links
      "10,13,14,25/13",%subjects that 3 links
      "36/12,21,29",%subjects that 4 links


      foreach X in 0,...,totalnodes
      pgfmathsetmacrohuenumX*0.75*(1/totalnodes)
      definecolormycolorhsbhuenum,1,1
      pgfmathsetmacromylstLstCon[X]
      typeoutX:mylst
      foreach Y/myalong in mylst
      ifxmyalongY
      %typeoutX:Y,empty
      draw[-latex,mycolor,very thick] (X-Title.east)
      to[manoooh curve] (Y-Title.west);
      else
      %typeoutX:Yspace andspace myalong
      draw[-latex,mycolor,very thick] (X-Title.east)
      [along node/.list/.expanded=myalong]
      to[manoooh curve] (Y-Title.west);
      fi


      endtikzpicture
      endForm

      vfill

      enddocument


      MWE



      I would like to add a set of checkbox'es from ocgx2 package, where we can set the arrows to "Visible" or "Invisible" that connect two or more subjects:



      What I want



      If we deselect e.g. "Correlatives of subject C" then all the arrows that start from "Subject C" must be changed to "Invisible", so we cannot see them. Also the "Select All" checkbox has to change, meaning that "We have not selected all the checkbox'es" i.e.:



      Example



      If we deselect all of them:



      Example 2



      Note that the "Select All" checkbox is automatically changed due to the user's deselection of all the other checkbox'es.



      As expected, the user can select "Select All" to make all the arrows visible. If he deselects it, all the arrows must be invisible.



      You can rely on this great example of AlexG's comment:



      documentclass[12pt,margin=3pt]standalone

      usepackage[tikz]ocgx2 % PDF Layers
      usepackageamssymb % checkmark
      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
      % check box command for layer switching
      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
      newcommandlayerCheckBox[3]%
      % #1: layer name (as shown in Layers tab), #2: layer id,
      % #3: initial visibility
      resizebox2ex!ooalign%
      switchocg#2$square$cr%
      beginocg#1#2#3$checkmark$endocg%
      %

      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

      begindocument

      begintikzpicture
      node (a) at (0,0) A;
      node (b) at (1,1) B;
      beginscope[ocg=name=Arrow,ref=myArrow,status=visible]
      draw[->] (a.east) -| (b.south);
      endscope
      endtikzpicture

      layerCheckBoxArrowmyArrowonA$rightarrow$B

      enddocument


      If possible, the addition of the checkbox'es should be automatic, in the sense that if there is a set of arrows then they will be inserted in a new line of the big black frame.



      After the compilation all the checkbox'es have to start "on".







      tikz-pgf ocgx2





      share












      share










      share



      share










      asked 2 mins ago









      manoooohmanooooh

      1,1691517




      1,1691517




















          0






          active

          oldest

          votes











          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%2f481812%2fcreating-a-lot-of-checkboxes-to-make-visible-invisible-arrows-using-tikzpictur%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          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%2f481812%2fcreating-a-lot-of-checkboxes-to-make-visible-invisible-arrows-using-tikzpictur%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

          How should I use the fbox command correctly to avoid producing a Bad Box message?How to put a long piece of text in a box?How to specify height and width of fboxIs there an arrayrulecolor-like command to change the rule color of fbox?What is the command to highlight bad boxes in pdf?Why does fbox sometimes place the box *over* the graphic image?how to put the text in the boxHow to create command for a box where text inside the box can automatically adjust?how can I make an fbox like command with certain color, shape and width of border?how to use fbox in align modeFbox increase the spacing between the box and it content (inner margin)how to change the box height of an equationWhat is the use of the hbox in a newcommand command?

          152 Atala Notae | Nexus externi | Tabula navigationis"Discovery Circumstances: Numbered Minor Planets"2000152Small-Body Database

          Doxepinum Nexus interni Notae | Tabula navigationis3158DB01142WHOa682390"Structural Analysis of the Histamine H1 Receptor""Transdermal and Topical Drug Administration in the Treatment of Pain""Antidepressants as antipruritic agents: A review"