├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ └── stable-ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README-de.md ├── README.md ├── ifg-letter-appeal.tex ├── receiver └── itzbund.tex ├── references ├── ifg.bib └── ifgBerlin.bib ├── screenshots ├── template-page-1.png ├── template-page-2.png └── template-page-3.png ├── sender.lco └── sender └── me-agency.lco.example /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | # Unix style files 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.{tex,lco}**] 13 | indent_style = tab 14 | 15 | [*.{md,markdown}] 16 | indent_style = space 17 | indent_size = 2 18 | trim_trailing_whitespace = false 19 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | # This is a basic workflow to help you get started with Actions 2 | 3 | name: CI 4 | 5 | # Controls when the action will run. 6 | on: 7 | pull_request: 8 | # Allows you to run this workflow manually from the Actions tab 9 | workflow_dispatch: 10 | 11 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel 12 | jobs: 13 | # This workflow contains a single job called "build" 14 | build: 15 | # The type of runner that the job will run on 16 | runs-on: ubuntu-latest 17 | 18 | # Steps represent a sequence of tasks that will be executed as part of the job 19 | steps: 20 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it 21 | - uses: actions/checkout@v2 22 | 23 | # https://github.com/actions/cache#creating-a-cache-key 24 | # http://man7.org/linux/man-pages/man1/date.1.html 25 | - name: Get Date 26 | id: get-date 27 | run: | 28 | echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")" 29 | shell: bash 30 | 31 | - name: Cache 32 | uses: actions/cache@v2.1.3 33 | with: 34 | # A list of files, directories, and wildcard patterns to cache and restore 35 | path: | 36 | *.aux 37 | *.lof 38 | *.lot 39 | *.fls 40 | *.out 41 | *.toc 42 | *.fmt 43 | *.fot 44 | *.cb 45 | *.cb2 46 | .*.lb 47 | *.bbl 48 | *.bcf 49 | *.blg 50 | *-blx.aux 51 | *-blx.bib 52 | *.run.xml 53 | key: ${{ runner.os }}-${{ steps.get-date.outputs.date }} 54 | 55 | - name: Use example sender file 56 | run: mv "sender/me-agency.lco.example" "sender/me-agency.lco" 57 | 58 | - name: LaTeX compilation 59 | uses: dante-ev/latex-action@latest 60 | with: 61 | # The root LaTeX file to be compiled 62 | root_file: ifg-letter-appeal.tex 63 | # The working directory for the latex compiler to be invoked 64 | working_directory: . # optional 65 | # LaTeX engine to be used 66 | #compiler: lualatex # optional, default is latexmk 67 | # Extra arguments to be passed to the latex compiler 68 | args: -lualatex -latexoption=-file-line-error -latexoption=-interaction=nonstopmode # optional, default is -pdf -latexoption=-file-line-error -latexoption=-interaction=nonstopmode 69 | # Install extra packages by apt-get 70 | #extra_system_packages: # optional 71 | - name: Upload a Build Artifact 72 | uses: actions/upload-artifact@v2.2.2 73 | with: 74 | # Artifact name 75 | name: PDF # optional, default is artifact 76 | # A file, directory or wildcard pattern that describes what to upload 77 | path: "*.pdf" 78 | # The desired behavior if no files are found using the provided path. 79 | if-no-files-found: error # optional, default is warn 80 | -------------------------------------------------------------------------------- /.github/workflows/stable-ci.yml: -------------------------------------------------------------------------------- 1 | # This is a basic workflow to help you get started with Actions 2 | 3 | name: stable-ci 4 | 5 | # Controls when the action will run. 6 | on: 7 | push: 8 | branches: 'main' 9 | # Allows you to run this workflow manually from the Actions tab 10 | workflow_dispatch: 11 | 12 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel 13 | jobs: 14 | # This workflow contains a single job called "build" 15 | build: 16 | # The type of runner that the job will run on 17 | runs-on: ubuntu-latest 18 | 19 | # Steps represent a sequence of tasks that will be executed as part of the job 20 | steps: 21 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it 22 | - uses: actions/checkout@v2 23 | 24 | - name: Use example sender file 25 | run: mv "sender/me-agency.lco.example" "sender/me-agency.lco" 26 | 27 | - name: LaTeX compilation 28 | uses: dante-ev/latex-action@latest 29 | with: 30 | # The root LaTeX file to be compiled 31 | root_file: ifg-letter-appeal.tex 32 | # The working directory for the latex compiler to be invoked 33 | working_directory: . # optional 34 | # LaTeX engine to be used 35 | #compiler: lualatex # optional, default is latexmk 36 | # Extra arguments to be passed to the latex compiler 37 | args: -lualatex -latexoption=-file-line-error -latexoption=-interaction=nonstopmode # optional, default is -pdf -latexoption=-file-line-error -latexoption=-interaction=nonstopmode 38 | # Install extra packages by apt-get 39 | #extra_system_packages: # optional 40 | - name: Upload a Build Artifact 41 | uses: actions/upload-artifact@v4 42 | with: 43 | # Artifact name 44 | name: PDF # optional, default is artifact 45 | # A file, directory or wildcard pattern that describes what to upload 46 | path: "*.pdf" 47 | # The desired behavior if no files are found using the provided path. 48 | if-no-files-found: error # optional, default is warn 49 | 50 | # create screenshots 51 | screenshots: 52 | # The type of runner that the job will run on 53 | runs-on: ubuntu-latest 54 | needs: [build] 55 | 56 | env: 57 | SCREENSHOT_DIR: "./screenshots" 58 | 59 | steps: 60 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it 61 | - uses: actions/checkout@v2 62 | 63 | # get compiled PDF 64 | - uses: actions/download-artifact@v4.1.7 65 | with: 66 | name: PDF 67 | 68 | # convert PDF to screenshot 69 | # https://askubuntu.com/a/50180/606016 70 | - name: Generate screenshots 71 | run: | 72 | sudo apt-get -y install poppler-utils 73 | mkdir -p "$SCREENSHOT_DIR" 74 | pdftoppm *.pdf "$SCREENSHOT_DIR/template-page" -png 75 | 76 | - name: Add & Commit 77 | # You may pin to the exact commit or the version. 78 | # uses: EndBug/add-and-commit@b3c7c1e078a023d75fb0bd326e02962575ce0519 79 | uses: EndBug/add-and-commit@v7 80 | with: 81 | # Arguments for the git add command 82 | add: "${{ env.SCREENSHOT_DIR }}/" # optional, default is . 83 | # The name of the user that will be displayed as the author of the commit 84 | author_name: github-actions[bot] # optional, default is ${{ github.actor }} 85 | # The email of the user that will be displayed as the author of the commit 86 | author_email: 41898282+github-actions[bot]@users.noreply.github.com # optional, default is ${{ github.actor }}@users.noreply.github.com 87 | # Name of the branch to use, if different from the one that triggered the workflow 88 | #branch: # optional 89 | # The directory where your repository is located. You should use actions/checkout first to set it up 90 | #cwd: # optional, default is . 91 | # The message for the commit 92 | message: "chore: update example screenshots" # optional 93 | # The flag used on the pull strategy 94 | #pull_strategy: # optional, default is --no-rebase 95 | # Whether to push the commit and, if any, its tags to the repo. It can also be used to set the git push arguments (more info in the README) 96 | #push: # optional, default is true 97 | # Arguments for the git rm command 98 | #remove: # optional 99 | # Whether to use the --signoff option on git commit 100 | #signoff: # optional 101 | # Arguments for the git tag command (the tag name always needs to be the first word not preceded by a hyphen) 102 | #tag: # optional 103 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## SENSITIVE DATA 2 | sender/* 3 | !sender/*.example 4 | 5 | # build pdf (do not ignore PDFs in subdirectories) 6 | *.pdf 7 | !*/*.pdf 8 | # TeXstudio Session 9 | *.txss 10 | 11 | # source: https://github.com/github/gitignore/blob/218a941be92679ce67d0484547e3e142b2f5f6f0/TeX.gitignore 12 | 13 | ## Core latex/pdflatex auxiliary files: 14 | *.aux 15 | *.lof 16 | *.log 17 | *.lot 18 | *.fls 19 | *.out 20 | *.toc 21 | *.fmt 22 | *.fot 23 | *.cb 24 | *.cb2 25 | .*.lb 26 | 27 | ## Intermediate documents: 28 | *.dvi 29 | *.xdv 30 | *-converted-to.* 31 | # these rules might exclude image files for figures etc. 32 | # *.ps 33 | # *.eps 34 | # *.pdf 35 | 36 | ## Generated if empty string is given at "Please type another file name for output:" 37 | .pdf 38 | 39 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 40 | *.bbl 41 | *.bcf 42 | *.blg 43 | *-blx.aux 44 | *-blx.bib 45 | *.run.xml 46 | 47 | ## Build tool auxiliary files: 48 | *.fdb_latexmk 49 | *.synctex 50 | *.synctex(busy) 51 | *.synctex.gz 52 | *.synctex.gz(busy) 53 | *.pdfsync 54 | 55 | ## Build tool directories for auxiliary files 56 | # latexrun 57 | latex.out/ 58 | 59 | ## Auxiliary and intermediate files from other packages: 60 | # algorithms 61 | *.alg 62 | *.loa 63 | 64 | # achemso 65 | acs-*.bib 66 | 67 | # amsthm 68 | *.thm 69 | 70 | # beamer 71 | *.nav 72 | *.pre 73 | *.snm 74 | *.vrb 75 | 76 | # changes 77 | *.soc 78 | 79 | # comment 80 | *.cut 81 | 82 | # cprotect 83 | *.cpt 84 | 85 | # elsarticle (documentclass of Elsevier journals) 86 | *.spl 87 | 88 | # endnotes 89 | *.ent 90 | 91 | # fixme 92 | *.lox 93 | 94 | # feynmf/feynmp 95 | *.mf 96 | *.mp 97 | *.t[1-9] 98 | *.t[1-9][0-9] 99 | *.tfm 100 | 101 | #(r)(e)ledmac/(r)(e)ledpar 102 | *.end 103 | *.?end 104 | *.[1-9] 105 | *.[1-9][0-9] 106 | *.[1-9][0-9][0-9] 107 | *.[1-9]R 108 | *.[1-9][0-9]R 109 | *.[1-9][0-9][0-9]R 110 | *.eledsec[1-9] 111 | *.eledsec[1-9]R 112 | *.eledsec[1-9][0-9] 113 | *.eledsec[1-9][0-9]R 114 | *.eledsec[1-9][0-9][0-9] 115 | *.eledsec[1-9][0-9][0-9]R 116 | 117 | # glossaries 118 | *.acn 119 | *.acr 120 | *.glg 121 | *.glo 122 | *.gls 123 | *.glsdefs 124 | *.lzo 125 | *.lzs 126 | 127 | # uncomment this for glossaries-extra (will ignore makeindex's style files!) 128 | # *.ist 129 | 130 | # gnuplottex 131 | *-gnuplottex-* 132 | 133 | # gregoriotex 134 | *.gaux 135 | *.gtex 136 | 137 | # htlatex 138 | *.4ct 139 | *.4tc 140 | *.idv 141 | *.lg 142 | *.trc 143 | *.xref 144 | 145 | # hyperref 146 | *.brf 147 | 148 | # knitr 149 | *-concordance.tex 150 | # TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files 151 | # *.tikz 152 | *-tikzDictionary 153 | 154 | # listings 155 | *.lol 156 | 157 | # luatexja-ruby 158 | *.ltjruby 159 | 160 | # makeidx 161 | *.idx 162 | *.ilg 163 | *.ind 164 | 165 | # minitoc 166 | *.maf 167 | *.mlf 168 | *.mlt 169 | *.mtc[0-9]* 170 | *.slf[0-9]* 171 | *.slt[0-9]* 172 | *.stc[0-9]* 173 | 174 | # minted 175 | _minted* 176 | *.pyg 177 | 178 | # morewrites 179 | *.mw 180 | 181 | # nomencl 182 | *.nlg 183 | *.nlo 184 | *.nls 185 | 186 | # pax 187 | *.pax 188 | 189 | # pdfpcnotes 190 | *.pdfpc 191 | 192 | # sagetex 193 | *.sagetex.sage 194 | *.sagetex.py 195 | *.sagetex.scmd 196 | 197 | # scrwfile 198 | *.wrt 199 | 200 | # sympy 201 | *.sout 202 | *.sympy 203 | sympy-plots-for-*.tex/ 204 | 205 | # pdfcomment 206 | *.upa 207 | *.upb 208 | 209 | # pythontex 210 | *.pytxcode 211 | pythontex-files-*/ 212 | 213 | # tcolorbox 214 | *.listing 215 | 216 | # thmtools 217 | *.loe 218 | 219 | # TikZ & PGF 220 | *.dpth 221 | *.md5 222 | *.auxlock 223 | 224 | # todonotes 225 | *.tdo 226 | 227 | # vhistory 228 | *.hst 229 | *.ver 230 | 231 | # easy-todo 232 | *.lod 233 | 234 | # xcolor 235 | *.xcp 236 | 237 | # xmpincl 238 | *.xmpi 239 | 240 | # xindy 241 | *.xdy 242 | 243 | # xypic precompiled matrices and outlines 244 | *.xyc 245 | *.xyd 246 | 247 | # endfloat 248 | *.ttt 249 | *.fff 250 | 251 | # Latexian 252 | TSWLatexianTemp* 253 | 254 | ## Editors: 255 | # WinEdt 256 | *.bak 257 | *.sav 258 | 259 | # Texpad 260 | .texpadtmp 261 | 262 | # LyX 263 | *.lyx~ 264 | 265 | # Kile 266 | *.backup 267 | 268 | # gummi 269 | .*.swp 270 | 271 | # KBibTeX 272 | *~[0-9]* 273 | 274 | # TeXnicCenter 275 | *.tps 276 | 277 | # auto folder when using emacs and auctex 278 | ./auto/* 279 | *.el 280 | 281 | # expex forward references with \gathertags 282 | *-tags.tex 283 | 284 | # standalone packages 285 | *.sta 286 | 287 | # Makeindex log files 288 | *.lpz 289 | 290 | # xwatermark package 291 | *.xwm 292 | 293 | # REVTeX puts footnotes in the bibliography by default, unless the nofootinbib 294 | # option is specified. Footnotes are the stored in a file with suffix Notes.bib. 295 | # Uncomment the next line to have this generated file ignored. 296 | #*Notes.bib 297 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Hi, great to see that you want to contribute! 2 | Feel free to submit a PR. 3 | 4 | There are currently no special requirements. 5 | 6 | ## General 7 | 8 | Just make sure you honor our [`.editorconfig`](https://editorconfig.org/) file. 9 | 10 | ## (La)Tex 11 | 12 | Please link used sources in comments (Stackexchange etc.). 13 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # Creative Commons Attribution 4.0 International 2 | 3 | Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. 4 | 5 | ### Using Creative Commons Public Licenses 6 | 7 | Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses. 8 | 9 | * __Considerations for licensors:__ Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. [More considerations for licensors](http://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensors). 10 | 11 | * __Considerations for the public:__ By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. [More considerations for the public](http://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensees). 12 | 13 | ## Creative Commons Attribution 4.0 International Public License 14 | 15 | By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. 16 | 17 | ### Section 1 – Definitions. 18 | 19 | a. __Adapted Material__ means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. 20 | 21 | b. __Adapter's License__ means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. 22 | 23 | c. __Copyright and Similar Rights__ means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. 24 | 25 | d. __Effective Technological Measures__ means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. 26 | 27 | e. __Exceptions and Limitations__ means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. 28 | 29 | f. __Licensed Material__ means the artistic or literary work, database, or other material to which the Licensor applied this Public License. 30 | 31 | g. __Licensed Rights__ means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. 32 | 33 | h. __Licensor__ means the individual(s) or entity(ies) granting rights under this Public License. 34 | 35 | i. __Share__ means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. 36 | 37 | j. __Sui Generis Database Rights__ means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. 38 | 39 | k. __You__ means the individual or entity exercising the Licensed Rights under this Public License. __Your__ has a corresponding meaning. 40 | 41 | ### Section 2 – Scope. 42 | 43 | a. ___License grant.___ 44 | 45 | 1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: 46 | 47 | A. reproduce and Share the Licensed Material, in whole or in part; and 48 | 49 | B. produce, reproduce, and Share Adapted Material. 50 | 51 | 2. __Exceptions and Limitations.__ For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. 52 | 53 | 3. __Term.__ The term of this Public License is specified in Section 6(a). 54 | 55 | 4. __Media and formats; technical modifications allowed.__ The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. 56 | 57 | 5. __Downstream recipients.__ 58 | 59 | A. __Offer from the Licensor – Licensed Material.__ Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. 60 | 61 | B. __No downstream restrictions.__ You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. 62 | 63 | 6. __No endorsement.__ Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). 64 | 65 | b. ___Other rights.___ 66 | 67 | 1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. 68 | 69 | 2. Patent and trademark rights are not licensed under this Public License. 70 | 71 | 3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. 72 | 73 | ### Section 3 – License Conditions. 74 | 75 | Your exercise of the Licensed Rights is expressly made subject to the following conditions. 76 | 77 | a. ___Attribution.___ 78 | 79 | 1. If You Share the Licensed Material (including in modified form), You must: 80 | 81 | A. retain the following if it is supplied by the Licensor with the Licensed Material: 82 | 83 | i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); 84 | 85 | ii. a copyright notice; 86 | 87 | iii. a notice that refers to this Public License; 88 | 89 | iv. a notice that refers to the disclaimer of warranties; 90 | 91 | v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable; 92 | 93 | B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and 94 | 95 | C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. 96 | 97 | 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. 98 | 99 | 3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. 100 | 101 | 4. If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License. 102 | 103 | ### Section 4 – Sui Generis Database Rights. 104 | 105 | Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: 106 | 107 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; 108 | 109 | b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and 110 | 111 | c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. 112 | 113 | For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. 114 | 115 | ### Section 5 – Disclaimer of Warranties and Limitation of Liability. 116 | 117 | a. __Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.__ 118 | 119 | b. __To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.__ 120 | 121 | c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. 122 | 123 | ### Section 6 – Term and Termination. 124 | 125 | a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. 126 | 127 | b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: 128 | 129 | 1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or 130 | 131 | 2. upon express reinstatement by the Licensor. 132 | 133 | For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. 134 | 135 | c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. 136 | 137 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License. 138 | 139 | ### Section 7 – Other Terms and Conditions. 140 | 141 | a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. 142 | 143 | b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. 144 | 145 | ### Section 8 – Interpretation. 146 | 147 | a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. 148 | 149 | b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. 150 | 151 | c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. 152 | 153 | d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. 154 | 155 | > Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at [creativecommons.org/policies](http://creativecommons.org/policies), Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. 156 | > 157 | > Creative Commons may be contacted at creativecommons.org 158 | -------------------------------------------------------------------------------- /README-de.md: -------------------------------------------------------------------------------- 1 | **[English translation](./README.md)** 2 | 3 | # ifg-letter-appeal 4 | 5 |  6 | 7 | Eine [LaTeX](https://www.latex-project.org/)-Vorlage für Einsprüche gegen ablehnende Bescheide von Behörden auf IFG-Anfragen (siehe [Informationsfreiheitsgesetz](https://de.wikipedia.org/wiki/Informationsfreiheitsgesetz)). 8 | Erstellt für und vorgeschlagen zur Verwendung mit [FragDenStaat](https://fragdenstaat.de/). 9 | 10 | Derzeit nur in deutsch verfügbar. 11 | 12 | ## Beispiel 13 | 14 | Der enthaltene Text ist hauptsächlich als Beispiel gedacht. Außerdem enthält er einige allgemeine Argumente/Boilerplate-Text, der wiederverwendet werden kann. 15 | 16 |  17 |  18 | 19 | Die [PDF dieser zusammengestellten Vorlage kann auch heruntergeladen werden](https://github.com/rugk/ifg-letter-appeal/releases/latest). 20 | 21 | ## Erstellen 22 | 23 | Wir empfehlen eine aktuelle Tex-Distribution, z. B. TexLive 2020. Die verwendete [Schriftart hat in älteren Versionen einen Anzeige-Bug](https://tex.stackexchange.com/q/578223/98645). 24 | Außerdem wird LuaLaTeX empfohlen (es sollten aber auch andere LaTeX-Compiler funktionieren) 25 | 26 | Die Datei `me-agency.lco.example` im Ordner `sender` muss zu zu `me-agency.lco` umbenannt werden, damit der Buildvorgang funktioniert. 27 | 28 | ## Struktur 29 | 30 | * [`sender/`](sender/) enthält die Daten des Absenders (d. h. deine Daten), die du einbinden möchtest. 31 | * [`receiver/`](receiver/) enthält die Kontaktdaten des Empfängers (d. h. der Behörde). 32 | * [`sender.lco`](sender.lco) enthält allgemeine Einstellungen, die entscheiden wie der Absender dargestellt wird. 33 | * [`ifg-letter-appeal.tex`](ifg-letter-appeal.tex) ist der Haupteinstiegspunkt. Verwende ihn, um den Brief zu erzeugen. 34 | 35 | ## Credits 36 | 37 | Der Briefstil ist größtenteils dank [`scrletter`](https://www.ctan.org/pkg/scrletter)/[`scrlttr2`](https://www.ctan.org/pkg/scrlttr2), d.h. den LaTeX [KOMA-Script](https://komascript.de/)-Klassen möglich. 38 | 39 | Danke auch an die großartige [Stackexchange Tex](https://tex.stackexchange.com/)-Gemeinschaft. (Verwendete Fragen/Antworten sind meist als Kommentare verlinkt). 40 | 41 | ## Weitere hilfreiche Links 42 | 43 | * [Wie ist die Frist bei Widersprüchen zu berechnen?](https://forum.okfn.de/t/berechnung-interpretation-der-monatsfrist-fuer-einen-widerspruch/943?u=rugk) Erklärt auch die Formerfordernisse. 44 | * [CTAN-Seite für `scrletter`](https://www.ctan.org/pkg/scrletter) mit Links zur Dokumentation von KOMA-Script (`scrguide.pdf`) in Deutsch und Englisch. 45 | * [Andere Briefvorlagen in anderen Formaten](https://forum.okfn.de/t/briefvorlage-fuer-widersprueche/900?u=rugk) im OKFN/FragDenStaat-Forum. 46 | 47 | ## Rechtshinweis 48 | 49 | Dies stellt keine Rechtsberatung dar. Die verwendeten Texte stellen nur Beispiele dar und sollten vor jeder Verwendung auf ihre Anwendung geprüft werden. 50 | 51 | DIE SOFTWARE WIRD OHNE MÄNGELGEWÄHR UND OHNE JEGLICHE AUSDRÜCKLICHE ODER STILLSCHWEIGENDE GEWÄHRLEISTUNG, EINSCHLIEßLICH, ABER NICHT BESCHRÄNKT AUF DIE GEWÄHRLEISTUNG DER MARKTGÄNGIGKEIT, DER EIGNUNG FÜR EINEN BESTIMMTEN ZWECK UND DER NICHTVERLETZUNG VON RECHTEN DRITTER, ZUR VERFÜGUNG GESTELLT. DIE AUTOREN ODER URHEBERRECHTSINHABER SIND IN KEINEM FALL HAFTBAR FÜR ANSPRÜCHE, SCHÄDEN ODER ANDERE VERPFLICHTUNGEN, OB IN EINER VERTRAGS- ODER HAFTUNGSKLAGE, EINER UNERLAUBTEN HANDLUNG ODER ANDERWEITIG, DIE SICH AUS, AUS ODER IN VERBINDUNG MIT DER SOFTWARE ODER DER NUTZUNG ODER ANDEREN GESCHÄFTEN MIT DER SOFTWARE ERGEBEN. 52 | 53 | 54 |
ifg-letter-appeal by rugk ist lizenziert unter der Lizenz Creative Commons Attribution 4.0 International (CC-BY).
ifg-letter-appeal by rugk is licensed under Creative Commons Attribution 4.0 International (CC-BY).