├── .gitignore ├── LICENSE.md ├── README.md ├── collegebeamer.sty ├── gallery ├── HIT.png ├── PolyU.png ├── Red Flag.png ├── SAES.png ├── SWU.png ├── SZU.png ├── ZAFU.png ├── code.png ├── end.png ├── img.jpg ├── math.png ├── subsection.png └── table of contents.png ├── pre.tex └── src ├── HIT ├── background.png ├── color-logo.png └── trans-logo.png ├── PolyU ├── background.png ├── color-logo.png └── trans-logo.png ├── Red ├── background.png ├── color-logo.png └── trans-logo.png ├── SAES ├── background.png ├── color-logo.png └── trans-logo.png ├── SWU ├── background.png ├── color-logo.png └── trans-logo.png ├── SZU ├── background.png ├── color-logo.png └── trans-logo.png └── ZAFU ├── background.png ├── color-logo.png └── trans-logo.png /.gitignore: -------------------------------------------------------------------------------- 1 | # gitignore 2 | .DS_Store 3 | .idea/ 4 | build/ 5 | *.aux 6 | *.log 7 | *.nav 8 | *.out 9 | *.snm 10 | *.toc 11 | *.synctex.gz 12 | *.toc.vrb 13 | *.vrb 14 | *.bbl 15 | *.bcf 16 | *.run.xml 17 | *.blg 18 | *.pdf 19 | *.fdb_latexmk 20 | *.fls -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Attribution 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More_considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution 4.0 International Public License 58 | 59 | By exercising the Licensed Rights (defined below), You accept and agree 60 | to be bound by the terms and conditions of this Creative Commons 61 | Attribution 4.0 International Public License ("Public License"). To the 62 | extent this Public License may be interpreted as a contract, You are 63 | granted the Licensed Rights in consideration of Your acceptance of 64 | these terms and conditions, and the Licensor grants You such rights in 65 | consideration of benefits the Licensor receives from making the 66 | Licensed Material available under these terms and conditions. 67 | 68 | 69 | Section 1 -- Definitions. 70 | 71 | a. Adapted Material means material subject to Copyright and Similar 72 | Rights that is derived from or based upon the Licensed Material 73 | and in which the Licensed Material is translated, altered, 74 | arranged, transformed, or otherwise modified in a manner requiring 75 | permission under the Copyright and Similar Rights held by the 76 | Licensor. For purposes of this Public License, where the Licensed 77 | Material is a musical work, performance, or sound recording, 78 | Adapted Material is always produced where the Licensed Material is 79 | synched in timed relation with a moving image. 80 | 81 | b. Adapter's License means the license You apply to Your Copyright 82 | and Similar Rights in Your contributions to Adapted Material in 83 | accordance with the terms and conditions of this Public License. 84 | 85 | c. Copyright and Similar Rights means copyright and/or similar rights 86 | closely related to copyright including, without limitation, 87 | performance, broadcast, sound recording, and Sui Generis Database 88 | Rights, without regard to how the rights are labeled or 89 | categorized. For purposes of this Public License, the rights 90 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 91 | Rights. 92 | 93 | d. Effective Technological Measures means those measures that, in the 94 | absence of proper authority, may not be circumvented under laws 95 | fulfilling obligations under Article 11 of the WIPO Copyright 96 | Treaty adopted on December 20, 1996, and/or similar international 97 | agreements. 98 | 99 | e. Exceptions and Limitations means fair use, fair dealing, and/or 100 | any other exception or limitation to Copyright and Similar Rights 101 | that applies to Your use of the Licensed Material. 102 | 103 | f. Licensed Material means the artistic or literary work, database, 104 | or other material to which the Licensor applied this Public 105 | License. 106 | 107 | g. Licensed Rights means the rights granted to You subject to the 108 | terms and conditions of this Public License, which are limited to 109 | all Copyright and Similar Rights that apply to Your use of the 110 | Licensed Material and that the Licensor has authority to license. 111 | 112 | h. Licensor means the individual(s) or entity(ies) granting rights 113 | under this Public License. 114 | 115 | i. Share means to provide material to the public by any means or 116 | process that requires permission under the Licensed Rights, such 117 | as reproduction, public display, public performance, distribution, 118 | dissemination, communication, or importation, and to make material 119 | available to the public including in ways that members of the 120 | public may access the material from a place and at a time 121 | individually chosen by them. 122 | 123 | j. Sui Generis Database Rights means rights other than copyright 124 | resulting from Directive 96/9/EC of the European Parliament and of 125 | the Council of 11 March 1996 on the legal protection of databases, 126 | as amended and/or succeeded, as well as other essentially 127 | equivalent rights anywhere in the world. 128 | 129 | k. You means the individual or entity exercising the Licensed Rights 130 | under this Public License. Your has a corresponding meaning. 131 | 132 | 133 | Section 2 -- Scope. 134 | 135 | a. License grant. 136 | 137 | 1. Subject to the terms and conditions of this Public License, 138 | the Licensor hereby grants You a worldwide, royalty-free, 139 | non-sublicensable, non-exclusive, irrevocable license to 140 | exercise the Licensed Rights in the Licensed Material to: 141 | 142 | a. reproduce and Share the Licensed Material, in whole or 143 | in part; and 144 | 145 | b. produce, reproduce, and Share Adapted Material. 146 | 147 | 2. Exceptions and Limitations. For the avoidance of doubt, where 148 | Exceptions and Limitations apply to Your use, this Public 149 | License does not apply, and You do not need to comply with 150 | its terms and conditions. 151 | 152 | 3. Term. The term of this Public License is specified in Section 153 | 6(a). 154 | 155 | 4. Media and formats; technical modifications allowed. The 156 | Licensor authorizes You to exercise the Licensed Rights in 157 | all media and formats whether now known or hereafter created, 158 | and to make technical modifications necessary to do so. The 159 | Licensor waives and/or agrees not to assert any right or 160 | authority to forbid You from making technical modifications 161 | necessary to exercise the Licensed Rights, including 162 | technical modifications necessary to circumvent Effective 163 | Technological Measures. For purposes of this Public License, 164 | simply making modifications authorized by this Section 2(a) 165 | (4) never produces Adapted Material. 166 | 167 | 5. Downstream recipients. 168 | 169 | a. Offer from the Licensor -- Licensed Material. Every 170 | recipient of the Licensed Material automatically 171 | receives an offer from the Licensor to exercise the 172 | Licensed Rights under the terms and conditions of this 173 | Public License. 174 | 175 | b. No downstream restrictions. You may not offer or impose 176 | any additional or different terms or conditions on, or 177 | apply any Effective Technological Measures to, the 178 | Licensed Material if doing so restricts exercise of the 179 | Licensed Rights by any recipient of the Licensed 180 | Material. 181 | 182 | 6. No endorsement. Nothing in this Public License constitutes or 183 | may be construed as permission to assert or imply that You 184 | are, or that Your use of the Licensed Material is, connected 185 | with, or sponsored, endorsed, or granted official status by, 186 | the Licensor or others designated to receive attribution as 187 | provided in Section 3(a)(1)(A)(i). 188 | 189 | b. Other rights. 190 | 191 | 1. Moral rights, such as the right of integrity, are not 192 | licensed under this Public License, nor are publicity, 193 | privacy, and/or other similar personality rights; however, to 194 | the extent possible, the Licensor waives and/or agrees not to 195 | assert any such rights held by the Licensor to the limited 196 | extent necessary to allow You to exercise the Licensed 197 | Rights, but not otherwise. 198 | 199 | 2. Patent and trademark rights are not licensed under this 200 | Public License. 201 | 202 | 3. To the extent possible, the Licensor waives any right to 203 | collect royalties from You for the exercise of the Licensed 204 | Rights, whether directly or through a collecting society 205 | under any voluntary or waivable statutory or compulsory 206 | licensing scheme. In all other cases the Licensor expressly 207 | reserves any right to collect such royalties. 208 | 209 | 210 | Section 3 -- License Conditions. 211 | 212 | Your exercise of the Licensed Rights is expressly made subject to the 213 | following conditions. 214 | 215 | a. Attribution. 216 | 217 | 1. If You Share the Licensed Material (including in modified 218 | form), You must: 219 | 220 | a. retain the following if it is supplied by the Licensor 221 | with the Licensed Material: 222 | 223 | i. identification of the creator(s) of the Licensed 224 | Material and any others designated to receive 225 | attribution, in any reasonable manner requested by 226 | the Licensor (including by pseudonym if 227 | designated); 228 | 229 | ii. a copyright notice; 230 | 231 | iii. a notice that refers to this Public License; 232 | 233 | iv. a notice that refers to the disclaimer of 234 | warranties; 235 | 236 | v. a URI or hyperlink to the Licensed Material to the 237 | extent reasonably practicable; 238 | 239 | b. indicate if You modified the Licensed Material and 240 | retain an indication of any previous modifications; and 241 | 242 | c. indicate the Licensed Material is licensed under this 243 | Public License, and include the text of, or the URI or 244 | hyperlink to, this Public License. 245 | 246 | 2. You may satisfy the conditions in Section 3(a)(1) in any 247 | reasonable manner based on the medium, means, and context in 248 | which You Share the Licensed Material. For example, it may be 249 | reasonable to satisfy the conditions by providing a URI or 250 | hyperlink to a resource that includes the required 251 | information. 252 | 253 | 3. If requested by the Licensor, You must remove any of the 254 | information required by Section 3(a)(1)(A) to the extent 255 | reasonably practicable. 256 | 257 | 4. If You Share Adapted Material You produce, the Adapter's 258 | License You apply must not prevent recipients of the Adapted 259 | Material from complying with this Public License. 260 | 261 | 262 | Section 4 -- Sui Generis Database Rights. 263 | 264 | Where the Licensed Rights include Sui Generis Database Rights that 265 | apply to Your use of the Licensed Material: 266 | 267 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 268 | to extract, reuse, reproduce, and Share all or a substantial 269 | portion of the contents of the database; 270 | 271 | b. if You include all or a substantial portion of the database 272 | contents in a database in which You have Sui Generis Database 273 | Rights, then the database in which You have Sui Generis Database 274 | Rights (but not its individual contents) is Adapted Material; and 275 | 276 | c. You must comply with the conditions in Section 3(a) if You Share 277 | all or a substantial portion of the contents of the database. 278 | 279 | For the avoidance of doubt, this Section 4 supplements and does not 280 | replace Your obligations under this Public License where the Licensed 281 | Rights include other Copyright and Similar Rights. 282 | 283 | 284 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 285 | 286 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 287 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 288 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 289 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 290 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 291 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 292 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 293 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 294 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 295 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 296 | 297 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 298 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 299 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 300 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 301 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 302 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 303 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 304 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 305 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 306 | 307 | c. The disclaimer of warranties and limitation of liability provided 308 | above shall be interpreted in a manner that, to the extent 309 | possible, most closely approximates an absolute disclaimer and 310 | waiver of all liability. 311 | 312 | 313 | Section 6 -- Term and Termination. 314 | 315 | a. This Public License applies for the term of the Copyright and 316 | Similar Rights licensed here. However, if You fail to comply with 317 | this Public License, then Your rights under this Public License 318 | terminate automatically. 319 | 320 | b. Where Your right to use the Licensed Material has terminated under 321 | Section 6(a), it reinstates: 322 | 323 | 1. automatically as of the date the violation is cured, provided 324 | it is cured within 30 days of Your discovery of the 325 | violation; or 326 | 327 | 2. upon express reinstatement by the Licensor. 328 | 329 | For the avoidance of doubt, this Section 6(b) does not affect any 330 | right the Licensor may have to seek remedies for Your violations 331 | of this Public License. 332 | 333 | c. For the avoidance of doubt, the Licensor may also offer the 334 | Licensed Material under separate terms or conditions or stop 335 | distributing the Licensed Material at any time; however, doing so 336 | will not terminate this Public License. 337 | 338 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 339 | License. 340 | 341 | 342 | Section 7 -- Other Terms and Conditions. 343 | 344 | a. The Licensor shall not be bound by any additional or different 345 | terms or conditions communicated by You unless expressly agreed. 346 | 347 | b. Any arrangements, understandings, or agreements regarding the 348 | Licensed Material not stated herein are separate from and 349 | independent of the terms and conditions of this Public License. 350 | 351 | 352 | Section 8 -- Interpretation. 353 | 354 | a. For the avoidance of doubt, this Public License does not, and 355 | shall not be interpreted to, reduce, limit, restrict, or impose 356 | conditions on any use of the Licensed Material that could lawfully 357 | be made without permission under this Public License. 358 | 359 | b. To the extent possible, if any provision of this Public License is 360 | deemed unenforceable, it shall be automatically reformed to the 361 | minimum extent necessary to make it enforceable. If the provision 362 | cannot be reformed, it shall be severed from this Public License 363 | without affecting the enforceability of the remaining terms and 364 | conditions. 365 | 366 | c. No term or condition of this Public License will be waived and no 367 | failure to comply consented to unless expressly agreed to by the 368 | Licensor. 369 | 370 | d. Nothing in this Public License constitutes or may be interpreted 371 | as a limitation upon, or waiver of, any privileges and immunities 372 | that apply to the Licensor or You, including from the legal 373 | processes of any jurisdiction or authority. 374 | 375 | 376 | ======================================================================= 377 | 378 | Creative Commons is not a party to its public 379 | licenses. Notwithstanding, Creative Commons may elect to apply one of 380 | its public licenses to material it publishes and in those instances 381 | will be considered the “Licensor.” The text of the Creative Commons 382 | public licenses is dedicated to the public domain under the CC0 Public 383 | Domain Dedication. Except for the limited purpose of indicating that 384 | material is shared under a Creative Commons public license or as 385 | otherwise permitted by the Creative Commons policies published at 386 | creativecommons.org/policies, Creative Commons does not authorize the 387 | use of the trademark "Creative Commons" or any other trademark or logo 388 | of Creative Commons without its prior written consent including, 389 | without limitation, in connection with any unauthorized modifications 390 | to any of its public licenses or any other arrangements, 391 | understandings, or agreements concerning use of licensed material. For 392 | the avoidance of doubt, this paragraph does not form part of the 393 | public licenses. 394 | 395 | Creative Commons may be contacted at creativecommons.org. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # `college-beamer` 2 | 3 | Hi👋 Here are some beamer templates which are secondary creations of [SINTEF Presentation](https://www.overleaf.com/latex/templates/sintef-presentation/jhbhdffczpnx) template. Thanks [Federico Zenith](federico.zenith@sintef.no) for creating such well-designed works. To use it in my and my friends' schools/institutes, I rewrote and added some icons and features to adapt to specific surroundings✨. 4 | 5 | ## Colleges & institutes 6 | 7 | - The Hong Kong Polytechnic University 8 | ![PolyU](https://github.com/liu-qilong/college-beamer/blob/main/gallery/PolyU.png?raw=true) 9 | - Southwest University 10 | ![SWU](https://github.com/liu-qilong/college-beamer/blob/main/gallery/SWU.png?raw=true) 11 | - Shenzhen University 12 | ![SZU](https://github.com/liu-qilong/college-beamer/blob/main/gallery/SZU.png?raw=true) 13 | - Shenzhen Academic of Environmental Science 14 | ![SAES](https://github.com/liu-qilong/college-beamer/blob/main/gallery/SAES.png?raw=true) 15 | - Harbin Institute of Technology 16 | ![HIT](https://github.com/liu-qilong/college-beamer/blob/main/gallery/HIT.png?raw=true) 17 | > Thank [LeeWlving](https://github.com/LeeWlving) for contributing this template! 18 | - Zhejiang A&F University 19 | ![ZAFU](https://github.com/liu-qilong/college-beamer/blob/main/gallery/ZAFU.png?raw=true) 20 | > Thank [ke1ewang](https://github.com/ke1ewang) for contributing this template! 21 | 22 | Some of these templates have been submitted to [Overleaf](https://cs.overleaf.com/gallery), please check them here👇 23 | 24 | - [The Honk Kong Polytechnic University (PolyU) Beamer Presentation Theme](https://www.overleaf.com/latex/templates/the-honk-kong-polytechnic-university-polyu-beamer-presentation-theme/vywngqprjwrq) 25 | - [西南大学 SWU Beamer 模板](https://www.overleaf.com/latex/templates/xi-nan-da-xue-swu-beamer-mo-ban-zhu-ti/bgprxfbyhqsb) 26 | - [深圳大学 SZU Beamer 模板](https://www.overleaf.com/latex/templates/shen-zhen-da-xue-szu-beamer-mo-ban/bjwzmkpsgygf) 27 | - [深圳环境科学院 SAES Beamer 模版](https://www.overleaf.com/latex/templates/shen-zhen-huan-jing-ke-xue-yuan-saes-beamer-zhu-ti/gqfgpdwcrcpt) 28 | - [哈尔滨工业大学 Beamer 模版](https://www.overleaf.com/latex/templates/harbin-institute-of-technology-hit-beamer-presentation-theme/prwxqwfdzkqj) 29 | - [浙江农林大学 ZAFU Beamer 模版](https://www.overleaf.com/latex/templates/zafu-beamer-theme-beta/rcxzphbhnddf) 30 | 31 | ## Options & usage 32 | 33 | ### Switch college/institute 34 | 35 | Switching between different college/institute is quite easy, just add college/institute name (all lower case) to the `collegeBeamer` package. For example, to switch to the PolyU theme, add `polyu` to the package: 36 | 37 | ``` 38 | \usepackage[polyu,en]{collegeBeamer} 39 | ``` 40 | 41 | ### Switch language 42 | 43 | To switch the language, just change the language option in the `collegeBeamer` package. For example, to switch to the Chinese language, add `zh` to the package: 44 | 45 | ``` 46 | \usepackage[szu,zh]{collegeBeamer} 47 | ``` 48 | 49 | > When select `zh`, please add the `xeCJK`package to the preamble and use [XeLaTeX](https://www.overleaf.com/learn/latex/XeLaTeX) as the typesetting engine. 50 | 51 | ``` 52 | \usepackage{xeCJK} 53 | ``` 54 | 55 | ### Page elements 56 | 57 | - Table of Contents 58 | 59 | At the beginning of each section, the table of contents will be shown with the current chapter highlighted. 60 | ![toc](https://github.com/liu-qilong/college-beamer/blob/main/gallery/table%20of%20contents.png?raw=true) 61 | - Sub-section page 62 | ![ssec](https://github.com/liu-qilong/college-beamer/blob/main/gallery/subsection.png?raw=true) 63 | - Math equation 64 | ![math](https://github.com/liu-qilong/college-beamer/blob/main/gallery/math.png?raw=true) 65 | - Code block 66 | ![code](https://github.com/liu-qilong/college-beamer/blob/main/gallery/code.png?raw=true) 67 | - End page 68 | ![end](https://github.com/liu-qilong/college-beamer/blob/main/gallery/end.png?raw=true) 69 | 70 | ## Add your own college? 71 | 72 | Would like to make your own theme on top of these themes? It's quite easy, only a few steps are needed: 73 | 74 | ### Step 1: Get the files 75 | 76 | To get the files, you can fork & clone the repository to your computer. 77 | 78 | Alternatively, you can open the templates' Overleaf webpages and click `Open as Template`. 79 | 80 | ### Step 2: Place logos and background 81 | 82 | Create a subfolder under `src/` named as your college. Place `color-logo.png` (logo image with background color), `trans-logo.png` (logo image with transparent background), and `background.png` (background image on the cover page) into it. 83 | 84 | ### Step 3: Add college/institute option 85 | 86 | Starting from the 37-th line of `collegebeamer.sty`, all college/institute options are defined. Add your college/institute name in the same format, e.g.: 87 | 88 | ``` 89 | \DeclareOption{polyu}{ 90 | \renewcommand{\maincolorRGB}{128, 57, 61} % the theme's main color in RGB 91 | \renewcommand{\colorlogoPath}{src/PolyU/color-logo.png} % path to the logo image with background color 92 | \renewcommand{\translogoPath}{src/PolyU/trans-logo.png} % path to the logo image with transparent background 93 | \renewcommand{\backgroundPath}{src/PolyU/background.png} % path to the background image 94 | } 95 | ``` 96 | 97 | Noted that the theme's main color will be used in the front-ground of titles and background colors of the sectional page. 98 | 99 | > _P.S. You may also choose to use a logo with white background for `\translogoPath`. Please refer to [issue #8](https://github.com/liu-qilong/college-beamer/issues/8) for considerations._ 100 | 101 | Now you have your brand new template 👏🎉 102 | 103 | ## Issues & suggestions 104 | 105 | If you have any revision suggestions, please create an issue in this repository. Thanks indeed🤝 106 | -------------------------------------------------------------------------------- /collegebeamer.sty: -------------------------------------------------------------------------------- 1 | \ProvidesPackage{collegeBeamer} 2 | 3 | % required packages 4 | \RequirePackage{etoolbox} 5 | \RequirePackage{tikz} 6 | \RequirePackage{listings} 7 | \RequirePackage{graphicx} 8 | \RequirePackage{geometry} 9 | \RequirePackage{amsfonts, amsmath, bm, oldgerm, lmodern} % math 10 | \RequirePackage{verbatim} 11 | \RequirePackage{animate} 12 | \RequirePackage{xcolor} 13 | 14 | % --- package options --- 15 | % languages 16 | \newcommand{\tocStr}{Table of Contents} 17 | \newcommand{\qaStr}{\textsl{Thank you for listening! \\ Your feedback will be highly appreciated!}} 18 | 19 | \DeclareOption{en}{ 20 | \renewcommand{\tocStr}{Table of Contents} 21 | \renewcommand{\qaStr}{\textsl{Thank you for listening! \\ Your feedback will be highly appreciated!}} 22 | } 23 | 24 | \DeclareOption{zh}{ 25 | % add to the preamble: \usepackage{xeCJK} 26 | % compile with xeLaTeX 27 | \renewcommand{\tocStr}{目录} 28 | \renewcommand{\qaStr}{\textbf{感谢您的聆听和反馈}} 29 | } 30 | 31 | % colleges & institutes 32 | \newcommand{\maincolorRGB}{128, 57, 61} 33 | \newcommand{\colorlogoPath}{src/PolyU/color-logo.png} 34 | \newcommand{\translogoPath}{src/PolyU/trans-logo.png} 35 | \newcommand{\backgroundPath}{src/PolyU/background.png} 36 | 37 | \DeclareOption{polyu}{ 38 | \renewcommand{\maincolorRGB}{128, 57, 61} 39 | \renewcommand{\colorlogoPath}{src/PolyU/color-logo.png} 40 | \renewcommand{\translogoPath}{src/PolyU/trans-logo.png} 41 | \renewcommand{\backgroundPath}{src/PolyU/background.png} 42 | } 43 | 44 | \DeclareOption{szu}{ 45 | \renewcommand{\maincolorRGB}{124, 36, 64} 46 | \renewcommand{\colorlogoPath}{src/SZU/color-logo.png} 47 | \renewcommand{\translogoPath}{src/SZU/trans-logo.png} 48 | \renewcommand{\backgroundPath}{src/SZU/background.png} 49 | } 50 | 51 | \DeclareOption{swu}{ 52 | \renewcommand{\maincolorRGB}{39, 32, 99} 53 | \renewcommand{\colorlogoPath}{src/SWU/color-logo.png} 54 | \renewcommand{\translogoPath}{src/SWU/trans-logo.png} 55 | \renewcommand{\backgroundPath}{src/SWU/background.png} 56 | } 57 | 58 | \DeclareOption{hit}{ 59 | \renewcommand{\maincolorRGB}{42, 101, 128} 60 | \renewcommand{\colorlogoPath}{src/hit/color-logo.png} 61 | \renewcommand{\translogoPath}{src/hit/trans-logo.png} 62 | \renewcommand{\backgroundPath}{src/hit/background.png} 63 | } 64 | 65 | \DeclareOption{saes}{ 66 | \renewcommand{\maincolorRGB}{5, 103, 81} 67 | \renewcommand{\colorlogoPath}{src/SAES/color-logo.png} 68 | \renewcommand{\translogoPath}{src/SAES/trans-logo.png} 69 | \renewcommand{\backgroundPath}{src/SAES/background.png} 70 | } 71 | 72 | \DeclareOption{zafu}{ 73 | \renewcommand{\maincolorRGB}{0, 133, 75} 74 | \renewcommand{\colorlogoPath}{src/ZAFU/color-logo.png} 75 | \renewcommand{\translogoPath}{src/ZAFU/trans-logo.png} 76 | \renewcommand{\backgroundPath}{src/ZAFU/background.png} 77 | } 78 | 79 | \DeclareOption{red}{ 80 | \renewcommand{\maincolorRGB}{128, 57, 61} 81 | \renewcommand{\colorlogoPath}{src/Red/color-logo.png} 82 | \renewcommand{\translogoPath}{src/Red/trans-logo.png} 83 | \renewcommand{\backgroundPath}{src/Red/background.png} 84 | \renewcommand{\qaStr}{\textbf{全世界无产者,联合起来!}} 85 | } 86 | 87 | \ProcessOptions\relax 88 | 89 | % --- typeset & elements settings --- 90 | % force 16:9 aspect ratio 91 | \geometry{paperwidth=16cm,paperheight=9cm} 92 | 93 | % logo 94 | \pgfdeclareimage[width=0.09\paperwidth]{colorlogo}{\colorlogoPath} 95 | \pgfdeclareimage[width=0.09\paperwidth]{translogo}{\translogoPath} 96 | \newcommand{\@makelogo}{colorlogo} 97 | 98 | \setbeamertemplate{headline}{\hspace{0.06\textwidth}\pgfuseimage{\@makelogo}} % put the logo in each slide's top left area 99 | 100 | % color 101 | \definecolor{maincolor}{RGB}{\maincolorRGB} 102 | \definecolor{airforceblue}{rgb}{0.36, 0.54, 0.66} 103 | \definecolor{morelightgray}{rgb}{0.9, 0.9, 0.9} 104 | 105 | \newcommand{\themecolor}[1]{ 106 | \ifstrequal{#1}{colorbg}{ 107 | \renewcommand{\@makelogo}{translogo} 108 | \setbeamercolor{normal text}{fg=white, bg=maincolor} 109 | \setbeamercolor{structure}{fg=white} 110 | }{ 111 | \renewcommand{\@makelogo}{colorlogo} 112 | \setbeamercolor{normal text}{fg=darkgray, bg=white} 113 | \setbeamercolor{structure}{fg=maincolor} 114 | } 115 | } 116 | \themecolor{white} % default: white theme 117 | % P.S. Beamer colors should be set in the preamble. It often works fine in the document itself, but NOT for normal text foreground. Thus \themecolor should only be called from the preamble 118 | 119 | \setbeamercolor{title}{fg=maincolor} 120 | \setbeamercolor{alerted text}{fg=maincolor} 121 | \setbeamercolor{author}{fg=black} 122 | \setbeamercolor{date}{fg=black} 123 | 124 | % font 125 | % \renewcommand{\familydefault}{\sfdefault} % sans-serif 126 | \usefonttheme{serif} 127 | 128 | \setbeamerfont{title}{series=\scshape, size=\Large} 129 | \setbeamerfont{subtitle}{series=\mdseries, size=\normalsize} 130 | \setbeamerfont{author}{size=\normalsize} 131 | \setbeamerfont{date}{size=\normalsize} 132 | 133 | \setbeamerfont{frametitle}{series=\bfseries} 134 | \setbeamerfont{framesubtitle}{series=\mdseries} 135 | \setbeamerfont{footline}{size=\scriptsize} 136 | 137 | % no navigation symbols 138 | \setbeamertemplate{navigation symbols}{} 139 | 140 | % footline 141 | \newcommand{\@footlinepayoff}{\@SINTEFmotto} 142 | \setbeamertemplate{footline}{ 143 | \begin{beamercolorbox}[wd=\textwidth, ht=5mm, dp=3mm, rightskip=1cm]{footline} 144 | \usebeamerfont{footline}\hfill\@footlinepayoff 145 | \end{beamercolorbox} 146 | } 147 | 148 | \newcommand{\footlinecolor}[1]{ 149 | % if #1 is empty, makes footline transparent 150 | \ifstrempty{#1}{ 151 | \renewcommand{\@footlinepayoff}{} 152 | \setbeamercolor{footline}{bg=} 153 | }{ 154 | \renewcommand{\@footlinepayoff}{\@SINTEFmotto} 155 | \setbeamercolor{footline}{fg=white, bg=#1} 156 | } 157 | } 158 | \footlinecolor{} % default: no footline 159 | 160 | % block 161 | \setbeamertemplate{blocks}[rounded] 162 | \setbeamerfont{block title}{series=\centering, size=\small} 163 | \setbeamerfont{block body}{size=\scriptsize} 164 | \setbeamercolor{block title}{fg=airforceblue, bg=morelightgray} 165 | \setbeamercolor{block body}{fg=darkgray, bg=morelightgray} 166 | 167 | % bullets 168 | \setbeamertemplate{itemize item}{\textbullet} 169 | \setbeamertemplate{itemize subitem}{\textemdash} 170 | \setbeamertemplate{itemize subsubitem}{\ensuremath{\circ}} 171 | 172 | % table of cotents 173 | \setbeamertemplate{section in toc}{$\blacktriangleright$~\inserttocsection} % section name format 174 | \setbeamertemplate{subsection in toc}{} % don't present subsection 175 | 176 | % code bolck setting 177 | \definecolor{codegreen}{RGB}{101,218,120} 178 | \definecolor{darkgreen}{RGB}{93,158,82} 179 | \definecolor{darkyellow}{RGB}{245,194,105} 180 | \definecolor{codegray}{rgb}{0.5,0.5,0.5} 181 | \definecolor{codepurple}{rgb}{0.58,0,0.82} 182 | \definecolor{backcolour}{rgb}{0.95,0.95,0.92} 183 | 184 | \lstdefinestyle{mystyle}{ 185 | commentstyle=\color{airforceblue}, 186 | keywordstyle=\color{magenta}, 187 | numberstyle=\tiny\color{codegray}, 188 | stringstyle=\color{codepurple}, 189 | basicstyle=\ttfamily\scriptsize, 190 | breakatwhitespace=false, 191 | breaklines=true, 192 | captionpos=b, 193 | keepspaces=true, 194 | numbers=left, 195 | numbersep=5pt, 196 | showspaces=false, 197 | showstringspaces=false, 198 | showtabs=false, 199 | tabsize=4, 200 | xleftmargin=10pt, 201 | xrightmargin=10pt, 202 | } 203 | 204 | \lstset{style=mystyle} 205 | 206 | % --- section & frame setting --- 207 | % subsection 208 | \newcommand{\strsubsec}{Section \thesection.\thesubsection} 209 | 210 | % presents subtitle on each frame 211 | \makeatletter 212 | \pretocmd\beamer@checkframetitle{\framesubtitle{\thesection \, \secname}} 213 | \makeatother 214 | 215 | % avoid numbering of frames that are breaked into multiply slides 216 | \setbeamertemplate{frametitle continuation}{} 217 | 218 | % section page with the current section highlighted 219 | \AtBeginSection[] 220 | { 221 | \begingroup 222 | \setbeamertemplate{footline}{} 223 | \themecolor{colorbg} 224 | \begin{frame}{\tocStr} 225 | \tableofcontents[currentsection] 226 | \end{frame} 227 | \endgroup 228 | } 229 | 230 | % subsection title page 231 | \AtBeginSubsection[] 232 | { 233 | \begin{frame}{\,}{\thesection \, \secname} 234 | \fontfamily{ptm}\selectfont 235 | \centering\textsl{\textbf{\textcolor{maincolor}{ 236 | \large Section \thesection.\thesubsection 237 | \vskip15pt 238 | \LARGE \subsecname 239 | }}} 240 | \end{frame} 241 | } 242 | 243 | % --- page elements --- 244 | % frame title & subtitle layout 245 | \setbeamertemplate{frametitle}{ 246 | \vspace*{-3.5ex} 247 | \begin{beamercolorbox}[leftskip=2cm]{frametitle} 248 | \usebeamerfont{frametitle}\insertframetitle\\ 249 | \usebeamerfont{framesubtitle}\insertframesubtitle 250 | \end{beamercolorbox} 251 | } 252 | 253 | % title page 254 | \setbeamertemplate{title page}{ 255 | \hspace{-12mm} % pull back the box in an inelegant way - but it works! 256 | \begin{beamercolorbox}[wd=0.9\textwidth, sep=10pt, leftskip=8mm]{title} 257 | {\usebeamerfont{title}\inserttitle}\\ 258 | \vskip5pt{\usebeamerfont{subtitle}\insertsubtitle}\\ 259 | \vskip5pt{\usebeamerfont{author}\usebeamercolor[fg]{author}\insertauthor}\\ 260 | \vskip5pt{\usebeamerfont{date}\usebeamercolor[fg]{date}\insertdate} 261 | \end{beamercolorbox} 262 | } 263 | 264 | \renewcommand{\maketitle}{ 265 | \begingroup 266 | \setbeamertemplate{footline}{} 267 | \setbeamertemplate{background}{ 268 | \includegraphics[height=\paperheight]{\backgroundPath} 269 | } 270 | \begin{frame} 271 | \titlepage 272 | \end{frame} 273 | \endgroup 274 | } 275 | 276 | % Q&A page 277 | \newcommand{\QApage}{ 278 | \begingroup 279 | \setbeamertemplate{footline}{} 280 | \themecolor{colorbg} 281 | 282 | \begin{frame}{} 283 | \centering 284 | \begin{minipage}{\textwidth} 285 | \usebeamercolor[fg]{normal text} 286 | \centering 287 | \Huge $$\mathcal Q \& \mathcal A$$ 288 | \Large \qaStr 289 | \end{minipage} 290 | \end{frame} 291 | \endgroup 292 | } 293 | 294 | % bibliography page 295 | \newcommand{\bibliographpage}{ 296 | \section{References} 297 | 298 | \begingroup 299 | \themecolor{colorbg} 300 | \begin{frame}[allowframebreaks]{References}{\,} 301 | \tiny 302 | \printbibliography[heading=none] 303 | \end{frame} 304 | \endgroup 305 | } 306 | 307 | % --- commands --- 308 | % set colored hyperlinks command 309 | \newcommand{\bhref}[2]{\textcolor{airforceblue}{\href{#1}{#2}}} 310 | 311 | % centering paragraph statement 312 | \newcommand{\centerstate}[1]{ 313 | \centering 314 | \begin{columns} 315 | \begin{column}{0.8\textwidth} 316 | #1 317 | \end{column} 318 | \end{columns} 319 | } 320 | 321 | \newcommand{\tbf}[1]{\texttt{\textcolor{airforceblue}{[#1]}}} 322 | 323 | % coloured textbf 324 | \newcommand{\ctextbf}[1]{\textbf{\textcolor{maincolor}{#1}}} 325 | \newcommand{\btextbf}[1]{\textbf{\textcolor{airforceblue}{#1}}} 326 | 327 | % coloured textsl 328 | \newcommand{\ctextsl}[1]{\textsl{\textcolor{maincolor}{#1}}} 329 | \newcommand{\btextsl}[1]{\textsl{\textcolor{airforceblue}{#1}}} 330 | 331 | % coloured emph 332 | \newcommand{\cemph}[1]{\emph{\textcolor{maincolor}{#1}}} 333 | \newcommand{\bemph}[1]{\emph{\textcolor{airforceblue}{#1}}} 334 | 335 | % coloured texttt 336 | \newcommand{\ctexttt}[1]{\texttt{\textcolor{maincolor}{#1}}} 337 | \newcommand{\btexttt}[1]{\texttt{\textcolor{airforceblue}{#1}}} -------------------------------------------------------------------------------- /gallery/HIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/HIT.png -------------------------------------------------------------------------------- /gallery/PolyU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/PolyU.png -------------------------------------------------------------------------------- /gallery/Red Flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/Red Flag.png -------------------------------------------------------------------------------- /gallery/SAES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/SAES.png -------------------------------------------------------------------------------- /gallery/SWU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/SWU.png -------------------------------------------------------------------------------- /gallery/SZU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/SZU.png -------------------------------------------------------------------------------- /gallery/ZAFU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/ZAFU.png -------------------------------------------------------------------------------- /gallery/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/code.png -------------------------------------------------------------------------------- /gallery/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/end.png -------------------------------------------------------------------------------- /gallery/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/img.jpg -------------------------------------------------------------------------------- /gallery/math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/math.png -------------------------------------------------------------------------------- /gallery/subsection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/subsection.png -------------------------------------------------------------------------------- /gallery/table of contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/gallery/table of contents.png -------------------------------------------------------------------------------- /pre.tex: -------------------------------------------------------------------------------- 1 | \documentclass{beamer} 2 | \usepackage[polyu,en]{collegeBeamer} 3 | 4 | % when using Chinese, uncomment the following line 5 | % \usepackage{xeCJK} 6 | 7 | % meta-data 8 | \title{College Beamer\\ Presentation Themes} 9 | \subtitle{Using \LaTeX\ to prepare slides} 10 | \author{\href{mailto:qilong-kirov.liu@connect.polyu.hk}{Qi-long Liu (Kirov)}} 11 | \date{Created 22 May 2022\\Updated 20 Sep 2024} 12 | 13 | % document body 14 | \begin{document} 15 | 16 | \maketitle 17 | 18 | \begin{frame} 19 | This template is a secondary creation of \bhref{https://www.overleaf.com/latex/templates/sintef-presentation/jhbhdffczpnx}{SINTEF Presentation} template from \bhref{mailto:federico.zenith@sintef.no}{Federico Zenith} \vspace{\baselineskip} 20 | 21 | Following is a brief introduction written by \bhref{mailto:federico.zenith@sintef.no}{Federico Zenith} about how to use \LaTeX\ and beamer to prepare slides. All rights reserved by him\vspace{\baselineskip} 22 | 23 | This template is released under \bhref{https://creativecommons.org/licenses/by-nc/4.0/legalcode}{Creative Commons CC BY 4.0} license 24 | \end{frame} 25 | 26 | \section{Introduction} 27 | 28 | \begin{frame}{Beamer for SINTEF slides}{\thesection \, \secname} 29 | \begin{itemize} 30 | \item We assume you can use \LaTeX; if you cannot, \bhref{http://en.wikibooks.org/wiki/LaTeX/}{you can learn it here} 31 | \item Beamer is one of the most popular and powerful document classes for presentations in \LaTeX 32 | \item Beamer has also a detailed \bhref{http://www.ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf}{user manual} 33 | \item Here we will present only the most basic features to get you up to speed 34 | \end{itemize} 35 | \end{frame} 36 | 37 | \begin{frame}{Beamer vs. PowerPoint} 38 | Compared to PowerPoint, using \LaTeX\ is better because: 39 | \begin{itemize} 40 | \item It is not What-You-See-Is-What-You-Get, but 41 | What-You-\emph{Mean}-Is-What-You-Get:\\ 42 | you write the content, the computer does the typesetting 43 | \item Produces a \texttt{pdf}: no problems with fonts, formulas, program versions 44 | \item Easier to keep consistent style, fonts, highlighting, etc. 45 | \item Math typesetting in \TeX\ is the best: 46 | \begin{equation*} 47 | \mathrm{i}\,\hslash\frac{\partial}{\partial t} \Psi(\mathbf{r},t) = 48 | -\frac{\hslash^2}{2\,m}\nabla^2\Psi(\mathbf{r},t) 49 | + V(\mathbf{r})\Psi(\mathbf{r},t) 50 | \end{equation*} 51 | \end{itemize} 52 | \end{frame} 53 | 54 | \section{Editing} 55 | 56 | \begin{frame}[fragile]{Selecting the Class} 57 | After the last update to the graphic profile, the \texttt{sintef} theme for 58 | Beamer has been updated into a full-fledged class. 59 | To start working with \texttt{sintefbeamer}, start a \LaTeX\ document with the preamble: 60 | \begin{block}{Minimum Beamer Document} 61 | \begin{lstlisting}[language=TeX] 62 | \documentclass{beamer} 63 | \begin{document} 64 | \begin{frame}{Hello, world!} 65 | \end {frame} 66 | \end{document}\end{lstlisting} 67 | \end{block} 68 | \end{frame} 69 | 70 | \begin{frame}[fragile]{Title page} 71 | To set a typical title page, you call some commands in the preamble: 72 | \begin{block}{The Commands for the Title Page} 73 | \begin{lstlisting}[language=TeX] 74 | \title{Sample Title} 75 | \subtitle{Sample subtitle} 76 | \author{First Author, Second Author} 77 | \date{Defaults to today's}\end{lstlisting} 78 | \end{block} 79 | You can then write out the title page with \verb|\maketitle|. 80 | 81 | You can set a different background image than the default one with the \verb|\titlebackground| command, set before \verb|\maketitle|. 82 | 83 | In the \texttt{backgrounds} folder, you can find a lot of standard backgrounds for SINTEF presentation title pages. 84 | \end{frame} 85 | 86 | \begin{frame}[fragile]{Writing a Simple Slide} 87 | \framesubtitle{It's really easy!} 88 | \begin{itemize}[<+->] 89 | \item A typical slide has bulleted lists 90 | \item These can be uncovered in sequence 91 | \end{itemize} 92 | \begin{block}{Code for a Page with an Itemised List}<+-> 93 | \begin{lstlisting}[language=TeX] 94 | \begin{frame} 95 | \frametitle{Writing a Simple Slide} 96 | \framesubtitle{It's really easy!} 97 | \begin{itemize}[<+->] 98 | \item A typical slide has bulleted lists 99 | \item These can be uncovered in sequence 100 | \end{itemize} 101 | \end{frame}\end{lstlisting} 102 | \end{block} 103 | \end{frame} 104 | 105 | \begin{frame}[fragile]{Adding images} 106 | Adding images works like in normal \LaTeX: 107 | \begin{columns} 108 | \begin{column}{0.7\textwidth} 109 | \begin{block}{Code for Adding Images} 110 | \begin{lstlisting}[language=TeX] 111 | \usepackage{graphicx} 112 | % ... 113 | \includegraphics 114 | [width=\textwidth]{gallery/img.jpg} 115 | \end{lstlisting} 116 | \end{block} 117 | \end{column} 118 | \begin{column}{0.3\textwidth} 119 | \vskip5pt\includegraphics[width=\textwidth]{gallery/img.jpg} 120 | \end{column} 121 | \end{columns} 122 | \end{frame} 123 | 124 | \begin{frame}[fragile]{Splitting in Columns} 125 | Splitting the page is easy and common; typically, one side has a picture and the other text: 126 | \begin{columns} 127 | \begin{column}{0.6\textwidth} 128 | This is the first column 129 | \end{column} 130 | \begin{column}{0.3\textwidth} 131 | And this the second 132 | \end{column} 133 | \end{columns} 134 | \begin{block}{Column Code} 135 | \begin{lstlisting}[language=TeX] 136 | \begin{columns} 137 | \begin{column}{0.6\textwidth} 138 | This is the first column 139 | \end{column} 140 | \begin{column}{0.3\textwidth} 141 | And this the second 142 | \end{column} 143 | % There could be more! 144 | \end{columns}\end{lstlisting} 145 | \end{block} 146 | \end{frame} 147 | 148 | \begin{frame}[fragile] 149 | \frametitle{Fonts} 150 | \begin{itemize} 151 | \item The paramount task of fonts is being readable 152 | \item There are good ones... 153 | \begin{itemize} 154 | \item {\textrm{Use serif fonts only with high-definition projectors}} 155 | \item {\textsf{Use sans-serif fonts otherwise (or if you simply prefer them)}} 156 | \end{itemize} 157 | \item ... and not so good ones: 158 | \begin{itemize} 159 | \item {\texttt{Never use monospace for normal text}} 160 | \item {\frakfamily Gothic, calligraphic or weird fonts: should always: be 161 | avoided} 162 | \end{itemize} 163 | \end{itemize} 164 | \end{frame} 165 | 166 | \begin{frame}[fragile]{Look} 167 | \begin{itemize} 168 | \item To change the colour of the title dash, give one of the class options \texttt{cyandash} (default), \texttt{greendash}, \texttt{magentadash}, \texttt{yellowdash}, or \texttt{nodash}. 169 | \item To change between the light and dark themes, give the class options \texttt{light} (default) or \texttt{dark}. It is not possible to switch theme for one slide because of the design of Beamer---and it's probably a good thing. 170 | \item To insert a final slide, use \verb|\backmatter|. 171 | \item The aspect ratio defaults to 16:9, but you can change it to 4:3 for old projectors by passing the class option \texttt{aspectratio=43}; any other values accepted by Beamer are also possible. 172 | \end{itemize} 173 | \end{frame} 174 | 175 | \section{Summary} 176 | 177 | \begin{frame} 178 | \frametitle{Good Luck!} 179 | \begin{itemize} 180 | \item Enough for an introduction! You should know enough by now 181 | \item If you have corrections or suggestions, \bhref{mailto:federico.zenith@sintef.no}{send them to me!} 182 | \end{itemize} 183 | \end{frame} 184 | 185 | \QApage 186 | 187 | \end{document} 188 | -------------------------------------------------------------------------------- /src/HIT/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/HIT/background.png -------------------------------------------------------------------------------- /src/HIT/color-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/HIT/color-logo.png -------------------------------------------------------------------------------- /src/HIT/trans-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/HIT/trans-logo.png -------------------------------------------------------------------------------- /src/PolyU/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/PolyU/background.png -------------------------------------------------------------------------------- /src/PolyU/color-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/PolyU/color-logo.png -------------------------------------------------------------------------------- /src/PolyU/trans-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/PolyU/trans-logo.png -------------------------------------------------------------------------------- /src/Red/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/Red/background.png -------------------------------------------------------------------------------- /src/Red/color-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/Red/color-logo.png -------------------------------------------------------------------------------- /src/Red/trans-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/Red/trans-logo.png -------------------------------------------------------------------------------- /src/SAES/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/SAES/background.png -------------------------------------------------------------------------------- /src/SAES/color-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/SAES/color-logo.png -------------------------------------------------------------------------------- /src/SAES/trans-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/SAES/trans-logo.png -------------------------------------------------------------------------------- /src/SWU/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/SWU/background.png -------------------------------------------------------------------------------- /src/SWU/color-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/SWU/color-logo.png -------------------------------------------------------------------------------- /src/SWU/trans-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/SWU/trans-logo.png -------------------------------------------------------------------------------- /src/SZU/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/SZU/background.png -------------------------------------------------------------------------------- /src/SZU/color-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/SZU/color-logo.png -------------------------------------------------------------------------------- /src/SZU/trans-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/SZU/trans-logo.png -------------------------------------------------------------------------------- /src/ZAFU/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/ZAFU/background.png -------------------------------------------------------------------------------- /src/ZAFU/color-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/ZAFU/color-logo.png -------------------------------------------------------------------------------- /src/ZAFU/trans-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu-qilong/college-beamer/ab62463b252f879f63917794654a69eded7c34bf/src/ZAFU/trans-logo.png --------------------------------------------------------------------------------