Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support applying options to multiple examples as suggested in #640 #1339

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

hansonchar
Copy link

@hansonchar hansonchar commented Jun 10, 2024

Motivation for this change

The conversation at #640 on the possibility of supporting the specification of options that can be applied to multiple examples.

To demonstrate the usage of this feature, I've modified ControlElectric.lua, while simplifying the code by removing unnecessary double quotes at the same time.

Checklist

@hansonchar
Copy link
Author

This PR is also related to #971

@muzimuzhi muzimuzhi changed the title Support applying options to multiple examples as suggested in https://github.com/pgf-tikz/pgf/issues/640 Support applying options to multiple examples as suggested in #640 Jun 10, 2024
simplify the usage of having multiple examples
with the same options.

Signed-off-by: Hanson Char <[email protected]>
Copy link
Contributor

@Mo-Gul Mo-Gul left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome!

@hansonchar
Copy link
Author

hansonchar commented Jun 23, 2024

I found bugs in this version of pull request. It doesn't work in all cases. Please do not merge this PR for now. The fix is coming along in due course.

@Mo-Gul
Copy link
Contributor

Mo-Gul commented Jun 23, 2024

I am not sure if I understand your message right, but also the actual version (without your PR) doesn't work in all cases so far.
(I think I listed some/all of them in some comment ...)

@hansonchar
Copy link
Author

hansonchar commented Jun 23, 2024

Oops, never mind my last comment. My bad checking out the wrong source from the wrong branch locally.

@Mo-Gul
Copy link
Contributor

Mo-Gul commented Jun 24, 2024

For the record: Here are other examples that could make use of this PR:

  • --[[
    % TODOsp: codeexamples: the following 3 examples need these libraries
    % \usetikzlibrary{graphs,graphdrawing}
    % \usegdlibrary{force}
    --]]
    example
    [[
    \begin{tikzpicture}
    \draw [help lines] (0,0) grid (3,2);
    \graph [spring layout]
    {
    a[x=1] -- { b, c, d, e -- {f,g,h} };
    { h, g } -- a;
    };
    \end{tikzpicture}
    ]]
    example
    [[
    \begin{tikzpicture}
    \draw [help lines] (0,0) grid (3,2);
    \graph [spring layout]
    {
    a -- { b, c, d[x=0], e -- {f[x=2], g, h[x=1]} };
    { h, g } -- a;
    };
    \end{tikzpicture}
    ]]
    example
    [[
    \begin{tikzpicture}
    \draw [help lines] (0,0) grid (3,2);
    \graph [spring layout]
    {
    a -- { b, c, d[x=0], e -- {f[x=2,y=1], g, h[x=1]} };
    { h, g } -- a;
    };
    \end{tikzpicture}
    ]]
  • --[[
    % TODOsp: codeexamples: the following 4 examples need these libraries
    % \usetikzlibrary{graphs,graphdrawing}
    % \usegdlibrary{layered}
    --]]
    example
    [[
    \tikz \draw (0,0)
    -- (1,0.5) graph [edges=red, layered layout, anchor node=a] { a -> {b,c} }
    -- (1.5,0) graph [edges=blue, layered layout,
    anchor node=y, anchor at={(2,0)}] { x -> {y,z} };
    ]]
    example
    [[
    \begin{tikzpicture}
    \draw [help lines] (0,0) grid (3,2);
    \graph [layered layout, anchor node=c, edges=rounded corners]
    { a -- {b [x=1,y=1], c [x=1,y=1] } -- d -- a};
    \end{tikzpicture}
    ]]

@hansonchar
Copy link
Author

For the record: Here are other examples that could make use of this PR:

* [ ]  https://github.com/pgf-tikz/pgf/blob/12f17834c849a659b8829bbc9122bc459f585917/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/doc.lua#L101-L140

* [ ]  https://github.com/pgf-tikz/pgf/blob/12f17834c849a659b8829bbc9122bc459f585917/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/doc.lua#L170-L191

Indeed. I am working on my forked branch (specifically main) fixing most, if not all of the missing preambles. And there are lots of them. The two you pointed out are indeed covered.

@hansonchar
Copy link
Author

hansonchar commented Jul 1, 2024

After fixing all the missing preambles and extending the existing extractor.lua (in my forked main branch), it extracted 2,503 tex documents. I managed to compile them all successfully. The generated pgfmanual.pdf is also looking good. (You should be able to download the updated pdf from https://github.com/hansonchar/pgf/actions/runs/9750355245 once the workflow has completed. See here and scroll to the bottom if you want to replicate the extract-compile process from my main branch.)

I plan to submit two pull requests - one for fixing the preamble, etc. so that readers of the manual can copy-and-paste any of the examples in the pdf and have them successfully compiled, and another for the extended extractors and scripts.

(I've got other miscellaneous things fixed as well, but I'll delay those to future pull requests.)

However, these changes presume the fixes in this pull request #1339 have been merged. Any chance that can be done any time soon?

@Mo-Gul
Copy link
Contributor

Mo-Gul commented Jul 3, 2024

That sounds awesome.

Unfortunately I am a Windows child with almost no knowledge about bash scripts. After modifying it a bit so I could run it in Git Bash it extracted 2391 files. I assume it is my fault that I couldn't replicate 2503 extractions as you. I didn't run the compilations until the end, because in series this takes "forever"
😴.

Merging usually is done by the master chief @hmenke, but I haven't seem him for a while (at least I can't remember ...). Have you (@muzimuzhi) seen him?

@hansonchar
Copy link
Author

hansonchar commented Jul 3, 2024

2391 sounds significantly on the low side. Did you specify both the pgf/tex and pgf/doc (of the forked main branch) as the source directories during the extraction ? For example,

texlua ~/github.com/pgf/doc/generic/pgf/extract.lua ~/github.com/pgf/tex ~/github.com/pgf/doc ~/tmp/mwe

(Running in parallel is an optimization that can be done later on.)

@Mo-Gul
Copy link
Contributor

Mo-Gul commented Jul 3, 2024

Sorry, forgot that the main branch is called "master" so I didn't run the script on your "main" branch. Now I also extracted 2305 TEX files.

@hansonchar
Copy link
Author

I think you meant 2503, but yeah.

@Mo-Gul
Copy link
Contributor

Mo-Gul commented Jul 4, 2024

Of course. It seems I really need holidays :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants