├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── documentation.md │ ├── general-bug-report.md │ ├── generic-feature-request.md │ ├── new-body-type--feet--bill--wings-or-eyes.md │ ├── new-penguin-clothes.md │ ├── new-penguin-extra.md │ └── new-penguin-wing-item.md ├── pull_request_template.md └── workflows │ ├── checkBrokenLinks.yaml │ ├── compile.yaml │ └── status_check.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── build.lua ├── doc ├── .latexmkrc ├── README-ctan.md ├── indexstyle.ist └── tikzpingus-doc.tex ├── examples ├── .latexmkrc ├── cloak.tex ├── hey-pingu.tex ├── minimal.tex ├── showcase.tex └── spl.tex └── tex └── tikzpingus.sty /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | florian.sihler@uni-ulm.de. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Thank you for every contribution 2 | 3 | Just select and or create an issue, work on that in your own fork and open a pull-request! 4 | 5 | If you have any questions, just send me a mail at: . 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Documentation 3 | about: There is an issue or a new feature request for the documentation. 4 | title: '' 5 | labels: documentation 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general-bug-report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: General Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior or a [MWE](https://stackoverflow.com/help/minimal-reproducible-example) showcasing the problem. 15 | 16 | **Expected behavior** 17 | A clear and concise description of what you expected to happen. 18 | 19 | **Screenshots** 20 | If applicable, add screenshots to help explain your problem. 21 | 22 | **Additional context** 23 | Add any other context about the problem here. 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/generic-feature-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Generic Feature request 3 | about: Suggest an idea for this project. 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution or new penguin you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-body-type--feet--bill--wings-or-eyes.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: New Body-Type, Feet, Bill, Wings or Eyes 3 | about: Request a new Body-Type, Feet, Bill, Wings or Eyes for the penguin. 4 | title: '' 5 | labels: body type, enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **How should the feature look?** 11 | Describe what kind of feature you want. 12 | 13 | **Should it look differently, depending on other extras?** 14 | If yes, please describe these extras. 15 | 16 | **Is there already a similar feature?** 17 | E.g., you just want another angle for the wings. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-penguin-clothes.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: New Penguin Clothes 3 | about: Suggest new Clothes or updates to existing one 4 | title: '' 5 | labels: cloak, enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **How should the clothes look?** 11 | Describe what kind of clothes you want. 12 | 13 | **Should it look differently, depending other extras?** 14 | Additionally: is there some special interaction necessary or desired (e.g., if another gadget is selected or certain other clothes are displayed). 15 | 16 | **Is there already a similar cloth?** 17 | In that case, we might not need a completely new cloth but just add some options to an existing one. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-penguin-extra.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: New Penguin Extra 3 | about: Suggest a new Extra for the penguins. 4 | title: '' 5 | labels: enhancement, extra gadget 6 | assignees: '' 7 | 8 | --- 9 | 10 | **How should the extra look?** 11 | Describe what kind of extra you want 12 | 13 | **Is there already a similar extra?** 14 | In that case, we might not need a completely new extra but just add some options to an existing one. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-penguin-wing-item.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: New Penguin Wing-Item 3 | about: Suggest a new Wing-Item for the penguins (an extra that can be held in the 4 | penguins hand) 5 | title: '' 6 | labels: enhancement, wing item 7 | assignees: '' 8 | 9 | --- 10 | 11 | **How should the wing-item look?** 12 | Describe what kind of wing-item you want. 13 | 14 | **Should it look differently, depending on the wing it is in?** 15 | Additionally: is there some special interaction necessary or desired (e.g., if another gadget is selected or certain clothes are displayed). 16 | 17 | **Is there already a similar wing-item?** 18 | In that case, we might not need a completely new extra but just add some options to an existing one. 19 | 20 | **Additional context** 21 | Add any other context or screenshots about the feature request here. 22 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | **Please link the issue by typing at least `closes #` with `` being the number of the issue** 2 | 3 | If you add or change anything visual, please add at least one screenshot of the change. -------------------------------------------------------------------------------- /.github/workflows/checkBrokenLinks.yaml: -------------------------------------------------------------------------------- 1 | name: check for broken links 2 | 3 | on: 4 | push: 5 | workflow_dispatch: 6 | 7 | jobs: 8 | build: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v3 12 | 13 | - name: Markup Link Checker (mlc) 14 | uses: Wandalen/wretry.action@v1.3.0 15 | with: 16 | action: becheran/mlc@v0.16.2 17 | with: | 18 | args: --ignore-path "CHANGELOG.md" 19 | attempt_limit: 3 20 | attempt_delay: 2000 -------------------------------------------------------------------------------- /.github/workflows/compile.yaml: -------------------------------------------------------------------------------- 1 | name: Build Documentation 2 | 3 | "on": 4 | push: 5 | branches: [master, main] 6 | 7 | jobs: 8 | build: 9 | uses: EagleoutIce/tikzpingus/.github/workflows/status_check.yaml@main 10 | process-pdf: 11 | runs-on: ubuntu-latest 12 | needs: build 13 | steps: 14 | # otherwise we cant commit 15 | - name: Checkout git repository 16 | uses: actions/checkout@v4 17 | - name: ⬇️ Get doc Artifacts 18 | uses: actions/download-artifact@v4 19 | with: 20 | name: doc-output 21 | path: doc/build/ 22 | - name: ⬇️ Get examples Artifacts 23 | uses: actions/download-artifact@v4 24 | with: 25 | name: examples-output 26 | path: examples/build/ 27 | - name: Install PU for previews 28 | run: sudo apt install poppler-utils 29 | - name: 🖼️ Generate previews 30 | run: | 31 | pdftoppm -png -r 300 -f 1 -l 1 ./examples/build/showcase.pdf preview 32 | pdftoppm -png -r 300 -f 1 -l 1 ./examples/build/minimal.pdf minimal 33 | pdftoppm -png -r 300 -f 1 -l 1 ./examples/build/spl.pdf spl 34 | pdftoppm -png -r 400 ./examples/build/hey-pingu.pdf hey-pingu 35 | - name: Commit 36 | run: | 37 | git config --local user.email "action@github.com" 38 | git config --local user.name "GitHub Action" 39 | git add -f "examples/build/showcase.pdf" "examples/build/minimal.pdf" "examples/build/cloak.pdf" "examples/build/spl.pdf" "examples/build/hey-pingu.pdf" "doc/build/tikzpingus-doc.pdf" "preview-1.png" "minimal-1.png" "spl-1.png" "hey-pingu-*.png" 40 | git commit -m "Newly compiled data" 41 | - name: Push changes 42 | uses: ad-m/github-push-action@master 43 | with: 44 | branch: gh-pages 45 | github_token: ${{ secrets.GITHUB_TOKEN }} 46 | force: true 47 | -------------------------------------------------------------------------------- /.github/workflows/status_check.yaml: -------------------------------------------------------------------------------- 1 | name: status check compile 2 | "on": 3 | pull_request: 4 | types: [opened, synchronize] 5 | workflow_call: 6 | 7 | jobs: 8 | build-pdfs: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - name: Checkout git repository 12 | uses: actions/checkout@v4 13 | # https://github.com/actions/cache/issues/342 14 | - name: 💾 Caching 15 | uses: actions/cache@v4 16 | with: 17 | path: | 18 | **/build 19 | **/sub_* 20 | key: ${{ runner.os }}-pengu-cache-doc-${{ github.run_id }} 21 | restore-keys: ${{ runner.os }}-pengu-cache-doc- 22 | - name: 📄 Compile the Documentation 23 | uses: xu-cheng/latex-action@v3 24 | continue-on-error: true 25 | with: 26 | pre_compile: "tlmgr remove --force tikzpingus" 27 | working_directory: doc 28 | root_file: tikzpingus-doc.tex 29 | - name: 📄 Compile Examples 30 | uses: xu-cheng/latex-action@v3 31 | with: 32 | # remove ctan package to insure local 33 | pre_compile: "tlmgr remove --force tikzpingus" 34 | working_directory: examples 35 | root_file: | 36 | showcase.tex 37 | minimal.tex 38 | cloak.tex 39 | spl.tex 40 | hey-pingu.tex 41 | - name: ⬆️ Upload doc artifacts 42 | uses: actions/upload-artifact@v4 43 | with: 44 | name: doc-output 45 | path: | 46 | doc/build/*.pdf 47 | doc/build/tikzpingus-doc.* 48 | - name: ⬆️ Upload examples artifacts 49 | uses: actions/upload-artifact@v4 50 | with: 51 | name: examples-output 52 | path: examples/build/*.pdf 53 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## [v1.2](https://github.com/EagleoutIce/tikzpingus/tree/v1.2) (2024-11-27) 4 | 5 | [Full Changelog](https://github.com/EagleoutIce/tikzpingus/compare/v1.1...v1.2) 6 | 7 | **Implemented enhancements:** 8 | 9 | - Graduate cap request [\#273](https://github.com/EagleoutIce/tikzpingus/issues/273) 10 | - A Space Helmet! [\#268](https://github.com/EagleoutIce/tikzpingus/issues/268) 11 | - Drop Multi-File System Again [\#266](https://github.com/EagleoutIce/tikzpingus/issues/266) 12 | - Library Setup [\#119](https://github.com/EagleoutIce/tikzpingus/issues/119) 13 | 14 | **Fixed bugs:** 15 | 16 | - \[Bug\] headband has slight bleed [\#279](https://github.com/EagleoutIce/tikzpingus/issues/279) 17 | 18 | **Closed issues:** 19 | 20 | - Update Fonts Used and Presentation [\#274](https://github.com/EagleoutIce/tikzpingus/issues/274) 21 | - Remove mention of libraries from main readme [\#271](https://github.com/EagleoutIce/tikzpingus/issues/271) 22 | - /pingu/banner sticks length is not a color [\#263](https://github.com/EagleoutIce/tikzpingus/issues/263) 23 | - Rephrase Readme [\#261](https://github.com/EagleoutIce/tikzpingus/issues/261) 24 | - Reduce the size of the root directory [\#255](https://github.com/EagleoutIce/tikzpingus/issues/255) 25 | - More penguins overview png in readme \(some rects at top\) [\#217](https://github.com/EagleoutIce/tikzpingus/issues/217) 26 | - Improve Introduction with Showcases [\#74](https://github.com/EagleoutIce/tikzpingus/issues/74) 27 | 28 | **Merged pull requests:** 29 | 30 | - feat-fix\(headband\): remove head bleed below [\#280](https://github.com/EagleoutIce/tikzpingus/pull/280) ([EagleoutIce](https://github.com/EagleoutIce)) 31 | - \[Doc\]: font and sizing update [\#277](https://github.com/EagleoutIce/tikzpingus/pull/277) ([EagleoutIce](https://github.com/EagleoutIce)) 32 | - New Hat: Graduate Cap [\#276](https://github.com/EagleoutIce/tikzpingus/pull/276) ([EagleoutIce](https://github.com/EagleoutIce)) 33 | - doc\(README.md\): remove library management, add alt-texts to images [\#272](https://github.com/EagleoutIce/tikzpingus/pull/272) ([EagleoutIce](https://github.com/EagleoutIce)) 34 | - fix small typos [\#270](https://github.com/EagleoutIce/tikzpingus/pull/270) ([mbertucci47](https://github.com/mbertucci47)) 35 | - A Space Helmet [\#269](https://github.com/EagleoutIce/tikzpingus/pull/269) ([EagleoutIce](https://github.com/EagleoutIce)) 36 | - Reduce Library Files [\#267](https://github.com/EagleoutIce/tikzpingus/pull/267) ([EagleoutIce](https://github.com/EagleoutIce)) 37 | - Remove Todo Markers From the Readme [\#265](https://github.com/EagleoutIce/tikzpingus/pull/265) ([EagleoutIce](https://github.com/EagleoutIce)) 38 | - /pingu/banner sticks length is not a color [\#264](https://github.com/EagleoutIce/tikzpingus/pull/264) ([LukasPietzschmann](https://github.com/LukasPietzschmann)) 39 | - Fix documentation typos [\#262](https://github.com/EagleoutIce/tikzpingus/pull/262) ([Chouhartem](https://github.com/Chouhartem)) 40 | - Reduce the Size of the Root Directory [\#256](https://github.com/EagleoutIce/tikzpingus/pull/256) ([EagleoutIce](https://github.com/EagleoutIce)) 41 | 42 | ## [v1.1](https://github.com/EagleoutIce/tikzpingus/tree/v1.1) (2023-09-17) 43 | 44 | [Full Changelog](https://github.com/EagleoutIce/tikzpingus/compare/v1.0...v1.1) 45 | 46 | **Implemented enhancements:** 47 | 48 | - Bug in wink eyes [\#244](https://github.com/EagleoutIce/tikzpingus/issues/244) 49 | - Get a donkey [\#233](https://github.com/EagleoutIce/tikzpingus/issues/233) 50 | - Magnifier [\#231](https://github.com/EagleoutIce/tikzpingus/issues/231) 51 | - Snowball [\#228](https://github.com/EagleoutIce/tikzpingus/issues/228) 52 | - Allow to change color of spear [\#222](https://github.com/EagleoutIce/tikzpingus/issues/222) 53 | - Wooden plank [\#219](https://github.com/EagleoutIce/tikzpingus/issues/219) 54 | - Present for the penguins [\#216](https://github.com/EagleoutIce/tikzpingus/issues/216) 55 | - Deer hat [\#215](https://github.com/EagleoutIce/tikzpingus/issues/215) 56 | - Warm Hat [\#213](https://github.com/EagleoutIce/tikzpingus/issues/213) 57 | - A present for the penguin [\#209](https://github.com/EagleoutIce/tikzpingus/issues/209) 58 | - Spear for the penguin [\#208](https://github.com/EagleoutIce/tikzpingus/issues/208) 59 | - Belts for the penguin [\#205](https://github.com/EagleoutIce/tikzpingus/issues/205) 60 | - Hammer [\#202](https://github.com/EagleoutIce/tikzpingus/issues/202) 61 | - Allow to load libraries from a fixed path prefix [\#200](https://github.com/EagleoutIce/tikzpingus/issues/200) 62 | - More critical look [\#198](https://github.com/EagleoutIce/tikzpingus/issues/198) 63 | - Steam for the cup [\#194](https://github.com/EagleoutIce/tikzpingus/issues/194) 64 | - A Jack-O-Lantern [\#192](https://github.com/EagleoutIce/tikzpingus/issues/192) 65 | - A penguin with a witch-hat [\#190](https://github.com/EagleoutIce/tikzpingus/issues/190) 66 | - A \(witch\) broom for the penguin [\#188](https://github.com/EagleoutIce/tikzpingus/issues/188) 67 | - Vampire teeth for the bill [\#186](https://github.com/EagleoutIce/tikzpingus/issues/186) 68 | - Chess Penguins [\#169](https://github.com/EagleoutIce/tikzpingus/issues/169) 69 | - Improve the Bee [\#166](https://github.com/EagleoutIce/tikzpingus/issues/166) 70 | - Do not use listings in index [\#153](https://github.com/EagleoutIce/tikzpingus/issues/153) 71 | - New Feet [\#132](https://github.com/EagleoutIce/tikzpingus/issues/132) 72 | - New Bill [\#128](https://github.com/EagleoutIce/tikzpingus/issues/128) 73 | - New Eyes [\#127](https://github.com/EagleoutIce/tikzpingus/issues/127) 74 | - New Body Types [\#125](https://github.com/EagleoutIce/tikzpingus/issues/125) 75 | - Color handling [\#120](https://github.com/EagleoutIce/tikzpingus/issues/120) 76 | - Add the bee-friend [\#117](https://github.com/EagleoutIce/tikzpingus/issues/117) 77 | - Fix mlc re-run [\#116](https://github.com/EagleoutIce/tikzpingus/issues/116) 78 | - Remove font-awesome dependency with penguin heart [\#105](https://github.com/EagleoutIce/tikzpingus/issues/105) 79 | - Teaser Image on CTAN [\#97](https://github.com/EagleoutIce/tikzpingus/issues/97) 80 | - Fix lines in previews? [\#94](https://github.com/EagleoutIce/tikzpingus/issues/94) 81 | - More rounded bill [\#87](https://github.com/EagleoutIce/tikzpingus/issues/87) 82 | - Setup Status Checks for Pull Requests [\#36](https://github.com/EagleoutIce/tikzpingus/issues/36) 83 | - Move to CTAN [\#29](https://github.com/EagleoutIce/tikzpingus/issues/29) 84 | - PDF Glow and Firefox Viewer [\#17](https://github.com/EagleoutIce/tikzpingus/issues/17) 85 | - hooves for the horse [\#3](https://github.com/EagleoutIce/tikzpingus/issues/3) 86 | - add bounding box to horse show [\#238](https://github.com/EagleoutIce/tikzpingus/pull/238) ([EagleoutIce](https://github.com/EagleoutIce)) 87 | - lot of minor improvements [\#235](https://github.com/EagleoutIce/tikzpingus/pull/235) ([EagleoutIce](https://github.com/EagleoutIce)) 88 | 89 | **Fixed bugs:** 90 | 91 | - Fix light staff glow [\#248](https://github.com/EagleoutIce/tikzpingus/issues/248) 92 | - Fix Penguin Blush [\#247](https://github.com/EagleoutIce/tikzpingus/issues/247) 93 | - Belt shown above cup [\#242](https://github.com/EagleoutIce/tikzpingus/issues/242) 94 | - Incomplete `\ifx`, `\iftrue` etc.. [\#237](https://github.com/EagleoutIce/tikzpingus/issues/237) 95 | - Fix Bill Keyref [\#161](https://github.com/EagleoutIce/tikzpingus/issues/161) 96 | - Fix cap keys in index [\#154](https://github.com/EagleoutIce/tikzpingus/issues/154) 97 | - CI Error [\#137](https://github.com/EagleoutIce/tikzpingus/issues/137) 98 | - Make feet sit cursive [\#107](https://github.com/EagleoutIce/tikzpingus/issues/107) 99 | - Filling glitches for minimal example [\#101](https://github.com/EagleoutIce/tikzpingus/issues/101) 100 | 101 | **Closed issues:** 102 | 103 | - Upgrade the broken link checker [\#251](https://github.com/EagleoutIce/tikzpingus/issues/251) 104 | - Fitting Bishop Wing Item\(s\) [\#221](https://github.com/EagleoutIce/tikzpingus/issues/221) 105 | - Bishop hat \(mitra\) [\#204](https://github.com/EagleoutIce/tikzpingus/issues/204) 106 | - Horse in short key presentation [\#180](https://github.com/EagleoutIce/tikzpingus/issues/180) 107 | - Show Index in ToC [\#177](https://github.com/EagleoutIce/tikzpingus/issues/177) 108 | - Pawn [\#175](https://github.com/EagleoutIce/tikzpingus/issues/175) 109 | - Knight [\#174](https://github.com/EagleoutIce/tikzpingus/issues/174) 110 | - Bishop [\#173](https://github.com/EagleoutIce/tikzpingus/issues/173) 111 | - Rook [\#172](https://github.com/EagleoutIce/tikzpingus/issues/172) 112 | - Queen [\#171](https://github.com/EagleoutIce/tikzpingus/issues/171) 113 | - King [\#170](https://github.com/EagleoutIce/tikzpingus/issues/170) 114 | - Darken sections [\#157](https://github.com/EagleoutIce/tikzpingus/issues/157) 115 | - Document the sheriff star [\#150](https://github.com/EagleoutIce/tikzpingus/issues/150) 116 | - Describe the comands to load libraries [\#142](https://github.com/EagleoutIce/tikzpingus/issues/142) 117 | - Describing the commands for setting defaults with the new commandexplain [\#141](https://github.com/EagleoutIce/tikzpingus/issues/141) 118 | - Link drawing styles [\#104](https://github.com/EagleoutIce/tikzpingus/issues/104) 119 | - Check if Caching caches really everything or if something \(potentially vital\) is missing [\#65](https://github.com/EagleoutIce/tikzpingus/issues/65) 120 | - Deal with hbox too wide warning when building documentation [\#64](https://github.com/EagleoutIce/tikzpingus/issues/64) 121 | - "Fade out Option" that does not affect the gadgets [\#22](https://github.com/EagleoutIce/tikzpingus/issues/22) 122 | 123 | **Merged pull requests:** 124 | 125 | - update github action versions [\#252](https://github.com/EagleoutIce/tikzpingus/pull/252) ([EagleoutIce](https://github.com/EagleoutIce)) 126 | - Use softer `@glow` options for the `blush` [\#250](https://github.com/EagleoutIce/tikzpingus/pull/250) ([EagleoutIce](https://github.com/EagleoutIce)) 127 | - Remove glow marker from lightstaff [\#249](https://github.com/EagleoutIce/tikzpingus/pull/249) ([EagleoutIce](https://github.com/EagleoutIce)) 128 | - Fix Lightsaber in the Firefox PDF viewer [\#246](https://github.com/EagleoutIce/tikzpingus/pull/246) ([EagleoutIce](https://github.com/EagleoutIce)) 129 | - fix: remove rounded corners for wink eyes [\#245](https://github.com/EagleoutIce/tikzpingus/pull/245) ([EagleoutIce](https://github.com/EagleoutIce)) 130 | - change drawing order for belt [\#243](https://github.com/EagleoutIce/tikzpingus/pull/243) ([EagleoutIce](https://github.com/EagleoutIce)) 131 | - Different mixings [\#241](https://github.com/EagleoutIce/tikzpingus/pull/241) ([EagleoutIce](https://github.com/EagleoutIce)) 132 | - 205 belts for the penguin [\#240](https://github.com/EagleoutIce/tikzpingus/pull/240) ([EagleoutIce](https://github.com/EagleoutIce)) 133 | - fix incomplete if problem with horses [\#239](https://github.com/EagleoutIce/tikzpingus/pull/239) ([EagleoutIce](https://github.com/EagleoutIce)) 134 | - 3 hooves for the horse [\#236](https://github.com/EagleoutIce/tikzpingus/pull/236) ([EagleoutIce](https://github.com/EagleoutIce)) 135 | - Silly donkey [\#234](https://github.com/EagleoutIce/tikzpingus/pull/234) ([EagleoutIce](https://github.com/EagleoutIce)) 136 | - 231 magnifier [\#232](https://github.com/EagleoutIce/tikzpingus/pull/232) ([EagleoutIce](https://github.com/EagleoutIce)) 137 | - 228 snowball [\#229](https://github.com/EagleoutIce/tikzpingus/pull/229) ([EagleoutIce](https://github.com/EagleoutIce)) 138 | - 219 wooden plank [\#227](https://github.com/EagleoutIce/tikzpingus/pull/227) ([EagleoutIce](https://github.com/EagleoutIce)) 139 | - 173 bishop [\#226](https://github.com/EagleoutIce/tikzpingus/pull/226) ([EagleoutIce](https://github.com/EagleoutIce)) 140 | - fix witch hat link wrong write [\#225](https://github.com/EagleoutIce/tikzpingus/pull/225) ([EagleoutIce](https://github.com/EagleoutIce)) 141 | - allow to set color of spear tip [\#224](https://github.com/EagleoutIce/tikzpingus/pull/224) ([EagleoutIce](https://github.com/EagleoutIce)) 142 | - 221 fitting bishop wing items [\#223](https://github.com/EagleoutIce/tikzpingus/pull/223) ([EagleoutIce](https://github.com/EagleoutIce)) 143 | - 216 present for the penguins [\#220](https://github.com/EagleoutIce/tikzpingus/pull/220) ([EagleoutIce](https://github.com/EagleoutIce)) 144 | - 213 warm hat [\#214](https://github.com/EagleoutIce/tikzpingus/pull/214) ([EagleoutIce](https://github.com/EagleoutIce)) 145 | - 194 steam for the cup [\#212](https://github.com/EagleoutIce/tikzpingus/pull/212) ([EagleoutIce](https://github.com/EagleoutIce)) 146 | - 208 spear for the penguin [\#210](https://github.com/EagleoutIce/tikzpingus/pull/210) ([EagleoutIce](https://github.com/EagleoutIce)) 147 | - 204 bishop hat mitra [\#206](https://github.com/EagleoutIce/tikzpingus/pull/206) ([EagleoutIce](https://github.com/EagleoutIce)) 148 | - 202 hammer [\#203](https://github.com/EagleoutIce/tikzpingus/pull/203) ([EagleoutIce](https://github.com/EagleoutIce)) 149 | - expose \pingulibpathprefix [\#201](https://github.com/EagleoutIce/tikzpingus/pull/201) ([EagleoutIce](https://github.com/EagleoutIce)) 150 | - 198 more critical look [\#199](https://github.com/EagleoutIce/tikzpingus/pull/199) ([EagleoutIce](https://github.com/EagleoutIce)) 151 | - 192 a jack o lantern [\#195](https://github.com/EagleoutIce/tikzpingus/pull/195) ([EagleoutIce](https://github.com/EagleoutIce)) 152 | - 190 a penguin with a witch hat [\#191](https://github.com/EagleoutIce/tikzpingus/pull/191) ([EagleoutIce](https://github.com/EagleoutIce)) 153 | - 188 a witch broom for the penguin [\#189](https://github.com/EagleoutIce/tikzpingus/pull/189) ([EagleoutIce](https://github.com/EagleoutIce)) 154 | - 186 vampire teeth for the bill [\#187](https://github.com/EagleoutIce/tikzpingus/pull/187) ([EagleoutIce](https://github.com/EagleoutIce)) 155 | - fix: correcting the docu magic dummy [\#185](https://github.com/EagleoutIce/tikzpingus/pull/185) ([EagleoutIce](https://github.com/EagleoutIce)) 156 | - apply typo fix [\#184](https://github.com/EagleoutIce/tikzpingus/pull/184) ([EagleoutIce](https://github.com/EagleoutIce)) 157 | - 171 queen [\#183](https://github.com/EagleoutIce/tikzpingus/pull/183) ([EagleoutIce](https://github.com/EagleoutIce)) 158 | - bow before the kings [\#182](https://github.com/EagleoutIce/tikzpingus/pull/182) ([EagleoutIce](https://github.com/EagleoutIce)) 159 | - 180 horse in short key presentation [\#181](https://github.com/EagleoutIce/tikzpingus/pull/181) ([EagleoutIce](https://github.com/EagleoutIce)) 160 | - 174 knight [\#179](https://github.com/EagleoutIce/tikzpingus/pull/179) ([EagleoutIce](https://github.com/EagleoutIce)) 161 | - adding index [\#178](https://github.com/EagleoutIce/tikzpingus/pull/178) ([EagleoutIce](https://github.com/EagleoutIce)) 162 | - 172 rook [\#176](https://github.com/EagleoutIce/tikzpingus/pull/176) ([EagleoutIce](https://github.com/EagleoutIce)) 163 | - 166 improve bee [\#167](https://github.com/EagleoutIce/tikzpingus/pull/167) ([EagleoutIce](https://github.com/EagleoutIce)) 164 | - 117 bee friend [\#165](https://github.com/EagleoutIce/tikzpingus/pull/165) ([EagleoutIce](https://github.com/EagleoutIce)) 165 | - 125 new body types [\#164](https://github.com/EagleoutIce/tikzpingus/pull/164) ([EagleoutIce](https://github.com/EagleoutIce)) 166 | - 161 fix bill keyref [\#162](https://github.com/EagleoutIce/tikzpingus/pull/162) ([EagleoutIce](https://github.com/EagleoutIce)) 167 | - 128 new bill [\#160](https://github.com/EagleoutIce/tikzpingus/pull/160) ([EagleoutIce](https://github.com/EagleoutIce)) 168 | - make sectioning more prominent [\#158](https://github.com/EagleoutIce/tikzpingus/pull/158) ([EagleoutIce](https://github.com/EagleoutIce)) 169 | - fix subkeys [\#156](https://github.com/EagleoutIce/tikzpingus/pull/156) ([EagleoutIce](https://github.com/EagleoutIce)) 170 | - new feet [\#155](https://github.com/EagleoutIce/tikzpingus/pull/155) ([EagleoutIce](https://github.com/EagleoutIce)) 171 | - try auto repeat of mlc [\#152](https://github.com/EagleoutIce/tikzpingus/pull/152) ([EagleoutIce](https://github.com/EagleoutIce)) 172 | - basic configuration for sheriff star [\#151](https://github.com/EagleoutIce/tikzpingus/pull/151) ([EagleoutIce](https://github.com/EagleoutIce)) 173 | - commands to uppercase [\#149](https://github.com/EagleoutIce/tikzpingus/pull/149) ([EagleoutIce](https://github.com/EagleoutIce)) 174 | - color handling [\#148](https://github.com/EagleoutIce/tikzpingus/pull/148) ([EagleoutIce](https://github.com/EagleoutIce)) 175 | - Correct default c3 [\#147](https://github.com/EagleoutIce/tikzpingus/pull/147) ([EagleoutIce](https://github.com/EagleoutIce)) 176 | - fix index ref in key overview [\#146](https://github.com/EagleoutIce/tikzpingus/pull/146) ([EagleoutIce](https://github.com/EagleoutIce)) 177 | - explain the commands [\#145](https://github.com/EagleoutIce/tikzpingus/pull/145) ([EagleoutIce](https://github.com/EagleoutIce)) 178 | - describing the commands for setting defaults with the new commandexplain [\#143](https://github.com/EagleoutIce/tikzpingus/pull/143) ([EagleoutIce](https://github.com/EagleoutIce)) 179 | - 127 new eyes [\#140](https://github.com/EagleoutIce/tikzpingus/pull/140) ([EagleoutIce](https://github.com/EagleoutIce)) 180 | - force remove tikzpingus in ci [\#138](https://github.com/EagleoutIce/tikzpingus/pull/138) ([EagleoutIce](https://github.com/EagleoutIce)) 181 | - content for teaser image [\#136](https://github.com/EagleoutIce/tikzpingus/pull/136) ([EagleoutIce](https://github.com/EagleoutIce)) 182 | - lowercase overview in readme [\#115](https://github.com/EagleoutIce/tikzpingus/pull/115) ([EagleoutIce](https://github.com/EagleoutIce)) 183 | - fade out option that does not affect the gadgets [\#114](https://github.com/EagleoutIce/tikzpingus/pull/114) ([EagleoutIce](https://github.com/EagleoutIce)) 184 | - doc: minor spacing and typo [\#111](https://github.com/EagleoutIce/tikzpingus/pull/111) ([samcarter](https://github.com/samcarter)) 185 | - remove font awesome dependency with penguin heart [\#109](https://github.com/EagleoutIce/tikzpingus/pull/109) ([EagleoutIce](https://github.com/EagleoutIce)) 186 | - add sit to cursive markup in preview [\#108](https://github.com/EagleoutIce/tikzpingus/pull/108) ([EagleoutIce](https://github.com/EagleoutIce)) 187 | - basic links for predefined styles [\#106](https://github.com/EagleoutIce/tikzpingus/pull/106) ([EagleoutIce](https://github.com/EagleoutIce)) 188 | - use shield for ctan version [\#103](https://github.com/EagleoutIce/tikzpingus/pull/103) ([EagleoutIce](https://github.com/EagleoutIce)) 189 | - warning for too small penguins [\#102](https://github.com/EagleoutIce/tikzpingus/pull/102) ([EagleoutIce](https://github.com/EagleoutIce)) 190 | - fix keyval specs in documentation [\#100](https://github.com/EagleoutIce/tikzpingus/pull/100) ([mbertucci47](https://github.com/mbertucci47)) 191 | - deal with hbox too wide warning when building documentation [\#99](https://github.com/EagleoutIce/tikzpingus/pull/99) ([EagleoutIce](https://github.com/EagleoutIce)) 192 | - more rounded bill [\#98](https://github.com/EagleoutIce/tikzpingus/pull/98) ([EagleoutIce](https://github.com/EagleoutIce)) 193 | - Update Readme [\#96](https://github.com/EagleoutIce/tikzpingus/pull/96) ([EagleoutIce](https://github.com/EagleoutIce)) 194 | - on CTAN marker [\#95](https://github.com/EagleoutIce/tikzpingus/pull/95) ([EagleoutIce](https://github.com/EagleoutIce)) 195 | - initial changelog [\#93](https://github.com/EagleoutIce/tikzpingus/pull/93) ([EagleoutIce](https://github.com/EagleoutIce)) 196 | 197 | ## [v1.0](https://github.com/EagleoutIce/tikzpingus/tree/v1.0) (2022-08-24) 198 | 199 | [Full Changelog](https://github.com/EagleoutIce/tikzpingus/compare/8cc346f47fa5d99c225ef8b073cbf926bce626c3...v1.0) 200 | 201 | **Implemented enhancements:** 202 | 203 | - Increase line thickness on Readme preview [\#89](https://github.com/EagleoutIce/tikzpingus/issues/89) 204 | - Validate changelog generation [\#84](https://github.com/EagleoutIce/tikzpingus/issues/84) 205 | - Automatically check for broken links [\#78](https://github.com/EagleoutIce/tikzpingus/issues/78) 206 | - Documentation fix libraries doubled in index [\#60](https://github.com/EagleoutIce/tikzpingus/issues/60) 207 | - Happy Greeting Penguin in the Documentation [\#58](https://github.com/EagleoutIce/tikzpingus/issues/58) 208 | - Allow a fresh build without cache [\#38](https://github.com/EagleoutIce/tikzpingus/issues/38) 209 | - Speed up CI [\#37](https://github.com/EagleoutIce/tikzpingus/issues/37) 210 | - Create a Pull-Request template [\#31](https://github.com/EagleoutIce/tikzpingus/issues/31) 211 | - Improve Preview of the Readme [\#18](https://github.com/EagleoutIce/tikzpingus/issues/18) 212 | - Add library to key explanation [\#10](https://github.com/EagleoutIce/tikzpingus/issues/10) 213 | - Filled Drawing Style [\#9](https://github.com/EagleoutIce/tikzpingus/issues/9) 214 | 215 | **Fixed bugs:** 216 | 217 | - Remove faulty links introduced by \#82 [\#83](https://github.com/EagleoutIce/tikzpingus/issues/83) 218 | - Fix broken links [\#79](https://github.com/EagleoutIce/tikzpingus/issues/79) 219 | - Fix license link to why not lgpl [\#71](https://github.com/EagleoutIce/tikzpingus/issues/71) 220 | - Index is wrong with question marks and pagestyle. [\#45](https://github.com/EagleoutIce/tikzpingus/issues/45) 221 | - CI compile of documentation fails miserably [\#25](https://github.com/EagleoutIce/tikzpingus/issues/25) 222 | - Fix layout of title pages [\#23](https://github.com/EagleoutIce/tikzpingus/issues/23) 223 | - Devil Fork Subkeys [\#15](https://github.com/EagleoutIce/tikzpingus/issues/15) 224 | - Selectors from Packages [\#8](https://github.com/EagleoutIce/tikzpingus/issues/8) 225 | - Cloak wings layer [\#5](https://github.com/EagleoutIce/tikzpingus/issues/5) 226 | 227 | **Closed issues:** 228 | 229 | - Remove internal Section [\#62](https://github.com/EagleoutIce/tikzpingus/issues/62) 230 | - Make General bug Template [\#59](https://github.com/EagleoutIce/tikzpingus/issues/59) 231 | - Update documentation of libraries [\#53](https://github.com/EagleoutIce/tikzpingus/issues/53) 232 | - Add a changelog [\#49](https://github.com/EagleoutIce/tikzpingus/issues/49) 233 | - Create .dtx, .ins files etc [\#48](https://github.com/EagleoutIce/tikzpingus/issues/48) 234 | - Add a script to upload to CTAN [\#47](https://github.com/EagleoutIce/tikzpingus/issues/47) 235 | - Clean up root directory [\#35](https://github.com/EagleoutIce/tikzpingus/issues/35) 236 | - Mask in Overview has wrong black [\#21](https://github.com/EagleoutIce/tikzpingus/issues/21) 237 | - latexmk build scripts for documentation [\#12](https://github.com/EagleoutIce/tikzpingus/issues/12) 238 | - Quick-Overview of everything [\#6](https://github.com/EagleoutIce/tikzpingus/issues/6) 239 | - Clipping Issues in documentation [\#4](https://github.com/EagleoutIce/tikzpingus/issues/4) 240 | - Hello, Can I use these codes in my articles/packages? [\#1](https://github.com/EagleoutIce/tikzpingus/issues/1) 241 | 242 | **Merged pull requests:** 243 | 244 | - solidify version information [\#92](https://github.com/EagleoutIce/tikzpingus/pull/92) ([EagleoutIce](https://github.com/EagleoutIce)) 245 | - increase line widths [\#91](https://github.com/EagleoutIce/tikzpingus/pull/91) ([EagleoutIce](https://github.com/EagleoutIce)) 246 | - fix fadings on mask and santa [\#90](https://github.com/EagleoutIce/tikzpingus/pull/90) ([EagleoutIce](https://github.com/EagleoutIce)) 247 | - 18 improve preview of the readme [\#88](https://github.com/EagleoutIce/tikzpingus/pull/88) ([EagleoutIce](https://github.com/EagleoutIce)) 248 | - 84 validate changelog generation [\#86](https://github.com/EagleoutIce/tikzpingus/pull/86) ([EagleoutIce](https://github.com/EagleoutIce)) 249 | - remove faulty links introduced by 82 [\#85](https://github.com/EagleoutIce/tikzpingus/pull/85) ([EagleoutIce](https://github.com/EagleoutIce)) 250 | - selectors from packages [\#82](https://github.com/EagleoutIce/tikzpingus/pull/82) ([EagleoutIce](https://github.com/EagleoutIce)) 251 | - fix layout of title pages [\#81](https://github.com/EagleoutIce/tikzpingus/pull/81) ([EagleoutIce](https://github.com/EagleoutIce)) 252 | - redirect links to examples [\#80](https://github.com/EagleoutIce/tikzpingus/pull/80) ([EagleoutIce](https://github.com/EagleoutIce)) 253 | - fix link to the documentation in the readme [\#77](https://github.com/EagleoutIce/tikzpingus/pull/77) ([EagleoutIce](https://github.com/EagleoutIce)) 254 | - typofix [\#76](https://github.com/EagleoutIce/tikzpingus/pull/76) ([EagleoutIce](https://github.com/EagleoutIce)) 255 | - use module in build.lua to avoid repetition [\#73](https://github.com/EagleoutIce/tikzpingus/pull/73) ([EagleoutIce](https://github.com/EagleoutIce)) 256 | - fix lgpl link in license [\#72](https://github.com/EagleoutIce/tikzpingus/pull/72) ([EagleoutIce](https://github.com/EagleoutIce)) 257 | - happy greeting penguin in the documentation [\#70](https://github.com/EagleoutIce/tikzpingus/pull/70) ([EagleoutIce](https://github.com/EagleoutIce)) 258 | - Software product line example [\#69](https://github.com/EagleoutIce/tikzpingus/pull/69) ([EagleoutIce](https://github.com/EagleoutIce)) 259 | - clean up to avoid build/build... [\#68](https://github.com/EagleoutIce/tikzpingus/pull/68) ([EagleoutIce](https://github.com/EagleoutIce)) 260 | - fixing build file [\#67](https://github.com/EagleoutIce/tikzpingus/pull/67) ([EagleoutIce](https://github.com/EagleoutIce)) 261 | - remove internal section [\#63](https://github.com/EagleoutIce/tikzpingus/pull/63) ([EagleoutIce](https://github.com/EagleoutIce)) 262 | - update documentation of libraries [\#61](https://github.com/EagleoutIce/tikzpingus/pull/61) ([EagleoutIce](https://github.com/EagleoutIce)) 263 | - add a changelog [\#57](https://github.com/EagleoutIce/tikzpingus/pull/57) ([EagleoutIce](https://github.com/EagleoutIce)) 264 | - Fix compile.yaml [\#56](https://github.com/EagleoutIce/tikzpingus/pull/56) ([EagleoutIce](https://github.com/EagleoutIce)) 265 | - create dtx ins files etc [\#55](https://github.com/EagleoutIce/tikzpingus/pull/55) ([EagleoutIce](https://github.com/EagleoutIce)) 266 | - adapt name to caps [\#52](https://github.com/EagleoutIce/tikzpingus/pull/52) ([EagleoutIce](https://github.com/EagleoutIce)) 267 | - clean up root directory [\#51](https://github.com/EagleoutIce/tikzpingus/pull/51) ([EagleoutIce](https://github.com/EagleoutIce)) 268 | - adding a indexstyle [\#50](https://github.com/EagleoutIce/tikzpingus/pull/50) ([EagleoutIce](https://github.com/EagleoutIce)) 269 | - fix cloak bug overlay [\#43](https://github.com/EagleoutIce/tikzpingus/pull/43) ([EagleoutIce](https://github.com/EagleoutIce)) 270 | - Speed up the CI by caching [\#42](https://github.com/EagleoutIce/tikzpingus/pull/42) ([EagleoutIce](https://github.com/EagleoutIce)) 271 | - trying to move [\#34](https://github.com/EagleoutIce/tikzpingus/pull/34) ([EagleoutIce](https://github.com/EagleoutIce)) 272 | - Create CODE\_OF\_CONDUCT.md [\#33](https://github.com/EagleoutIce/tikzpingus/pull/33) ([EagleoutIce](https://github.com/EagleoutIce)) 273 | - A simple first pull request template [\#32](https://github.com/EagleoutIce/tikzpingus/pull/32) ([EagleoutIce](https://github.com/EagleoutIce)) 274 | - Fixed some typos in the documentation [\#30](https://github.com/EagleoutIce/tikzpingus/pull/30) ([JensOstertag](https://github.com/JensOstertag)) 275 | - ordering flags [\#28](https://github.com/EagleoutIce/tikzpingus/pull/28) ([EagleoutIce](https://github.com/EagleoutIce)) 276 | - 25 ci compile of documentation fails miserably [\#26](https://github.com/EagleoutIce/tikzpingus/pull/26) ([EagleoutIce](https://github.com/EagleoutIce)) 277 | - Fix docu overview alignment [\#20](https://github.com/EagleoutIce/tikzpingus/pull/20) ([EagleoutIce](https://github.com/EagleoutIce)) 278 | - move devil keys to sub [\#19](https://github.com/EagleoutIce/tikzpingus/pull/19) ([EagleoutIce](https://github.com/EagleoutIce)) 279 | - 6 quick overview of everything [\#16](https://github.com/EagleoutIce/tikzpingus/pull/16) ([EagleoutIce](https://github.com/EagleoutIce)) 280 | - fix saber glow [\#14](https://github.com/EagleoutIce/tikzpingus/pull/14) ([EagleoutIce](https://github.com/EagleoutIce)) 281 | - ltexmk buildscript [\#13](https://github.com/EagleoutIce/tikzpingus/pull/13) ([EagleoutIce](https://github.com/EagleoutIce)) 282 | - fill style [\#11](https://github.com/EagleoutIce/tikzpingus/pull/11) ([EagleoutIce](https://github.com/EagleoutIce)) 283 | - Libraries [\#2](https://github.com/EagleoutIce/tikzpingus/pull/2) ([EagleoutIce](https://github.com/EagleoutIce)) 284 | 285 | 286 | 287 | \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* 288 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ti*k*Zpingus 2 | 3 | [![made-with-latex](https://img.shields.io/badge/Made%20with-LaTeX-1f425f.svg)](https://www.latex-project.org/) [![GPLv3 License](https://img.shields.io/badge/License-GPL%20v3-yellow.svg)](https://opensource.org/licenses/GPL-3.0) [![PR's Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com) [![CTAN](https://img.shields.io/ctan/v/tikzpingus.svg)](https://www.ctan.org/pkg/tikzpingus) [![build](https://github.com/EagleoutIce/tikzpingus/actions/workflows/compile.yaml/badge.svg)](https://github.com/EagleoutIce/tikzpingus/actions/workflows/compile.yaml) 4 | 5 | This package allows you to typeset (cute) little penguins in LaTeX with PGF/Ti*k*Z. 6 | The [documentation](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/doc/build/tikzpingus-doc.pdf) contains a reference for all currently available options. See the examples below for a quick overview. 7 | 8 | ---- 9 | 10 | Ti*k*Zpingus is actively developed by *Florian Sihler* (contact me at: ) under the [GPLv3 License](LICENSE). I am very happy about every contribution (see [CONTRIBUTING.md](CONTRIBUTING.md)). 11 | 12 | ---- 13 |
14 | 15 |
16 | 17 | 18 | [A happy penguin, waving its right wing.](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/hey-pingu.pdf#page=1) 19 |
20 | 21 | The purpose of this library is to produce one thing: cute penguins. Using the `\pingu`-macro, you can pass an arbitrary amount of options to endow the penguin with many extras or change its complete appearance. Furthermore, most options allow additional arguments, defining the color, text, ... 22 |
23 | 24 |
25 | 26 | [A small penguin with hat and cup](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/hey-pingu.pdf#page=2) 27 |
28 | 29 | While the [documentation](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/doc/build/tikzpingus-doc.pdf) contains a reference of all options that are available (or at least, that is the plan), most extras should be named relatively intuitive. For example, if you want a small penguin, you add the option `small`. 30 | If the penguin should be large, you write `large`. If you want the penguin to hold a cup, you write `cup`. If the cup should have a specific color, like blue, you add this via `cup=blue`, ... 31 |
32 | 33 |
34 | 35 | [A santa-looking penguin with beard, eye patch, santa hat and cane.](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/hey-pingu.pdf#page=3) 36 |
37 | 38 | Currently, most options I have added arose from concrete situations and are not part of "sets". However, some sets do exist, like the `santa` or `devil` collection. If there are more sets in the future, I might add them as first-class components. For now, the [documentation](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/doc/build/tikzpingus-doc.pdf#appendix.A) contains an [overview](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/doc/build/tikzpingus-doc.pdf#appendix.A) of the larger gadgets. 39 |
40 | 41 |
42 | 43 | [A technical penguin with lightsaber, laptop, vr headset, and headphones.](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/hey-pingu.pdf#page=4) 44 |
45 | 46 | If you just load the library by `\usepackage{tikzpingus}` all options will work, and you might want to use the `glows`-option (`\usepackage[glows]{tikzpingus}`) so that lightsabers and other glowing elements look waaay nicer (but may produce artifacts in some pdf-viewers). 47 |
48 | 49 |
50 | 51 | [A shocked penguin with a cake on the hat, mask, and a figurine horse in the right wing.](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/hey-pingu.pdf#page=5) 52 |
53 | 54 | Not all gadgets and wing positions work together. While I try to get as many of them working as possible, selecting two different styles of glasses or hats probably looks weird, no matter what code I add. 55 | Nonetheless, there is code implemented to deal with a lot of interactions (e.g., items in different wings, multiple items on the hat, ...), and there are several options to cope with them yourself if the need arises. 56 | Oh, and by the way, when options are named with `left` and `right` they are always from the penguin perspective. 57 |
58 | 59 |
60 | 61 | [A crowned penguin with sunglasses, gold medal, and a golden glow.](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/hey-pingu.pdf#page=6) 62 |
63 | 64 | Clothes are a work in progress for a long time now. While there are pants, shirts, a cape, and a cloak, they interfere with body types and other interaction codes. They work quite well for "not-too-fancy" and exotic combinations, but for more complex scenarios, I just had no time (for now). So feel free to wrap your head around that and open a PR! I would be happy to assist you! 65 | 66 | ## Testing Files 67 | 68 | These are some test files that showcase additional capabilities of the library:\ 69 | [A test file of many penguins.](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/showcase.pdf) 70 | 71 | [The current minimal penguin test.](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/minimal.pdf) 72 | 73 | For the title image of a computer science course on software product lines, I created a small and incomplete but really fun feature model:\ 74 | [A Penguin Feature-Model](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/spl.pdf) 75 | 76 | ## Contributors 77 | 78 | 79 | Contributor Information 80 | 81 | 82 | Made with [contrib.rocks](https://contrib.rocks). 83 | -------------------------------------------------------------------------------- /build.lua: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env texlua 2 | 3 | -- Execute with ====================================================== 4 | -- l3build tag 5 | -- l3build ctan 6 | -- l3build upload 7 | -- l3build clean 8 | -- Settings ========================================================== 9 | bundle = "" 10 | module = "tikzpingus" 11 | ctanpkg = module 12 | builddir = os.getenv("TMPDIR") 13 | 14 | -- Package version =================================================== 15 | local handle = io.popen("git describe --tags $(git rev-list --tags --max-count=1)") 16 | local oldtag = handle:read("*a") 17 | handle:close() 18 | newsubtag = string.sub(oldtag, 4) 19 | newmajortag = string.sub(oldtag, 0, 3) 20 | if (options["target"] == "tag") then 21 | newsubtag = newsubtag + 1 22 | end 23 | packageversion = newmajortag .. math.floor(newsubtag) 24 | -- packageversion="v1.3" 25 | 26 | -- Package date ====================================================== 27 | packagedate = os.date("!%Y-%m-%d") 28 | -- packagedate = "2020-01-02" 29 | 30 | -- interacting with git ============================================== 31 | function git(...) 32 | local args = {...} 33 | table.insert(args, 1, 'git') 34 | local cmd = table.concat(args, ' ') 35 | print('Executing:', cmd) 36 | os.execute(cmd) 37 | end 38 | 39 | -- replace version tags in .sty and -doc.tex files =================== 40 | tagfiles = {"*.sty", "doc/*.tex"} 41 | function update_tag(file, content, tagname, tagdate) 42 | tagdate = string.gsub(packagedate, "-", "/") 43 | if string.match(file, "%.sty$") then 44 | content = string.gsub(content, "\\ProvidesPackage{(.-)}%[%d%d%d%d%/%d%d%/%d%d version v%d%.%d+", 45 | "\\ProvidesPackage{%1}[" .. tagdate .. " version " .. packageversion) 46 | return content 47 | elseif string.match(file, "doc/*.tex$") then 48 | content = string.gsub(content, "\\date{Version v%d%.%d+ \\textendash\\ %d%d%d%d%/%d%d%/%d%d", 49 | "\\date{Version " .. packageversion .. " \\textendash{} " .. tagdate) 50 | return content 51 | end 52 | return content 53 | end 54 | 55 | -- committing retagged file and tag the commit ======================= 56 | require('build-private.lua') 57 | 58 | function tag_hook(tagname) 59 | git("add", "*.sty") 60 | git("add", "doc/*.tex") 61 | os.execute("github_changelog_generator --user EagleoutIce --project \"" .. module .. "\" --token \"" .. token .. 62 | "\" --future-release \"" .. packageversion .. "\"") 63 | git("add", "CHANGELOG.md") 64 | git("commit -m 'step version " .. packageversion .. "'") 65 | git("tag", packageversion) 66 | end 67 | 68 | -- collecting files for ctan ========================================= 69 | docfiledir = "./doc" 70 | sourcefiledir = "./tex" 71 | 72 | docfiles = {module .. "-doc.tex", "indexstyle.ist", "build/" .. module .. "-doc.pdf"} 73 | indexstyle = {"doc/indexstyle.ist"} 74 | 75 | textfiles = {"doc/README-ctan.md"} 76 | ctanreadme = "doc/README-ctan.md" 77 | 78 | installfiles = {"*.sty", "*.tex"} 79 | sourcefiles = installfiles 80 | unpackfiles = {} 81 | 82 | excludefiles = {"sub_*"} 83 | 84 | -- Release a TDS-style zip 85 | packtdszip = false 86 | 87 | -- Preserve structure for CTAN 88 | flatten = true 89 | 90 | -- configuring ctan upload =========================================== 91 | uploadconfig = { 92 | author = uploadconfig.author, 93 | uploader = uploadconfig.uploader, 94 | email = uploadconfig.email, 95 | pkg = ctanpkg, 96 | version = packageversion .. " " .. packagedate, 97 | license = "gpl3.0", 98 | summary = "Penguins with TikZ", 99 | ctanPath = "/graphics/pgf/contrib/" .. ctanpkg, 100 | repository = "https://github.com/EagleoutIce/" .. module, 101 | note = [[Uploaded automatically by l3build...]], 102 | bugtracker = "https://github.com/EagleoutIce/" .. module .. "/issues", 103 | support = "https://github.com/EagleoutIce/" .. module .. "/issues", 104 | announcement_file = "announcement.txt" 105 | } 106 | 107 | -- cleanup =========================================================== 108 | cleanfiles = {module .. "-ctan.curlopt", module .. "-ctan.zip"} 109 | -------------------------------------------------------------------------------- /doc/.latexmkrc: -------------------------------------------------------------------------------- 1 | @default_files = ('tikzpingus-doc.tex'); 2 | $pdf_mode = 1; 3 | $pdf_update_method = 1; 4 | $out_dir = 'build'; 5 | $postscript_mode = 0; 6 | $dvi_mode = 0; 7 | $pdflatex = 'pdflatex %O -shell-escape %S'; 8 | $makeindex = "makeindex -s ../indexstyle.ist %O -o %D %S"; 9 | $max_repeat = 12 -------------------------------------------------------------------------------- /doc/README-ctan.md: -------------------------------------------------------------------------------- 1 | # Ti*k*Zpingus 2 | 3 | [![made-with-latex](https://img.shields.io/badge/Made%20with-LaTeX-1f425f.svg)](https://www.latex-project.org/) [![GPLv3 License](https://img.shields.io/badge/License-GPL%20v3-yellow.svg)](https://opensource.org/licenses/GPL-3.0) [![PR's Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com) [![CTAN](https://badgen.net/badge/On/CTAN/cyan)](https://www.ctan.org/pkg/tikzpingus) [![build](https://github.com/EagleoutIce/tikzpingus/actions/workflows/compile.yaml/badge.svg)](https://github.com/EagleoutIce/tikzpingus/actions/workflows/compile.yaml) 4 | 5 | This package allows you to typeset (cute) little penguins in LaTeX with PGF/Ti*k*Z. 6 | The [documentation](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/doc/build/tikzpingus-doc.pdf) contains a reference for all currently available options. See the examples below for a quick overview. 7 | 8 | ---- 9 | 10 | Ti*k*Zpingus is actively developed by *Florian Sihler* (contact me at: ) under the [GPLv3 License](LICENSE). I am very happy about every contribution (see [CONTRIBUTING.md](CONTRIBUTING.md)). 11 | 12 | ---- 13 | 14 | [![Penguin Hey](https://github.com/EagleoutIce/tikzpingus/blob/gh-pages/hey-pingu-1.png?raw=true)](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/hey-pingu.pdf#page=1) 15 | 16 | The purpose of this library is to produce one thing: cute penguins. Using the `\pingu`-macro, you can pass an arbitrary amount of options to endow the penguin with many extras or change its complete appearance. Furthermore, most options allow additional arguments, defining the color, text, ... 17 | 18 | [![Penguin Hat](https://github.com/EagleoutIce/tikzpingus/blob/gh-pages/hey-pingu-2.png?raw=true)](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/hey-pingu.pdf#page=2) 19 | 20 | While the [documentation](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/doc/build/tikzpingus-doc.pdf) contains a reference of all options that are available (or at least, that is the plan), most extras should be named relatively intuitive. For example, if you want a small penguin, you add the option `small`. 21 | If the penguin should be large, you write `large`. If you want the penguin to hold a cup, you write `cup`. If the cup should have a specific color, like blue, you add this via `cup=blue`, ... 22 | 23 | [![Penguin Santa](https://github.com/EagleoutIce/tikzpingus/blob/gh-pages/hey-pingu-3.png?raw=true)](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/hey-pingu.pdf#page=3) 24 | 25 | Currently, most options I have added arose from concrete situations and are not part of "sets". However, some sets do exist, like the `santa` or `devil` collection. If there are more sets in the future, I might add them as first-class components. For now, the [documentation](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/doc/build/tikzpingus-doc.pdf#appendix.A) contains an [overview](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/doc/build/tikzpingus-doc.pdf#appendix.A) of the larger gadgets. 26 | 27 | [![Penguin Tech](https://github.com/EagleoutIce/tikzpingus/blob/gh-pages/hey-pingu-4.png?raw=true)](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/hey-pingu.pdf#page=4) 28 | 29 | If you just load the library by `\usepackage{tikzpingus}` all options will work, and you might want to use the `glows`-option (`\usepackage[glows]{tikzpingus}`) so that lightsabers and other glowing elements look waaay nicer (but may produce artifacts in some pdf-viewers). 30 | 31 | [![Penguin Cake](https://github.com/EagleoutIce/tikzpingus/blob/gh-pages/hey-pingu-5.png?raw=true)](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/hey-pingu.pdf#page=5) 32 | 33 | Not all gadgets and wing positions work together. While I try to get as many of them working as possible, selecting two different styles of glasses or hats probably looks weird, no matter what code I add. 34 | Nonetheless, there is code implemented to deal with a lot of interactions (e.g., items in different wings, multiple items on the hat, ...), and there are several options to cope with them yourself if the need arises. 35 | Oh, and by the way, when options are named with `left` and `right` they are always from the penguin-perspective. 36 | 37 | [![Penguin Crown](https://github.com/EagleoutIce/tikzpingus/blob/gh-pages/hey-pingu-6.png?raw=true)](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/hey-pingu.pdf#page=6) 38 | 39 | Clothes are a work in progress for a long time now. While there are pants, shirts, a cape, and a cloak, they interfere with body types and other interaction codes. They work quite well for "not-too-fancy" and exotic combinations, but for more complex scenarios, I just had no time (for now). So feel free to wrap your head around that and open a PR! I would be happy to assist you! 40 | 41 | ## More Fun 42 | 43 | For the title image of a computer science course on software product lines, I created a small and incomplete but really fun feature model: 44 | 45 | [![Penguin-SPL](https://github.com/EagleoutIce/tikzpingus/blob/gh-pages/spl-1.png?raw=true)](https://media.githubusercontent.com/media/EagleoutIce/tikzpingus/gh-pages/examples/build/spl.pdf) 46 | -------------------------------------------------------------------------------- /doc/indexstyle.ist: -------------------------------------------------------------------------------- 1 | % comment - in case of need :D 2 | heading_prefix "\n% Header (guard) 3 | \\ifcsname needspace\\endcsname \\needspace{3\\baselineskip}\\fi 4 | \\ifcsname tikz\\endcsname 5 | \\def\\ledx@head#1{\\tikz{\\node[text width=3cm,align=center] (hr)at(0,0){\\textbf{#1}};\\draw[rounded corners=3pt,thick,line cap=round]([yshift=-.125cm]hr.north west)|-(hr.north east)--++(0,-.125cm);\\draw[rounded corners=2.5pt,thick,line cap=round] ([yshift=.125cm]hr.south west)|-(hr.south east)--++(0,.125cm);}} 6 | \\else\\let\\ledx@head\\textbf\\fi\\medskip\\par\\color{black}{\\centering\\ledx@head{" 7 | heading_suffix "}\\nopagebreak\\medskip\\par}\\nopagebreak " 8 | headings_flag 1 9 | preamble "\\begin{theindex}% 10 | \\providecommand*\\indexgroup[1]{\\item\\textbf{#1}\\nopagebreak}~\\par\\providecommand\\idxfsize{\\normalsize}\\makeatletter 11 | \\ifcsname hyperpage\\endcsname 12 | \\LetLtxMacro\\ledx@h\\hyperpage 13 | \\newif\\ifledx@rc@ 14 | \\def\\ledx@@s{% 15 | \\def\\ledx@fs{Y}\\gdef\\ledx@@u{}\\gdef\\ledx@@b{}% 16 | \\def\\hyperpage##1{\\g@addto@macro\\ledx@@u{##1}\\global\\let\\ledx@@b\\ledx@@u\\ledx@h{##1}}}% 17 | \\def\\ledx@@sl{% 18 | \\def\\ledx@fs{Y}\\ledx@rc@true\\global\\let\\ledx@@u\\ledx@@b 19 | \\def\\hyperpage##1{\\ifledx@rc@\\def\\ledx@@u{}\\ledx@rc@false\\fi\\g@addto@macro\\ledx@@u{##1}\\ledx@h{##1}}}% 20 | \\def\\ledx@@d{% 21 | \\def\\ledx@fs{}% 22 | \\def\\hyperpage##1{\\g@addto@macro\\ledx@cpb{##1}\\ledx@h{##1}}}% 23 | \\else\\def\\ledx@@s{}\\def\\ledx@@d{}\\fi 24 | \\def\\ledx@@msub{\\ifx\\ledx@fs\\@empty,\\space\\else\\subsubitem\\ledx@@d\\color{gray}\\footnotesize\\fi}% 25 | \\def\\ledx@lb@encap#1{\\gdef\\ledx@cpb{}\\sbox\\z@{#1}\\ifx\\ledx@@u\\ledx@cpb\\else\\textsuperscript{(#1)\\kern-.1em}\\fi} 26 | " 27 | postamble "\n\n\\end{theindex}\n" 28 | group_skip "%\n\\indexspace\n" 29 | numhead_positive "\\small Numbers" 30 | numhead_negative "\\small Numbers" 31 | symhead_positive "\\small Symbole" 32 | symhead_negative "\\small Symbole" 33 | delim_0 "\\thinspace\\dotfill\\thinspace {" 34 | delim_1 "\:~~{" 35 | delim_2 "\\ledx@lb@encap{\\relax " 36 | item_0 "\n\n \\item\\ledx@@s\\color{black}\\idxfsize " 37 | item_01 "\n \\subitem\\ledx@@s\\color{black}\\small " 38 | item_x1 "\n \\subitem\\ledx@@sl\\color{black}\\small " 39 | item_1 "\n \\subitem\\ledx@@sl\\color{black}\\small " 40 | item_12 "\n \\subsubitem\\ledx@@d\\color{gray}\\footnotesize " 41 | item_x2 "\n \\subsubitem\\ledx@@d\\color{gray}\\footnotesize " 42 | item_2 "\\ledx@@msub " 43 | encap_prefix "\\" 44 | encap_infix "{" 45 | encap_suffix "}" 46 | quote '#' 47 | actual '?' 48 | delim_t "}\\relax " 49 | delim_n ", " 50 | indent_space "\t\t" 51 | indent_length 16 -------------------------------------------------------------------------------- /examples/.latexmkrc: -------------------------------------------------------------------------------- 1 | @default_files = ('cloak.tex','minimal.tex','showcase.tex','spl.tex','hey-pingu.tex'); 2 | $pdf_mode = 1; 3 | $pdf_update_method = 1; 4 | $out_dir = 'build'; 5 | $postscript_mode = 0; 6 | $dvi_mode = 0; 7 | $pdflatex = 'pdflatex %O -shell-escape %S'; -------------------------------------------------------------------------------- /examples/cloak.tex: -------------------------------------------------------------------------------- 1 | \errorcontextlines 999999 2 | \documentclass{article} 3 | \makeatletter\def\input@path{{../tex/}}\makeatother 4 | \usepackage[glows]{tikzpingus} 5 | \usepackage[active, tightpage]{preview} 6 | \pingudefaults{cloak,eyes wink} 7 | 8 | \begin{document} 9 | \begin{preview} 10 | \begin{tikzpicture} 11 | \pingu[wings normal] 12 | \pingu[right wing wave, left wing hug, xshift=3.5cm] 13 | \pingu[wings shock, xshift=7cm] 14 | \pingu[wings wave, xshift=10.5cm] 15 | \pingu[wings grab, xshift=14cm] 16 | \pingu[wings raise, xshift=17.5cm] 17 | \end{tikzpicture} 18 | \end{preview} 19 | \end{document} -------------------------------------------------------------------------------- /examples/hey-pingu.tex: -------------------------------------------------------------------------------- 1 | \documentclass{article} 2 | 3 | \usepackage[T1]{fontenc} 4 | \usepackage[utf8]{inputenc} 5 | 6 | \makeatletter\def\input@path{{../tex/}}\makeatother 7 | \usepackage[glows]{tikzpingus} 8 | \usepackage{FiraMono} % for the code font 9 | 10 | \usepackage[active,tightpage]{preview} 11 | 12 | \usepackage[tex]{listings} % for code highlighting 13 | \usepackage[prefix=]{xcolor-material} % for the nice green 14 | \usetikzlibrary{tikzmark,arrows.meta} % for the arrows 15 | 16 | \PreviewBorder.5cm 17 | 18 | \newsavebox\showcasePengu 19 | \setbox\showcasePengu=\hbox{\tikz{\pingu[eyes wink,wings wave,body type=legacy,feet=sit,small,conical hat,heart,staff left,left item angle=-45]}} 20 | 21 | % TODO: automate a lot of this 22 | \lstset{language={[LaTeX]TeX},basicstyle=\ttfamily,moretexcs={tikz,pingu},breaklines,escapeinside={$}{$},morekeywords={[2]{legacy,sit}},keywordstyle={[2]\itshape}} 23 | \colorlet{@}{Green} 24 | \def\K#1{\tikzmarknode{#1}{\color{@}\ttfamily#1}} 25 | 26 | \tikzset{W/.style={every path/.append style={line cap=round,-Kite,very thick,draw,lightgray!87!@},transparency group,opacity=.6}} 27 | 28 | \begin{document} 29 | \preview 30 | \begin{tikzpicture}[remember picture] 31 | \pingu[eyes wink,right wing wave,blush,heart=lightgray,body type=legacy,name=pingu] 32 | \node[left,text width=4.5cm] at(current bounding box.west) {\begin{lstlisting} 33 | \tikz{\pingu[ 34 | $\K{eyes wink}$, 35 | $\K{right wing wave}$, 36 | $\K{blush}$, 37 | $\K{heart}$, 38 | $\K{body type}$=legacy 39 | ]} 40 | \end{lstlisting}}; 41 | \scope[W] 42 | \path ([xshift=2mm]eyes wink) to[bend left=10] ([xshift=-1mm,yshift=1mm]pingu-eye-right); 43 | \path ([xshift=2mm]eyes wink) to[bend left=10] ([xshift=-1mm,yshift=1mm]pingu-eye-left); 44 | 45 | \path ([xshift=1mm,yshift=1mm]right wing wave.east) to[bend left=5] ([xshift=-1mm,yshift=.25mm]pingu-wing-right-tip); 46 | \path ([xshift=1mm]blush.east) to[bend right=5] ([yshift=-3mm,xshift=-1.85mm]pingu-eye-right); 47 | \path ([xshift=1mm]blush.east) to[bend right=5] ([yshift=-3mm,xshift=1.85mm]pingu-eye-left); 48 | 49 | \path ([xshift=1mm]heart.east) to[bend right=5] ([xshift=-2.5mm,yshift=-.5mm]pingu-belly-center); 50 | \path ([xshift=.4mm,yshift=-1.6mm]body type.east) to[bend right=10] ([xshift=.5mm,yshift=-5mm]pingu-waist-right); 51 | \endscope 52 | \end{tikzpicture} 53 | \endpreview 54 | 55 | \colorlet{@}{DeepOrange} 56 | \preview 57 | \begin{tikzpicture}[remember picture] 58 | \pingu[eyes shiny,small,conical hat,wings grab,cup=orange,name=pingu] 59 | \node[left,text width=4.5cm] at(current bounding box.west) {\begin{lstlisting} 60 | \tikz{\pingu[ 61 | $\K{eyes shiny}$, 62 | $\K{small}$, 63 | $\K{conical hat}$, 64 | $\K{wings grab}$, 65 | $\K{cup}$=orange 66 | ]} 67 | \end{lstlisting}}; 68 | \scope[W] 69 | \path ([xshift=2mm]eyes shiny) to[bend left=10] ([xshift=-1mm,yshift=1mm]pingu-eye-right); 70 | \path ([xshift=2mm]eyes shiny) to[bend left=10] ([xshift=-1mm,yshift=1mm]pingu-eye-left); 71 | 72 | \path ([xshift=1mm]conical hat.north east) to[bend left=35] ([yshift=2.65mm]pingu-head-top); 73 | 74 | 75 | \path ([xshift=.4mm,yshift=-1.6mm]cup.east) to[bend right=10] ([xshift=-3.65mm,yshift=-4mm]pingu-belly-center); 76 | 77 | \pgfonlayer{foreground} 78 | \scope[every path/.append style={line cap=round,-Kite,draw,lightgray!90!@},transparency group,opacity=.5] 79 | \path ([xshift=1mm,yshift=1mm]wings grab.east) to[bend left=5] ([xshift=-2.5mm,yshift=2.5mm]pingu-wing-right-tip); 80 | \path ([xshift=1mm,yshift=1mm]wings grab.east) to[bend left=5] ([xshift=2.5mm,yshift=2.5mm]pingu-wing-left-tip); 81 | 82 | \path[-] ([xshift=1mm]small.east) to[bend right=8] ++(51.5mm,-2mm) coordinate(@); 83 | \path[|-|] (@|-pingu-head-top) -- ([yshift=-1.9mm]@|-pingu-foot-right); 84 | 85 | \endscope 86 | \endpgfonlayer 87 | \endscope 88 | \end{tikzpicture} 89 | \endpreview 90 | 91 | \colorlet{@}{Red!50!Teal} 92 | \preview 93 | \begin{tikzpicture}[remember picture] 94 | \pingu[body=black,santa hat,santa beard,eye patch left,cane right,name=pingu] 95 | \node[left,text width=4.5cm] at(current bounding box.west) {\begin{lstlisting} 96 | \tikz{\pingu[ 97 | $\K{body}$=black, 98 | $\K{santa hat}$, 99 | $\K{santa beard}$, 100 | $\K{eye patch left}$, 101 | $\K{cane right}$ 102 | ]} 103 | \end{lstlisting}}; 104 | \scope[W] 105 | \path ([yshift=.15mm]body.south east) to[out=-6,in=170] ([xshift=-.25mm,yshift=2.55mm]pingu-wings-side-right); 106 | \path ([yshift=.15mm,xshift=.5mm]santa hat.east) to[out=30,in=160] ([xshift=-4.66mm,yshift=2.85mm]pingu-head-top); 107 | 108 | \path ([yshift=.15mm,xshift=.5mm]santa beard.east) to[out=20,in=145] ([xshift=-4.5mm,yshift=.5mm]pingu-bill-bottom); 109 | 110 | \path ([yshift=.15mm,xshift=.5mm]eye patch left.north east) to[out=20,in=160] ([xshift=-2.5mm,yshift=.5mm]pingu-eye-left); 111 | 112 | \path ([yshift=.15mm,xshift=.5mm]cane right.east) to[bend right=10] ([xshift=-1.5mm,yshift=8.5mm]pingu-wing-right-tip); 113 | \endscope 114 | \end{tikzpicture} 115 | \endpreview 116 | 117 | \colorlet{@}{LightBlue} 118 | \preview 119 | \begin{tikzpicture}[remember picture] 120 | \pingu[vr-headset,headphone,laptop left,lightsaber right,tie=cyan,name=pingu] 121 | \node[left,text width=4.5cm] at(current bounding box.west) {\begin{lstlisting} 122 | \tikz{\pingu[ 123 | $\K{vr-headset}$, 124 | $\K{headphone}$, 125 | $\K{laptop left}$, 126 | $\K{lightsaber right}$, 127 | $\K{tie}$=cyan 128 | ]} 129 | \end{lstlisting}}; 130 | \scope[W] 131 | \path (vr-headset.east) to[bend left] ([xshift=5.65mm,yshift=4.75mm]pingu-wings-side-right); 132 | \path ([yshift=.15mm,xshift=.5mm]headphone.east) to[out=30,in=160] ([xshift=-3.66mm,yshift=1.25mm]pingu-head-top); 133 | 134 | \path ([yshift=.15mm,xshift=.5mm]lightsaber right.north east) to[out=20,in=242] ([xshift=-14.5mm,yshift=8mm]pingu-bill-bottom); 135 | 136 | \path ([yshift=.15mm,xshift=.5mm]laptop left.east) to[bend left=10] ([xshift=-1.5mm,yshift=9mm]pingu-wing-left-tip); 137 | 138 | \path ([yshift=-.15mm,xshift=.5mm]tie.south east) to[bend right=10] ([yshift=-3.5mm,xshift=-1.75mm]pingu-belly-center); 139 | \endscope 140 | \end{tikzpicture} 141 | \endpreview 142 | 143 | \colorlet{@}{Pink} 144 | \preview 145 | \begin{tikzpicture}[remember picture] 146 | \pingu[cake-hat,feet=sit,horse right=gray,mask,eyes shock,name=pingu] 147 | \node[left,text width=4.5cm] at(current bounding box.west) {\begin{lstlisting} 148 | \tikz{\pingu[ 149 | $\K{cake-hat}$, 150 | $\K{eyes shock}$, 151 | $\K{mask}$, 152 | $\K{horse right}$=gray, 153 | $\K{feet}$=sit 154 | ]} 155 | \end{lstlisting}}; 156 | \scope[W] 157 | \path ([xshift=1mm]cake-hat.east) to[bend left=10] ([xshift=3.65mm,yshift=9.75mm]pingu-wings-side-right); 158 | 159 | \path ([xshift=2mm]eyes shock.north east) to[bend left=10] ([xshift=-1mm,yshift=1mm]pingu-eye-right); 160 | \path ([xshift=2mm]eyes shock.north east) to[bend left=10] ([xshift=-1mm,yshift=1mm]pingu-eye-left); 161 | 162 | 163 | \path ([yshift=.15mm,xshift=.5mm]mask.east) to[bend left=10] ([yshift=-2.5mm,xshift=-6mm]pingu-head-center); 164 | 165 | \path ([yshift=.15mm,xshift=.5mm]horse right.south east) to[bend right=6] ([xshift=-6.5mm,yshift=4mm]pingu-wing-right-tip); 166 | 167 | \path ([yshift=.15mm,xshift=.5mm]feet.south east) to[bend right=6] ([yshift=-1mm]pingu-foot-right); 168 | \path ([yshift=-.05mm,xshift=.5mm]feet.south east) to[bend right=6] ([yshift=-1.5mm]pingu-foot-left); 169 | \endscope 170 | \end{tikzpicture} 171 | \endpreview 172 | 173 | \colorlet{@}{Amber} 174 | \preview 175 | \begin{tikzpicture}[remember picture] 176 | \pingu[crown,sunglasses,glasses opacity=.95,medal,glow=yellow,name=pingu] 177 | \node[left,text width=5cm] at(current bounding box.west) {\begin{lstlisting} 178 | \tikz{\pingu[ 179 | $\K{crown}$, 180 | $\K{sunglasses}$, 181 | $\K{glasses opacity}$=.95, 182 | $\K{medal}$, 183 | $\K{glow}$=yellow 184 | ]} 185 | \end{lstlisting}}; 186 | \scope[W] 187 | \path ([xshift=1mm,yshift=.33mm]crown.east) to[bend left=10] ([xshift=3.35mm,yshift=9.75mm]pingu-wings-side-right); 188 | 189 | \path ([xshift=2mm]sunglasses.north east) to[bend left=15] ([xshift=-1.25mm,yshift=3mm]pingu-eye-right); 190 | 191 | 192 | \path[-Circle] ([yshift=.15mm,xshift=.5mm]glasses opacity.north east) to[bend left=10] ([xshift=.66mm]pingu-eye-right); 193 | 194 | \path ([yshift=.15mm,xshift=.5mm]medal.east) to[bend right=6] ([xshift=-3mm,yshift=1mm]pingu-belly-center); 195 | 196 | \path ([yshift=-.25mm,xshift=.5mm]feet.south east) to[bend right=6] ([yshift=.75mm,xshift=-4.33mm]pingu-foot-right); 197 | \endscope 198 | \end{tikzpicture} 199 | \endpreview 200 | 201 | 202 | % this is to be the teaser image for ctan 203 | \colorlet{@}{Blue} 204 | \pagecolor{green} 205 | \preview 206 | \begin{tikzpicture}[remember picture] 207 | \pingu[vr-headset,headphone,laptop left,lightsaber right,tie=cyan,name=pingu] 208 | \node[left,text width=4.5cm] at(current bounding box.west) {\begin{lstlisting} 209 | \tikz{\pingu[ 210 | $\K{vr-headset}$, 211 | $\K{headphone}$, 212 | $\K{laptop left}$, 213 | $\K{lightsaber right}$, 214 | $\K{tie}$=cyan 215 | ]} 216 | \end{lstlisting}}; 217 | \scope[W] 218 | \path (vr-headset.east) to[bend left] ([xshift=5.65mm,yshift=4.75mm]pingu-wings-side-right); 219 | \path ([yshift=.15mm,xshift=.5mm]headphone.east) to[out=30,in=160] ([xshift=-3.66mm,yshift=1.25mm]pingu-head-top); 220 | 221 | \path ([yshift=.15mm,xshift=.5mm]lightsaber right.north east) to[out=20,in=242] ([xshift=-14.5mm,yshift=8mm]pingu-bill-bottom); 222 | 223 | \path ([yshift=.15mm,xshift=.5mm]laptop left.east) to[bend left=10] ([xshift=-1.5mm,yshift=9mm]pingu-wing-left-tip); 224 | 225 | \path ([yshift=-.15mm,xshift=.5mm]tie.south east) to[bend right=10] ([yshift=-3.5mm,xshift=-1.75mm]pingu-belly-center); 226 | \endscope 227 | \node[left=-6.5mm,yshift=-6.5mm,scale=.75] (tpingu) at(current bounding box.west) {\usebox\showcasePengu}; 228 | \node[above=1.25mm,opacity=.5,xshift=-4mm] at(tpingu.north) {\Large\sffamily Ti\textit{k}Zpingus}; 229 | 230 | \pgfonlayer{very-background} 231 | \draw[rounded corners,lightgray,fill=pingu@white](current bounding box.center)++(-6cm,-2cm) rectangle ++(12cm,4cm); 232 | \endpgfonlayer 233 | \end{tikzpicture} 234 | \endpreview 235 | \end{document} 236 | 237 | % tech penguin (blau, laptop, lightsaber, headset) und devil penguin (red) 238 | % one funny with cake hat? use pink it should sit or maybe tilt? showcase other feet? -------------------------------------------------------------------------------- /examples/minimal.tex: -------------------------------------------------------------------------------- 1 | \errorcontextlines99999 2 | \documentclass{article} 3 | \usepackage[glows]{../tex/tikzpingus} 4 | \usepackage[active, tightpage]{preview} 5 | 6 | \usepackage{FiraSans} 7 | 8 | \PreviewBorder.5cm 9 | \begin{document} 10 | \begin{preview} 11 | \tikz{\pingu[:mix-draw=20!white,right wing hug, eyes wink,flip-flops,flower right, conical hat,body type=legacy,tie=pingu@purple]}\qquad 12 | \tikz{\pingu[:mix-draw=20!white,eyes shiny,wings grab, cup=pingu@blue,cup straw=!hide,cup steam, body type=legacy,shoes,small]}\qquad 13 | \tikz{\pingu[:mix-draw=20!white,right eye wink, left eye vertical, sunglasses,left wing wave, lollipop left,body type=legacy,sneaker]} 14 | \end{preview} 15 | \end{document} 16 | -------------------------------------------------------------------------------- /examples/showcase.tex: -------------------------------------------------------------------------------- 1 | \errorcontextlines 999999 2 | \documentclass{article} 3 | \makeatletter\def\input@path{{../tex/}}\makeatother 4 | \usepackage[glows]{tikzpingus} 5 | \usepackage[active, tightpage]{preview} 6 | \usepackage{fontawesome} 7 | 8 | % \pingudefaults{body type=legacy} 9 | 10 | \begin{document} 11 | \begin{preview} 12 | \begin{tikzpicture}[] 13 | \pingu[eyes wink=brown!70!black,wings wave,name=left-pengu,belly=\faStar,eye patch right,lollipop left,lollipop right=pingu@purple,lollipop right second=pingu@purple, lollipop right handle=pingu@yellow,lollipop left second=!hide] 14 | \pingu[xshift=3.5cm,eyes=shiny,wings grab,belly={\color{gray}\scalebox{2.5}{\faSquare}},lollipop right=pingu@blue,pants, pants button left=pingu@bronze,pants bands,pants extra height=3mm,princess crown] 15 | 16 | \scope 17 | \pingudefaultsappend{meta-dots} 18 | \pingu[xshift=7cm,eyes=shock,wings shock,hair 1=green,hair 2=blue,hair 3=orange,hair 4=!hide,hair 5=olive,belly=\faHeart,meta-dots=false,hand cast left=L,hand cast right=R,cane left,cane right,body front=green,left wing color=orange,right wing color=purple,right eye second color=teal,feet simple=brown] 19 | \pingu[xshift=10.5cm,eyes=shiny,body=pingu@black,hair=purple,hair 3=purple!80!black,name=right-pengu,rook,glasses] 20 | \pingu[xshift=14cm,yshift=.225cm,height=1.5cm,right eye={wink}, left eye=normal,wings raise,belly=\faSunO,hairstyle=none,name=large-pengu] 21 | \pingu[xshift=17.5cm,eyes angry=pingu@white,name=add-pengu,wings hug,bill angry,body front=pingu@main,devil horns=pingu@main,meta-dots=false,hand cast left=\faLinux,hand cast right=\faWindows] 22 | \begin{pgfonlayer}{foreground} 23 | \begin{scope}[every path/.style={draw,gray,thin}] 24 | \path ([xshift=-1.5cm]left-pengu-eye-right) coordinate (l) -- ([xshift=8.5cm]right-pengu-eye-left) coordinate (r); 25 | \path (l|-left-pengu-bill) -- (r|-right-pengu-bill); 26 | \path (l|-left-pengu-belly-center) -- (r|-right-pengu-belly-center); 27 | \path (l|-left-pengu-head) -- (r|-right-pengu-head); 28 | \path (l|-left-pengu-head-top) -- (r|-right-pengu-head-top); 29 | \path (l|-left-pengu-foot-right) -- (r|-right-pengu-foot-left); 30 | \path (l|-left-pengu-bill-bottom) -- (r|-right-pengu-bill-bottom); 31 | \path ([yshift=.5cm]left-pengu-head) -- ([yshift=-.125cm]left-pengu-bottom-center); 32 | \path ([yshift=.3cm]large-pengu-head) -- ([yshift=-.125cm]large-pengu-bottom-center); 33 | \end{scope} 34 | \end{pgfonlayer} 35 | 36 | \pingu[yshift=-4cm-.175cm,name=pengu-1,small size,bow tie,hat,eye frame,pants,pants without buttons,left wing grab, lightsaber left=pingu@white!90!pingu@black,sign post right] 37 | \pingu[yshift=-4cm,xshift=3.5cm,name=pengu-2,normal size,wings=shock,right eye=wink,tie,tie dots={white},glasses,bill flat,crown 2d=pingu@bronze,crown gem shade=false] 38 | \pingu[yshift=-4cm+.225cm,xshift=7cm,name=pengu-3,large size,wings=wave,eyes=shiny,gold medal,tie,crown,belly=\Large\faHeart] 39 | \pingu[yshift=-4cm,xshift=10.5cm,name=pengu-4,wings=grab,left eye=wink,strawhat,cup,tie=pingu@purple,tie length=1.2cm,tie width=.4cm,tie offset=.325cm,sunglasses] 40 | \pingu[yshift=-4cm,xshift=14cm,name=pengu-5,wings=raise,eye patch left,halo, silver medal] 41 | \pingu[yshift=-4cm,xshift=17.5cm,name=pengu-6,left eye devil, right eye angry,left wing hug,right wing wave, sun glasses round=brown!65!black, devil horns, devil horns b=green, straw hat, bill angry,bronze medal,meta-dots=false,cane left,cane right,glasses round left opacity=0] 42 | 43 | \pingu[yshift=-8cm,name=pengu-a,:ghost,hat,eye frame,pants,pants without buttons,left wing grab, lightsaber left=pingu@white!90!pingu@black] 44 | \pingu[yshift=-8cm,xshift=3.5cm,right eye=wink,name=pengu-b,:ghost,tie,tie dots={white},glasses,bill flat,crown 2d=pingu@bronze,wings shock,crown gem shade=false] 45 | \pingu[yshift=-8cm+.225cm,xshift=7cm,eyes=shiny,height=1.5cm,name=pengu-c,@pingu@all/.append style={fill opacity=.5,draw=#1!80!black},tie,gold medal,crown,belly=\Large\faHeart,wings wave] 46 | \pingu[yshift=-8cm,xshift=10.5cm,name=pengu-d,:line,left eye=wink,straw hat=red,straw hat ribbon=pingu@blue,cup,tie=pingu@purple,tie length=1.2cm,tie width=.4cm,tie offset=.325cm,sunglasses,wings grab] 47 | \pingu[yshift=-8cm,xshift=14cm,name=pengu-e,:line,wings=raise,halo,eye patch left,silver medal] 48 | \pingu[yshift=-8cm,xshift=17.5cm,eyes devil,:line,left eye devil, right eye angry,left wing hug,right wing wave,sun glasses round=brown!65!black,glasses round left opacity=0,devil horns,devil horns b=green,straw hat,bill angry,bronze medal,cane left,cane right] 49 | \pingu[xshift=3.5cm*0,yshift=-12cm,name=1,cloak,meta-dots] 50 | \pingu[xshift=3.5cm*1,yshift=-12cm,name=2,:back,rook,rook hatch=false,glasses] 51 | \pingu[xshift=3.5cm*2,yshift=-12cm,name=3,lightsaber left,lightsaber right=green,left item angle=-25,meta dots=false,lightsaber left length=15mm,eyes shiny, right wing wave,right item angle=70] 52 | \pingu[xshift=3.5cm*3,yshift=-12cm,name=4,:back] 53 | \pingu[xshift=3.5cm*4,yshift=-12cm,name=5,wings grab,lightsaber left=purple,lightsaber right=orange,meta-dots=false,eyes angry,bill angry] 54 | \pingu[xshift=3.5cm*5,yshift=-12cm,name=6,wings raise,meta-dots=false,pride flag left,german flag right,eyes wink,sunglasses,princess crown,small,right wing hug,right item flip] 55 | \endscope 56 | \end{tikzpicture} 57 | \end{preview} 58 | \end{document} -------------------------------------------------------------------------------- /examples/spl.tex: -------------------------------------------------------------------------------- 1 | \documentclass{article} 2 | 3 | \usepackage[T1]{fontenc} 4 | \usepackage[utf8]{inputenc} 5 | 6 | \makeatletter\def\input@path{{../tex/}}\makeatother 7 | \usepackage[glows]{tikzpingus} 8 | \usepackage[active, tightpage]{preview} 9 | 10 | \def\familydefault{\sfdefault} 11 | 12 | \definecolor{accent}{RGB}{93,45,108} 13 | 14 | \usetikzlibrary{arrows.meta} 15 | 16 | % created at a time before ':mix' 17 | \def\pinguDoubleCut#1{\pingu[#1,/pingu/@block/.style={fill=##1!20!white},/pingu/@draw/.style={draw=##1!20!white,cap=round}]\pingu[:hide,#1]\pingu[/pingu/@block/.style={fill=##1!20!white},/pingu/@draw/.style={draw=##1!20!white,cap=round},:hide,eyes=wink,bill=normal]}% we overpaint the penguin again for front features 18 | \def\pinguCut#1{\pingu[eyes=wink,bill=normal,#1,/pingu/@block/.style={fill=##1!20!white},/pingu/@draw/.style={draw=##1!20!white,cap=round}]\pingu[:hide,#1]} 19 | \newsavebox\pingA \savebox\pingA{\tikz{\pinguDoubleCut{body type=normal}}} 20 | \newsavebox\pingB \savebox\pingB{\tikz{\pinguDoubleCut{body type=chubby}}} 21 | \newsavebox\pingC \savebox\pingC{\tikz{\pinguDoubleCut{body type=legacy}}} 22 | 23 | \newsavebox\pingD \savebox\pingD{\tikz{\pinguCut{feet=normal}}} 24 | \newsavebox\pingE \savebox\pingE{\tikz{\pinguCut{feet=simple}}} 25 | \newsavebox\pingF \savebox\pingF{\tikz{\pinguCut{feet=sit}}} 26 | 27 | \newsavebox\pingG \savebox\pingG{\tikz{\pinguCut{left wing=normal,left wing color=pingu@main!20!white,lightsaber left=accent}}} 28 | % \newsavebox\pingH \savebox\pingH{\tikz{\pinguCut{lollipop right=accent}}} 29 | \newsavebox\pingI \savebox\pingI{\tikz{\pinguCut{tie=accent}}} 30 | \newsavebox\pingIb \savebox\pingIb{\tikz{\pinguCut{cake-hat,cake-hat top=accent,cake-hat candle=accent}}} 31 | \newsavebox\pingIc \savebox\pingIc{\tikz{\pinguCut{tie=accent,tie dots}}} 32 | \newsavebox\pingId \savebox\pingId{\tikz{\pinguCut{bow tie=accent}}} 33 | 34 | 35 | \newsavebox\pingJ \savebox\pingJ{\tikz{\pinguCut{wings wave}}} 36 | \newsavebox\pingK \savebox\pingK{\tikz{\pinguCut{wings hug}}} 37 | \newsavebox\pingL \savebox\pingL{\tikz{\pinguCut{wings shock}}} 38 | 39 | \newsavebox\pingM \savebox\pingM{\tikz{\pinguCut{eyes shiny}}} 40 | \newsavebox\pingN \savebox\pingN{\tikz{\pinguCut{eyes normal}}} 41 | \newsavebox\pingO \savebox\pingO{\tikz{\pinguCut{eyes sad}}} 42 | 43 | \begin{document} 44 | \preview 45 | \begin{tikzpicture}[block/.append style={minimum height=\ht\strutbox,minimum width=1.25cm}] 46 | \node[block,align=center] (0) at (0,0) {\strut Penguin\\[-.3mm]\footnotesize\itshape\color{gray}Product-Lines}; 47 | \node[block] (1) at (-6,-1.25) {\strut Body}; 48 | \node[block] (2) at (-3,-1.25) {\strut Feet}; 49 | \node[block] (3) at (0,-1.25) {\strut Items}; 50 | \node[block] (4) at (3,-1.25) {\strut Wings}; 51 | \node[block] (5) at (6,-1.25) {\strut Eyes}; 52 | 53 | \scope[every path/.append style={draw,-{Circle[length=3.33pt]}}] 54 | \foreach\i in {1,...,5} {\path(0.south)--(\i.north);} 55 | \endscope 56 | 57 | \node[scale=.35] (6) at(-7,-2.5) {\usebox\pingA}; 58 | \node[scale=.35] (7) at(-6,-2.5) {\usebox\pingB}; 59 | \node[scale=.35] (8) at(-5,-2.5) {\usebox\pingC}; 60 | \node[scale=.35] (9) at(-4,-2.5) {\usebox\pingD}; 61 | \node[scale=.35] (10) at(-3,-2.5) {\usebox\pingE}; 62 | \node[scale=.35] (11) at(-2,-2.5) {\usebox\pingF}; 63 | 64 | \node[scale=.35] (14) at(2,-2.5) {\usebox\pingJ}; 65 | \node[scale=.35] (15) at(3,-2.5) {\usebox\pingK}; 66 | \node[scale=.35] (16) at(4,-2.5) {\usebox\pingL}; 67 | 68 | \node[scale=.35] (17) at(5,-2.5) {\usebox\pingM}; 69 | \node[scale=.35] (18) at(6,-2.5) {\usebox\pingN}; 70 | \node[scale=.35] (19) at(7,-2.5) {\usebox\pingO}; 71 | 72 | \scope[every path/.append style={{draw}}] 73 | \foreach\i in {6,7,8} {\path(1.south)to coordinate[pos=.25] (@\i) (\i.north);} 74 | \foreach\i in {9,10,11} {\path(2.south)to coordinate[pos=.25] (@\i) (\i.north);} 75 | \foreach\i in {14,15,16} {\path(4.south)to coordinate[pos=.25] (@\i) (\i.north);} 76 | \foreach\i in {17,18,19} {\path(5.south)to coordinate[pos=.25] (@\i) (\i.north);} 77 | \draw[fill=white] (@6) to[bend right=60] (@8) -- (1.south) -- cycle; 78 | \draw[fill=white] (@9) to[bend right=60] (@11) -- (2.south) -- cycle; 79 | \draw[fill=white] (@14) to[bend right=60] (@16) -- (4.south) -- cycle; 80 | \draw[fill=white] (@17) to[bend right=60] (@19) -- (5.south) -- cycle; 81 | \endscope 82 | 83 | \node[block] (12) at(-.75,-2.5) {\strut Wings}; 84 | \node[block] (13) at(.75,-2.5) {\strut Static}; 85 | 86 | 87 | 88 | \node[scale=.35] (20) at(-.75,-3.75) {\usebox\pingG}; 89 | \node[scale=.35] (21) at(.25,-3.75) {\usebox\pingI}; 90 | \node[scale=.35] (22) at(1.25,-3.75) {\usebox\pingIb}; 91 | \node[scale=.35] (23) at(-.25,-5.35) {\usebox\pingIc}; 92 | \node[scale=.35] (24) at(.75,-5.35) {\usebox\pingId}; 93 | 94 | \scope[every path/.append style={draw,-{Circle[length=3.33pt,fill=white]}}] 95 | \foreach\i in {12,13} {\path(3.south)--(\i.north);} 96 | \path(12.south)--(20.north); 97 | \endscope 98 | 99 | \scope[every path/.append style={{draw}}] 100 | \foreach\i in {6,7,8} {\path(1.south)to coordinate[pos=.25] (@\i) (\i.north);} 101 | \foreach\i in {9,10,11} {\path(2.south)to coordinate[pos=.25] (@\i) (\i.north);} 102 | \foreach\i in {14,15,16} {\path(4.south)to coordinate[pos=.25] (@\i) (\i.north);} 103 | \foreach\i in {17,18,19} {\path(5.south)to coordinate[pos=.25] (@\i) (\i.north);} 104 | \draw[fill=white] (@6) to[bend right=60] (@8) -- (1.south) -- cycle; 105 | \draw[fill=white] (@9) to[bend right=60] (@11) -- (2.south) -- cycle; 106 | \draw[fill=white] (@14) to[bend right=60] (@16) -- (4.south) -- cycle; 107 | \draw[fill=white] (@17) to[bend right=60] (@19) -- (5.south) -- cycle; 108 | \foreach\i in {21,22} {\path(13.south)to coordinate[pos=.25] (@\i) (\i.north);} 109 | \draw[fill=white] (@21) to[bend right=60] (@22) -- (13.south) -- cycle; 110 | \foreach\i in {23,24} {\path(21.south)to coordinate[pos=.25] (@\i) (\i.north);} 111 | \draw[fill=white] (@23) to[bend right=60] (@24) -- (21.south) -- cycle; 112 | \endscope 113 | \end{tikzpicture} 114 | \endpreview 115 | \end{document} --------------------------------------------------------------------------------