├── .gitignore ├── LICENSE ├── Apache License.txt └── SIL Open Font License.txt ├── README.md ├── config ├── custom-command.tex ├── presento-config.tex └── presento.sty ├── demo ├── BoS_final_presentation.pdf ├── presento.pdf └── setta_presentation.pdf ├── fonts ├── AlegreyaSansSC-Regular.otf ├── Inconsolata.otf ├── Lato-Lig.ttf ├── Montserrat-Bold.ttf ├── Montserrat-Regular.ttf ├── NotoSans-Bold.ttf ├── NotoSans-BoldItalic.ttf ├── NotoSans-Italic.ttf └── NotoSans-Regular.ttf ├── images └── skeleton.jpg ├── presento.fdb_latexmk ├── presento.fls ├── presento.pdf ├── presento.tex ├── sections └── content.tex └── templates ├── end-template.tex └── title-template.tex /.gitignore: -------------------------------------------------------------------------------- 1 | # LaTeX temporary files 2 | *.aux 3 | *.log 4 | *.toc 5 | 6 | # SyncTeX 7 | *.synctex.gz 8 | 9 | # LaTeX Beamer 10 | *.snm 11 | *.vrb 12 | *.nav 13 | *.out 14 | 15 | # BibTeX 16 | *.bbl 17 | *.blg 18 | 19 | # Sublime Text Project Files (usually contain absolute paths) 20 | *.sublime-project 21 | *.sublime-workspace 22 | 23 | # Backup files 24 | *~ 25 | *.backup 26 | *.tex.backup 27 | -------------------------------------------------------------------------------- /LICENSE/Apache License.txt: -------------------------------------------------------------------------------- 1 | Copyright 2012 Google Inc. All Rights Reserved. 2 | 3 | Apache License 4 | Version 2.0, January 2004 5 | http://www.apache.org/licenses/ 6 | 7 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 8 | 9 | 1. Definitions. 10 | 11 | "License" shall mean the terms and conditions for use, reproduction, 12 | and distribution as defined by Sections 1 through 9 of this document. 13 | 14 | "Licensor" shall mean the copyright owner or entity authorized by 15 | the copyright owner that is granting the License. 16 | 17 | "Legal Entity" shall mean the union of the acting entity and all 18 | other entities that control, are controlled by, or are under common 19 | control with that entity. For the purposes of this definition, 20 | "control" means (i) the power, direct or indirect, to cause the 21 | direction or management of such entity, whether by contract or 22 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 23 | outstanding shares, or (iii) beneficial ownership of such entity. 24 | 25 | "You" (or "Your") shall mean an individual or Legal Entity 26 | exercising permissions granted by this License. 27 | 28 | "Source" form shall mean the preferred form for making modifications, 29 | including but not limited to software source code, documentation 30 | source, and configuration files. 31 | 32 | "Object" form shall mean any form resulting from mechanical 33 | transformation or translation of a Source form, including but 34 | not limited to compiled object code, generated documentation, 35 | and conversions to other media types. 36 | 37 | "Work" shall mean the work of authorship, whether in Source or 38 | Object form, made available under the License, as indicated by a 39 | copyright notice that is included in or attached to the work 40 | (an example is provided in the Appendix below). 41 | 42 | "Derivative Works" shall mean any work, whether in Source or Object 43 | form, that is based on (or derived from) the Work and for which the 44 | editorial revisions, annotations, elaborations, or other modifications 45 | represent, as a whole, an original work of authorship. For the purposes 46 | of this License, Derivative Works shall not include works that remain 47 | separable from, or merely link (or bind by name) to the interfaces of, 48 | the Work and Derivative Works thereof. 49 | 50 | "Contribution" shall mean any work of authorship, including 51 | the original version of the Work and any modifications or additions 52 | to that Work or Derivative Works thereof, that is intentionally 53 | submitted to Licensor for inclusion in the Work by the copyright owner 54 | or by an individual or Legal Entity authorized to submit on behalf of 55 | the copyright owner. For the purposes of this definition, "submitted" 56 | means any form of electronic, verbal, or written communication sent 57 | to the Licensor or its representatives, including but not limited to 58 | communication on electronic mailing lists, source code control systems, 59 | and issue tracking systems that are managed by, or on behalf of, the 60 | Licensor for the purpose of discussing and improving the Work, but 61 | excluding communication that is conspicuously marked or otherwise 62 | designated in writing by the copyright owner as "Not a Contribution." 63 | 64 | "Contributor" shall mean Licensor and any individual or Legal Entity 65 | on behalf of whom a Contribution has been received by Licensor and 66 | subsequently incorporated within the Work. 67 | 68 | 2. Grant of Copyright License. Subject to the terms and conditions of 69 | this License, each Contributor hereby grants to You a perpetual, 70 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 71 | copyright license to reproduce, prepare Derivative Works of, 72 | publicly display, publicly perform, sublicense, and distribute the 73 | Work and such Derivative Works in Source or Object form. 74 | 75 | 3. Grant of Patent License. Subject to the terms and conditions of 76 | this License, each Contributor hereby grants to You a perpetual, 77 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 78 | (except as stated in this section) patent license to make, have made, 79 | use, offer to sell, sell, import, and otherwise transfer the Work, 80 | where such license applies only to those patent claims licensable 81 | by such Contributor that are necessarily infringed by their 82 | Contribution(s) alone or by combination of their Contribution(s) 83 | with the Work to which such Contribution(s) was submitted. If You 84 | institute patent litigation against any entity (including a 85 | cross-claim or counterclaim in a lawsuit) alleging that the Work 86 | or a Contribution incorporated within the Work constitutes direct 87 | or contributory patent infringement, then any patent licenses 88 | granted to You under this License for that Work shall terminate 89 | as of the date such litigation is filed. 90 | 91 | 4. Redistribution. You may reproduce and distribute copies of the 92 | Work or Derivative Works thereof in any medium, with or without 93 | modifications, and in Source or Object form, provided that You 94 | meet the following conditions: 95 | 96 | (a) You must give any other recipients of the Work or 97 | Derivative Works a copy of this License; and 98 | 99 | (b) You must cause any modified files to carry prominent notices 100 | stating that You changed the files; and 101 | 102 | (c) You must retain, in the Source form of any Derivative Works 103 | that You distribute, all copyright, patent, trademark, and 104 | attribution notices from the Source form of the Work, 105 | excluding those notices that do not pertain to any part of 106 | the Derivative Works; and 107 | 108 | (d) If the Work includes a "NOTICE" text file as part of its 109 | distribution, then any Derivative Works that You distribute must 110 | include a readable copy of the attribution notices contained 111 | within such NOTICE file, excluding those notices that do not 112 | pertain to any part of the Derivative Works, in at least one 113 | of the following places: within a NOTICE text file distributed 114 | as part of the Derivative Works; within the Source form or 115 | documentation, if provided along with the Derivative Works; or, 116 | within a display generated by the Derivative Works, if and 117 | wherever such third-party notices normally appear. The contents 118 | of the NOTICE file are for informational purposes only and 119 | do not modify the License. You may add Your own attribution 120 | notices within Derivative Works that You distribute, alongside 121 | or as an addendum to the NOTICE text from the Work, provided 122 | that such additional attribution notices cannot be construed 123 | as modifying the License. 124 | 125 | You may add Your own copyright statement to Your modifications and 126 | may provide additional or different license terms and conditions 127 | for use, reproduction, or distribution of Your modifications, or 128 | for any such Derivative Works as a whole, provided Your use, 129 | reproduction, and distribution of the Work otherwise complies with 130 | the conditions stated in this License. 131 | 132 | 5. Submission of Contributions. Unless You explicitly state otherwise, 133 | any Contribution intentionally submitted for inclusion in the Work 134 | by You to the Licensor shall be under the terms and conditions of 135 | this License, without any additional terms or conditions. 136 | Notwithstanding the above, nothing herein shall supersede or modify 137 | the terms of any separate license agreement you may have executed 138 | with Licensor regarding such Contributions. 139 | 140 | 6. Trademarks. This License does not grant permission to use the trade 141 | names, trademarks, service marks, or product names of the Licensor, 142 | except as required for reasonable and customary use in describing the 143 | origin of the Work and reproducing the content of the NOTICE file. 144 | 145 | 7. Disclaimer of Warranty. Unless required by applicable law or 146 | agreed to in writing, Licensor provides the Work (and each 147 | Contributor provides its Contributions) on an "AS IS" BASIS, 148 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 149 | implied, including, without limitation, any warranties or conditions 150 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 151 | PARTICULAR PURPOSE. You are solely responsible for determining the 152 | appropriateness of using or redistributing the Work and assume any 153 | risks associated with Your exercise of permissions under this License. 154 | 155 | 8. Limitation of Liability. In no event and under no legal theory, 156 | whether in tort (including negligence), contract, or otherwise, 157 | unless required by applicable law (such as deliberate and grossly 158 | negligent acts) or agreed to in writing, shall any Contributor be 159 | liable to You for damages, including any direct, indirect, special, 160 | incidental, or consequential damages of any character arising as a 161 | result of this License or out of the use or inability to use the 162 | Work (including but not limited to damages for loss of goodwill, 163 | work stoppage, computer failure or malfunction, or any and all 164 | other commercial damages or losses), even if such Contributor 165 | has been advised of the possibility of such damages. 166 | 167 | 9. Accepting Warranty or Additional Liability. While redistributing 168 | the Work or Derivative Works thereof, You may choose to offer, 169 | and charge a fee for, acceptance of support, warranty, indemnity, 170 | or other liability obligations and/or rights consistent with this 171 | License. However, in accepting such obligations, You may act only 172 | on Your own behalf and on Your sole responsibility, not on behalf 173 | of any other Contributor, and only if You agree to indemnify, 174 | defend, and hold each Contributor harmless for any liability 175 | incurred by, or claims asserted against, such Contributor by reason 176 | of your accepting any such warranty or additional liability. 177 | 178 | END OF TERMS AND CONDITIONS 179 | 180 | APPENDIX: How to apply the Apache License to your work. 181 | 182 | To apply the Apache License to your work, attach the following 183 | boilerplate notice, with the fields enclosed by brackets "[]" 184 | replaced with your own identifying information. (Don't include 185 | the brackets!) The text should be enclosed in the appropriate 186 | comment syntax for the file format. We also recommend that a 187 | file or class name and description of purpose be included on the 188 | same "printed page" as the copyright notice for easier 189 | identification within third-party archives. 190 | 191 | Copyright [yyyy] [name of copyright owner] 192 | 193 | Licensed under the Apache License, Version 2.0 (the "License"); 194 | you may not use this file except in compliance with the License. 195 | You may obtain a copy of the License at 196 | 197 | http://www.apache.org/licenses/LICENSE-2.0 198 | 199 | Unless required by applicable law or agreed to in writing, software 200 | distributed under the License is distributed on an "AS IS" BASIS, 201 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 202 | See the License for the specific language governing permissions and 203 | limitations under the License. -------------------------------------------------------------------------------- /LICENSE/SIL Open Font License.txt: -------------------------------------------------------------------------------- 1 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 2 | This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL 3 | 4 | ----------------------------------------------------------- 5 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 6 | ----------------------------------------------------------- 7 | 8 | PREAMBLE 9 | The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. 10 | 11 | The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. 12 | 13 | DEFINITIONS 14 | "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. 15 | 16 | "Reserved Font Name" refers to any names specified as such after the copyright statement(s). 17 | 18 | "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). 19 | 20 | "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. 21 | 22 | "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. 23 | 24 | PERMISSION & CONDITIONS 25 | Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 26 | 27 | 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 28 | 29 | 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 30 | 31 | 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 32 | 33 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 34 | 35 | 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. 36 | 37 | TERMINATION 38 | This license becomes null and void if any of the above conditions are not met. 39 | 40 | DISCLAIMER 41 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | presento 2 | ======== 3 | 4 | Presento is a clean, simple and extensible template for presentations — supported by XeTeX and Beamer. XeTeX is a TeX typesetting engine that can be [thought](http://tex.stackexchange.com/questions/3393/what-is-xetex-exactly-and-why-should-i-use-it) of as standard LaTeX (pdftex) with support for Open Type Fonts. Beamer is a widely used LaTeX class for presentations and slides. 5 | 6 | ## See in action 7 | 8 | * [Minimal demo](demo/presento.pdf) (PDF) — compiled version of presento.tex 9 | * A [group presentation](demo/BoS_final_presentation.pdf) (PDF) for a class project for a course on 'Business of Software' 10 | * A [research presentation](demo/setta_presentation.pdf) on (broadly) theoretical computer science 11 | 12 | ## Installation 13 | 14 | For novice TeX users, it is highly recommended to use [Overleaf](https://www.overleaf.com/latex/templates/presento-beamer-theme/knsxtwmfpttq), a fascinating online TeX editor. The installation is as simple as downloading presento and uploading to Overleaf as a new project. Disclaimer: I am an external [advisor](https://www.overleaf.com/advisors) to Overleaf and often [advocate](https://www.overleaf.com/blog/267-overleaf-advisor-of-the-month-ratul-saha) for TeX and Overleaf. 15 | 16 | To use presento in your local computer, install XeTeX and the compulsory packages listed below. These mostly come as part of the popular TeX engines like [MiKTeX](http://miktex.org/). 17 | 18 | Compulsory packages: 19 | * `xcolor` (used for adding colors) 20 | * `fontspec` (supports for custom local fonts) 21 | * `setspace` (handles the spacing between lines) 22 | * `tikz` (used to draw for various shapes) 23 | * `enumitem` (custom lists) 24 | 25 | ## Fonts 26 | 27 | The primary fonts in use are [Montserrat](http://montserrat.zkysky.com.ar/en) by Julieta Ulanovsky, [Lato](http://www.latofonts.com/) (Light) by Łukasz Dziedzic and [Noto](https://www.google.com/get/noto) Sans by Google. For small caps, [Algreya Sans](http://www.huertatipografica.com/fonts/alegreya-sans-ht) (small caps variation) by Juan Pablo del Peral is used. [Inconsolata](http://en.wikipedia.org/wiki/Inconsolata) by Raph Levien is used as a monospaced font. 28 | 29 | Except Noto Sans, which is licensed under Apache License v2.00, all other fonts used are under SIL Open Font License v1.10. In short, all the fonts are free to use and redistribute under the terms of the respective licenses. 30 | 31 | The fonts and their usage are already baked into the template. However for custom use, the following LaTeX commands (without any arguments) are provided: `\montserratfont`, `\notosansfont`, `\latolightfont`,`\inconsolatafont`. 32 | 33 | ## Colors 34 | 35 | The color palette is vibrant, bold yet minimal. The following colors can be used with the `\color{colorName}` command. 36 | 37 | * `colorlgray`: #FAFAFA (light gray) 38 | * `colordgray`: #795548 (dark gray) 39 | * `colorhgray`: #212121 (heavy dark gray) 40 | * `colororange`: #E65100 (orange) 41 | * `colorgreen`: #009688 (green) 42 | * `colorblue`: #0277BB (blue) 43 | 44 | ## Custom Macros 45 | 46 | * `\hugetext{text}`: sets the huge, bold text. It should only be used for short and bold statements. 47 | * `\largetext{text}`: sets a large text. It should be used as subheadings, lines with less than 40 characters. 48 | * `\setnote{text}`: sets a smaller text with color gray. It should be used for showing notes such as url, references etc. 49 | * `\framecard[optionalColor]{mainText}`: sets the big bold mainText at center with a background color of optionalColor, which is colorgreen by default. It should be used for flashing ideas, introducing subsections etc. 50 | * `\framepic[optionalOpacity]{image}{content}`: sets the image as a background of the full frame with opacity set to optionalOpacity. The frame may have content inside. 51 | 52 | ## Custom environments 53 | 54 | * `\begin{baseitemize} \end{baseitemize}`: this is standard itemize without any indentation. It should be used for normal listing. 55 | * `\begin{fullpageitemize} \end{fullpageitemize}`: this is used for listing in full frame. The items in the list are properly spaced. It should be used for listing points in one full frame. 56 | 57 | ## Concluding remarks 58 | 59 | The typography and design principles have been largly influenced by notable designers around the world. Sincere thanks goes to [Prof. Dr.-Ing. André Miede](http://www.miede.de/) (developer of [Classicthesis](https://code.google.com/p/classicthesis/)), [Robert Bringhurst](http://en.wikipedia.org/wiki/Robert_Bringhurst) (author of 'The Elements of Typographic Style'), [Richard Rutter](http://clagnut.com/) (creator of The Elements of Typographic Style Applied to the Web), Tim Brown (developer of [Modular Scale](http://modularscale.com)), designers at [Google](https://google.com/design) among others. 60 | 61 | This work is not licensed. Feel free to use, modify, redistribute. Comments and suggestions are welcome! 62 | 63 | ## FAQ 64 | 65 | 66 | ##### How do I add customize the template? 67 | You can change the title, subtitle etc in config/presento-config.tex. If you want to add new packages or newcommands, put them in config/custom-command.tex. An example of `\usepackage{textpos}` etc are already present (but not compulsory for the basic template). 68 | 69 | However, if you want to _change_ the template, feel free to modify config/presento.sty. Be brave! 70 | 71 | ##### While using `\framepic`, why is the image not shown in full screen? 72 | 73 | Please check the image size and aspect ratio. While not obligatory for any rules, you may want to note that the standard beamer template size is 12.8cm x 9.6cm. 74 | 75 | ##### How do I change the font sizes? 76 | The spacing and font sizes are carefully designed. Change font sizes by using `\fontsize{size}{leading}\selectfont` only if you are sure of what you are doing. 77 | 78 | ##### Why does the text in my presentation look pale? 79 | High contrast of black-white is not advisable for presenting with high quality projectors. Thus the background is set to light gray and the text color is set to heavy dark gray. If you are unsure about the quality of the projector and/or the text looks pale, comment out the following in config/presento-config.tex: 80 | ``` 81 | \setbeamercolor{background canvas}{bg=colorlgray} 82 | \setbeamercolor{normal text}{fg=colorhgray} 83 | ``` 84 | 85 | ##### Do I need to download the fonts? 86 | No, the fonts are already present in the fonts/ subfolder. The corresponding licenses can be found in LICENSE/ subfolder. 87 | 88 | ##### How do I add bullet points to items in `baseitemize` of `fullpageitemize`? 89 | Use `\itemR` instead of `\item`. 90 | -------------------------------------------------------------------------------- /config/custom-command.tex: -------------------------------------------------------------------------------- 1 | % custom packages 2 | \usepackage{textpos} 3 | \setlength{\TPHorizModule}{1cm} 4 | \setlength{\TPVertModule}{1cm} 5 | 6 | \newcommand\crule[1][black]{\textcolor{#1}{\rule{2cm}{2cm}}} 7 | 8 | -------------------------------------------------------------------------------- /config/presento-config.tex: -------------------------------------------------------------------------------- 1 | % Sets the background color to be light gray and the default text color to be heavy dark gray. 2 | % Recommended for presenting with high quality projectors, since the high contrast of black-white is not advisable 3 | \setbeamercolor{background canvas}{bg=colorlgray} 4 | \setbeamercolor{normal text}{fg=colorhgray} 5 | 6 | % personal data 7 | \newcommand{\myTitle}{\color{colorblue}\hugetext{PRESENTO\\}{\montserratfont\largetext{clean, simple and extensible}}} 8 | \newcommand{\myName}{\largetext{\color{orange}{Ratul Saha}}\\\setnote{www.ratulsaha.com}} 9 | \newcommand{\myDetails}{\setnote{\today}} 10 | 11 | %sty file 12 | \usepackage{config/presento} 13 | 14 | % custom command and packages 15 | \input{config/custom-command} 16 | -------------------------------------------------------------------------------- /config/presento.sty: -------------------------------------------------------------------------------- 1 | \ProvidesPackage{config/presento} 2 | \mode 3 | 4 | % removing navigation symbols 5 | \setbeamertemplate{navigation symbols}{} 6 | 7 | % packages 8 | \usepackage{xcolor} 9 | \usepackage{fontspec} 10 | \usepackage{setspace} 11 | \usepackage{tikz} 12 | \usepackage{enumitem} 13 | 14 | % colors 15 | \definecolor{colororange}{HTML}{E65100} % orange 16 | \definecolor{colordgray}{HTML}{795548} % dark gray for note 17 | \definecolor{colorhgray}{HTML}{212121} % heavy dark gray for normal text 18 | \definecolor{colorgreen}{HTML}{009688} % green 19 | \definecolor{colorlgray}{HTML}{FAFAFA} % background light gray 20 | \definecolor{colorblue}{HTML}{0277BB} % blue 21 | 22 | % font sizes 23 | \newcommand{\fontsizeone}{2.292em} 24 | \newcommand{\fontsizetwo}{1.217em} 25 | \newcommand{\fontsizethree}{0.875em} 26 | % line spaces 27 | \newcommand{\linespaceone}{2} 28 | 29 | % font families 30 | \newfontfamily{\montserratfont}[Path=fonts/,BoldFont=Montserrat-Bold]{Montserrat-Regular} 31 | \newfontfamily{\notosansfont}[Path=fonts/,BoldFont=NotoSans-Bold,ItalicFont=NotoSans-Italic,BoldItalicFont=NotoSans-BoldItalic,SmallCapsFont=AlegreyaSansSC-Regular]{NotoSans-Regular} 32 | \newfontfamily{\latolightfont}[Path=fonts/]{Lato-Lig} 33 | \newfontfamily{\inconsolatafont}[Path=fonts/]{Inconsolata} 34 | 35 | % beamer template changes 36 | \setbeamertemplate{frametitle}{ 37 | \vspace{0.40em} 38 | \noindent 39 | \hspace{-1.22em} 40 | \tikz[overlay,remember picture,baseline=0.3em]{\fill[fill=colorblue] (-0.3,0.05) rectangle (0,0.9); }\latolightfont\color{colorblue}~~\insertframetitle% 41 | } 42 | 43 | \setmainfont[Ligatures=TeX,Path=fonts/,BoldFont=NotoSans-Bold,ItalicFont=NotoSans-Italic,BoldItalicFont=NotoSans-BoldItalic,SmallCapsFont=AlegreyaSansSC-Regular]{NotoSans-Regular} 44 | \setsansfont[Ligatures=TeX,Path=fonts/,BoldFont=NotoSans-Bold,ItalicFont=NotoSans-Italic,BoldItalicFont=NotoSans-BoldItalic,SmallCapsFont=AlegreyaSansSC-Regular]{NotoSans-Regular} 45 | \setmonofont[Ligatures=TeX,Path=fonts/,SmallCapsFont=AlegreyaSansSC-Regular]{Inconsolata} 46 | 47 | % frame counter 48 | \newcounter{totalfr} 49 | \setbeamertemplate{footline}{ 50 | \ifnum\inserttotalframenumber=1 51 | \setcounter{totalfr}{2} 52 | \else 53 | \setcounter{totalfr}{\inserttotalframenumber} 54 | \fi 55 | \hfill{ 56 | \tikz{ 57 | \filldraw[fill=colorblue!40, draw=colorblue!50] (0,0) -- (0.2,0) arc (0:{180 * \value{framenumber} / \value{totalfr} + 180 * \value{framenumber} / \value{totalfr}}:0.2) -- (0,0); 58 | \node at (0,0) {\normalsize \color{colororange}\tiny{\insertframenumber}}; 59 | } 60 | } 61 | \hspace{2em} 62 | \vspace*{1em} 63 | } 64 | 65 | % custom commands 66 | \newcommand{\hugetext}[1]{ 67 | { 68 | \begin{spacing}{\linespaceone} 69 | \fontsize{\fontsizeone}{\fontsizeone}{\montserratfont #1} 70 | \end{spacing} 71 | } 72 | } 73 | 74 | \newcommand{\largetext}[1]{ 75 | {\fontsize{\fontsizetwo}{\fontsizeone}\selectfont{#1}} 76 | } 77 | 78 | \newcommand{\setnote}[1]{ 79 | {\fontsize{\fontsizethree}{\fontsizeone}\selectfont\color{colordgray}{#1}} 80 | } 81 | 82 | \newcommand{\rtarrow}{$\color{colorblue}{\rightarrow}$} 83 | 84 | \newcommand{\itemR}{ 85 | \item[\rtarrow] 86 | } 87 | 88 | \newcommand{\framecard}[2][colorgreen]{ 89 | {\setbeamercolor{background canvas}{bg=#1} 90 | \begin{frame}[plain] 91 | \vfill 92 | \begin{center} 93 | {#2} 94 | \end{center} 95 | \vfill 96 | \end{frame} 97 | } 98 | } 99 | \newcommand{\framepic}[3][1]{ 100 | { 101 | \usebackgroundtemplate{% 102 | \tikz[overlay,remember picture] \node[opacity=#1, at=(current page.center)] { 103 | \includegraphics[width=\paperwidth]{#2}}; 104 | } 105 | \begin{frame} 106 | #3 107 | \end{frame} 108 | } 109 | } 110 | 111 | \newenvironment{baseitemize} 112 | {\itemize[leftmargin=*]} 113 | {\enditemize} 114 | 115 | \newenvironment{fullpageitemize} 116 | {\itemize[nolistsep,itemsep=\fill,leftmargin=*]} 117 | {\vfill\enditemize} 118 | -------------------------------------------------------------------------------- /demo/BoS_final_presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/demo/BoS_final_presentation.pdf -------------------------------------------------------------------------------- /demo/presento.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/demo/presento.pdf -------------------------------------------------------------------------------- /demo/setta_presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/demo/setta_presentation.pdf -------------------------------------------------------------------------------- /fonts/AlegreyaSansSC-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/fonts/AlegreyaSansSC-Regular.otf -------------------------------------------------------------------------------- /fonts/Inconsolata.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/fonts/Inconsolata.otf -------------------------------------------------------------------------------- /fonts/Lato-Lig.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/fonts/Lato-Lig.ttf -------------------------------------------------------------------------------- /fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /fonts/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/fonts/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/NotoSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/fonts/NotoSans-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/NotoSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/fonts/NotoSans-Italic.ttf -------------------------------------------------------------------------------- /fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /images/skeleton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/images/skeleton.jpg -------------------------------------------------------------------------------- /presento.fdb_latexmk: -------------------------------------------------------------------------------- 1 | # Fdb version 3 2 | ["pdflatex"] 1485627447 "presento.tex" "presento.pdf" "presento" 1485627455 3 | "/etc/texmf/web2c/texmf.cnf" 1471677984 1101 af7716885e081ab43982cab7b4672c1a "" 4 | "/usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map" 1272929888 3287 e6b82fe08f5336d4d5ebc73fb1152e87 "" 5 | "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr12.tfm" 1136768653 1288 655e228510b4c2a1abe905c368440826 "" 6 | "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmss12.tfm" 1136768653 1324 37b971caf729d7edd9cbb9f9b0ea76eb "" 7 | "/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty" 1284331290 1458 43ab4710dc82f3edeabecd0d099626b2 "" 8 | "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty" 1338332114 189108 8b3553a56c83ff61acecb36b75d817e2 "" 9 | "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty" 1338332114 70752 45fa392800e07da61fa13446ad46b34d "" 10 | "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty" 1303254447 7140 ece2cc23d9f20e1f53975ac167f42d3e "" 11 | "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifvtex.sty" 1335995445 6797 68c89f65e01894df882dd523d3fc0a8f "" 12 | "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty" 1335995445 8253 3bdedc8409aa5d290a2339be6f09af03 "" 13 | "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty" 1335995445 18425 775b341047ce304520cc7c11ca41392e "" 14 | "/usr/share/texlive/texmf-dist/tex/latex/amscls/amsthm.sty" 1361575838 13294 f63af559496acbb4ffecc2de353745eb "" 15 | "/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty" 1359763108 5949 3f3fd50a8cc94c3d4cbf4fc66cd3df1c "" 16 | "/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty" 1359763108 13829 94730e64147574077f8ecfea9bb69af4 "" 17 | "/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty" 1362954379 2412 2d98314dc5be38f455f8890deeb2d091 "" 18 | "/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty" 1362954379 4357 ad30ad08920902fc9b38caf35a3b0496 "" 19 | "/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty" 1362954379 79178 b2e326c351e876df0e5e23df2e02441b "" 20 | "/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty" 1362954379 4082 502152465aedb8f6a3c4b0b7c0fa8ae5 "" 21 | "/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty" 1362954379 2637 846ebe982d3549c7ede7ce135456f54a "" 22 | "/usr/share/texlive/texmf-dist/tex/latex/etex-pkg/etex.sty" 1214928088 15274 9f6a2469ac8ebe6168e12b8f32cbe599 "" 23 | "/usr/share/texlive/texmf-dist/tex/latex/extsizes/size14.clo" 1137110130 6214 cc6d832fdd2fc5f4a20ee1a002f45d0f "" 24 | "/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty" 1369177509 9565 f9ec1d8d5e5344cdfa4f4e6c30e6dd3e "" 25 | "/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty" 1284422013 40502 e003406220954b0716679d7928aedd8a "" 26 | "/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty" 1254151804 14183 42a8fc761b806986eef292369afc2988 "" 27 | "/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty" 1156702488 7882 3bd78469d444e8d494e27cfd7ca92719 "" 28 | "/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty" 1156702488 2266 7054435e4584a41cf53b0a7ca624d0cb "" 29 | "/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty" 1156702488 3153 c50e6bd54d2dd3933fc52bcf369bec4a "" 30 | "/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def" 1352416072 51837 247bd8424b3835ef78c236dc1e0b4aef "" 31 | "/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty" 1352416072 231792 5fc9dc7dd667e773a766ecc63bba7f4b "" 32 | "/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def" 1352416072 14005 155ac8fad2e5dd7c2cdd130fabd96633 "" 33 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty" 1389135963 13702 32bd854cda89e9cbc752000eb5050133 "" 34 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3basics.sty" 1389135963 31882 d8562c33e88eb0a3c61b855de788c166 "" 35 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3bootstrap.sty" 1389135963 7659 3b527d802660b0027b488281a2283d27 "" 36 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3box.sty" 1375048433 11043 28f6c6462c9d97c63accc3d0218f8895 "" 37 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3candidates.sty" 1389135963 36583 bff38e31538f090c8d189ff0c9e42c40 "" 38 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3clist.sty" 1375048433 16259 413a31ee439e8fa54783c8a0f93f77db "" 39 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3coffins.sty" 1388616988 31250 b1ad2c0085e23c9258e129ec1f721c81 "" 40 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3color.sty" 1346435935 2332 c2c00b7482ea194bbdab8ee387421171 "" 41 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3expan.sty" 1389135963 16350 b12958a90466c374efb8313fded959e4 "" 42 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3file.sty" 1381789809 18829 b233502287b49b31429390eb038eedde "" 43 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3fp.sty" 1389135963 189171 365a7b99569d4f29bf6bbcf4ea821bf5 "" 44 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3int.sty" 1381277850 22825 5c0ca9494e177f123cf967a46f2fbb40 "" 45 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3keys.sty" 1388616988 30214 77d8525bc2bb248b691a06fa736c99af "" 46 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3luatex.sty" 1375048433 5908 d4624ab117b929bcdbb742b275fa53c0 "" 47 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3msg.sty" 1375048433 26420 4e3ce16d867f1f052212a9f84c7fe78a "" 48 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3names.sty" 1389135963 30606 14bf27c54a27d596affc4d46db658f5c "" 49 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3prg.sty" 1389135963 11855 7228ac725aac5778f141c54243029b32 "" 50 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3prop.sty" 1388616988 10636 207a579c352f87e71b4825978b222eb3 "" 51 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3quark.sty" 1388616988 5290 ab2a0254bfa14d5a586c5fe0fc9c0f8e "" 52 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3seq.sty" 1388616988 17921 9e29c609f42ec0510d1de6079337756d "" 53 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3skip.sty" 1375048433 15513 090b7d1598b55ad9e92866b461414ea0 "" 54 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3tl.sty" 1388616988 25912 70f28be46fc8128dec7115f9bbc84ecf "" 55 | "/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3token.sty" 1381277850 24973 abc0863844c089e8122103e3eac0d5a5 "" 56 | "/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty" 1388616988 56461 9e4b18409799e3d28c8e9d0f5b500179 "" 57 | "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg" 1254097189 802 7b8c8d72c24d795ed7720e4dfd29bff3 "" 58 | "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg" 1278958963 3563 d35e897cae3b8c6848f6677b73370b54 "" 59 | "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg" 1254097189 235 6031e5765137be07eed51a510b2b8fb7 "" 60 | "/usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty" 1177890616 3878 6aa7c08ff2621006e0603349e40a30a8 "" 61 | "/usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty" 1303254447 3834 707ef09f31d7d2ea47ba89974755dfe0 "" 62 | "/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty" 1335995445 22417 c74ff4af6a1aa2b65d1924020edbbe11 "" 63 | "/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty" 1303254447 9581 1158efc648bc09d5064db5703c882159 "" 64 | "/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def" 1306616590 55368 3c8a0d99822330f2dfabc0dfb09ce897 "" 65 | "/usr/share/texlive/texmf-dist/tex/latex/tools/enumerate.sty" 1254151720 3328 485bddd4058e8ddb2a8849a8d397dcbc "" 66 | "/usr/share/texlive/texmf-dist/tex/latex/url/url.sty" 1388531844 12796 8edb7d69a20b857904dd0ea757c14ec9 "" 67 | "/usr/share/texlive/texmf-dist/web2c/texmf.cnf" 1392645748 31083 1dfd8bf685ce0009c40532fedf8a7c53 "" 68 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1304191498 1006 b103be0bfc8c1682ff1fa9760697a329 "" 69 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1304191498 17851 c112f6fe3b1889f91d54568be38c934d "" 70 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1304191498 17756 ee5bc7b20f746062c721d3fb3561530d "" 71 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1304191498 5784 795b041ac60be7a46c83610345e459cb "" 72 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1304191498 7101 668c6a35cbea2ae302bbff4c62370bbd "" 73 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1304191498 2995 7ef0769105aad1182125ada52b0cbaa6 "" 74 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1304191498 2631 7eefa6cdbefd8d4e2bad7262cf1094cd "" 75 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1304191498 43868 70ba8731b9094652f05c653fd1011379 "" 76 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1304191498 14189 bb3d2e0069dd43b25211385d7cac9d2c "" 77 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1304191498 7725 917b5feaf8acae1fd979a8564eaf989c "" 78 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1304191498 9518 b56e94efcd163a86f7e645fed6165055 "" 79 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1304191498 32491 d736244a6b667da89812f9b71e53016f "" 80 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1304191498 3052 e5672c657232fd63b0a9853b0746297c "" 81 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1304191498 15994 10d20fb800ca222911f363d456007171 "" 82 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1304191498 21374 d2661129e65955d45fb741c95bb78d7a "" 83 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1304191498 16741 1d0bcd33afcd45b27dceb8fd40f9b4e5 "" 84 | "/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1304191498 6577 2d95347b651f18f98fead9415f300f4a "" 85 | "/usr/share/texmf/tex/generic/pgf/math/pgfmath.code.tex" 1304191498 378 6ef5723aad20c1a3d29639e179a42dd6 "" 86 | "/usr/share/texmf/tex/generic/pgf/math/pgfmathcalc.code.tex" 1304191498 13312 f9d89166b99ea7e00e77858fe0194db1 "" 87 | "/usr/share/texmf/tex/generic/pgf/math/pgfmathfloat.code.tex" 1304191498 83664 208cb30de41494880aa77fffb3a1ccda "" 88 | "/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1304191498 8606 58f348f09f02ad9c20b10c1005bd9663 "" 89 | "/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1304191498 19855 ed1993a13913c58cb372b1d66f20ea17 "" 90 | "/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1304191498 7724 738eefe8218f0e08dd2c317adbca7db5 "" 91 | "/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1304191498 3534 c7f28fbac13616513e513efe93b8569b "" 92 | "/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1304191498 8574 010fc7ab92ca16c2da0f097ae7066b0d "" 93 | "/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1304191498 6964 d4b5e82dabddda1c728063bb9c8a22ba "" 94 | "/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1304191498 2688 139c6abc86761a6190c2f4bef5d752be "" 95 | "/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1304191498 86620 8a979a1502115110f3469c7579238489 "" 96 | "/usr/share/texmf/tex/generic/pgf/math/pgfmathparser.code.tex" 1304191498 27428 c613a3d1b703431360c8ef5579d00d85 "" 97 | "/usr/share/texmf/tex/generic/pgf/math/pgfmathutil.code.tex" 1304191498 7107 704b307dcd1ea898b650a4d17fe53fbe "" 98 | "/usr/share/texmf/tex/generic/pgf/systemlayer/pgf.cfg" 1304191498 978 15af626ebd3d4d790aac19170dac04f2 "" 99 | "/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1304191498 3630 7c64370dc4387995125f5b825096be23 "" 100 | "/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-pdftex.def" 1304191498 12510 e20a03f54abbfc8914dba322a7a3dba7 "" 101 | "/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1304191498 32236 3923b93ea40b486a68f35dd7558f335c "" 102 | "/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1304191498 1983 b5994ebbcee17f1ba3d29bb1bd696fcf "" 103 | "/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1304191498 7677 2eb6cc84c604878c08c9d943bbbc6e32 "" 104 | "/usr/share/texmf/tex/generic/pgf/utilities/pgfkeys.code.tex" 1304191498 32925 ac47add413403603a8d3c47e035bd76c "" 105 | "/usr/share/texmf/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex" 1304191498 33372 15f61ab79cad6ae1941b5caee584016a "" 106 | "/usr/share/texmf/tex/generic/pgf/utilities/pgfrcs.code.tex" 1304191498 2320 086533930e1dade214bdcd74a189c5a5 "" 107 | "/usr/share/texmf/tex/generic/pgf/utilities/pgfutil-common.tex" 1304191498 13382 a0507b5422f675ba8588f019a2f8b68e "" 108 | "/usr/share/texmf/tex/generic/pgf/utilities/pgfutil-latex.def" 1304191498 2771 d32e3f533abf44397dd690e41e934cdc "" 109 | "/usr/share/texmf/tex/latex/beamer/base/art/beamericonarticle.20.pdf" 1368314061 2958 4e0c4a6e994e5c4d9da11c477e927f0f "" 110 | "/usr/share/texmf/tex/latex/beamer/base/art/beamericonarticle.pdf" 1368314061 2936 6cc3ef0682cbb62be8aa1b19f0a84ed6 "" 111 | "/usr/share/texmf/tex/latex/beamer/base/art/beamericonbook.20.pdf" 1368314061 2734 0bcf939051dd2a936cdfe5982f7c233b "" 112 | "/usr/share/texmf/tex/latex/beamer/base/art/beamericonbook.pdf" 1368314061 2667 7624351b441ffe4bd2d14e08fbcf063d "" 113 | "/usr/share/texmf/tex/latex/beamer/base/art/beamericononline.20.pdf" 1368314061 24451 195d2c060e84f339954bc6d9b52131d7 "" 114 | "/usr/share/texmf/tex/latex/beamer/base/art/beamericononline.pdf" 1368314061 24611 df07010540266b2b205b492a4d02e7e1 "" 115 | "/usr/share/texmf/tex/latex/beamer/base/beamer.cls" 1368314061 11494 3f1c49f0aa6ca180a06b4e6baecefde0 "" 116 | "/usr/share/texmf/tex/latex/beamer/base/beamerbaseauxtemplates.sty" 1368314061 21455 7418d34cedb709b1d39a04c4a5af5d0e "" 117 | "/usr/share/texmf/tex/latex/beamer/base/beamerbaseboxes.sty" 1368314061 8152 67432f53408b0873c768b45587519831 "" 118 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasecolor.sty" 1368314061 12285 eb0737033cdaed12d2e7e0ce541392d2 "" 119 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasecompatibility.sty" 1368314061 23615 6319bbb4324f4bee99017977c8ae0d16 "" 120 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasedecode.sty" 1368314061 8196 46ac7d7f25158a930825927ffc652ca1 "" 121 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasefont.sty" 1368314061 12473 071c822b7f75b58c05ecc46b693d02f3 "" 122 | "/usr/share/texmf/tex/latex/beamer/base/beamerbaseframe.sty" 1368314061 24915 3864843baa4c162f903396516d0cb41f "" 123 | "/usr/share/texmf/tex/latex/beamer/base/beamerbaseframecomponents.sty" 1368314061 11801 f4c7d675d965afb0eaf7973fb9760382 "" 124 | "/usr/share/texmf/tex/latex/beamer/base/beamerbaseframesize.sty" 1368314061 8859 dafd8fa216da7579c838fdae85e2a114 "" 125 | "/usr/share/texmf/tex/latex/beamer/base/beamerbaselocalstructure.sty" 1368314061 16002 9d9922c77311faea4abfc5440a2d1f2f "" 126 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasemisc.sty" 1368314061 7856 06b0463fa1a47e01a99150fcfe048ea3 "" 127 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasemodes.sty" 1368314061 8272 8d7b176273b93a001fa3e88510ebbb93 "" 128 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasenavigation.sty" 1368314061 27844 7f405a68108140a7068a02e2088385cf "" 129 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasenotes.sty" 1368314061 5111 40458785041d1f194af3f92c51dca884 "" 130 | "/usr/share/texmf/tex/latex/beamer/base/beamerbaseoptions.sty" 1368314061 1696 1bfa5f95932484163cd16bab2d8bf954 "" 131 | "/usr/share/texmf/tex/latex/beamer/base/beamerbaseoverlay.sty" 1368314061 26049 e69b71c7fd454696512c15c8c8b4a0e2 "" 132 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasercs.sty" 1368314061 1150 8079f5ca84ddaee6ae3430b948720a71 "" 133 | "/usr/share/texmf/tex/latex/beamer/base/beamerbaserequires.sty" 1368314061 1768 973a5a56c6e32b2158ac04f40d5c9e34 "" 134 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasesection.sty" 1368314061 12455 202b3a6c49dc7919b7f7d577136633d1 "" 135 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasetemplates.sty" 1368314061 5867 30b5faf6064b4c1f6cfcae537d53f777 "" 136 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasethemes.sty" 1368314061 1213 a65cfbdb3da53cdcb42aa357ee2c9a80 "" 137 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasetheorems.sty" 1368314061 4661 d4a08c8dfc775ff80af9a298b59f43f2 "" 138 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasetitle.sty" 1368314061 5576 052b5ee6784b3573f11875ef38a2c090 "" 139 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasetoc.sty" 1368314061 7270 a22b66ca90eb652600d56a75d20bf4ab "" 140 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasetranslator.sty" 1368314061 779 5bf46f7056f65a541979aa9432dfdfd2 "" 141 | "/usr/share/texmf/tex/latex/beamer/base/beamerbasetwoscreens.sty" 1368314061 1516 d9e44becf9c2c14b8d981b7bcfb6305a "" 142 | "/usr/share/texmf/tex/latex/beamer/base/beamerbaseverbatim.sty" 1368314061 3447 9c955afbefedac66e095461bc2d934e4 "" 143 | "/usr/share/texmf/tex/latex/beamer/base/themes/color/beamercolorthemedefault.sty" 1368314061 6951 8e20db65e7d78cbfe11ef67061cf10b8 "" 144 | "/usr/share/texmf/tex/latex/beamer/base/themes/font/beamerfontthemedefault.sty" 1368314061 4112 c724495094ae6a2a11673707a594849e "" 145 | "/usr/share/texmf/tex/latex/beamer/base/themes/inner/beamerinnerthemedefault.sty" 1368314061 12833 cbbd8b892e3fe425fae1b6214807d2cb "" 146 | "/usr/share/texmf/tex/latex/beamer/base/themes/outer/beamerouterthemedefault.sty" 1368314061 6238 ea1e226941410f7d53d3fdb8f99e25bb "" 147 | "/usr/share/texmf/tex/latex/beamer/base/themes/theme/beamerthemedefault.sty" 1368314061 509 f06bfcabac6b7c8411f16c350f5110af "" 148 | "/usr/share/texmf/tex/latex/beamer/base/translator/translator-language-mappings.tex" 1368314061 5067 f1bb98f63e0761f897f48a159127fbb6 "" 149 | "/usr/share/texmf/tex/latex/beamer/base/translator/translator.sty" 1368314061 3776 382bd8bbaa43371d0c1a1d0e113a4140 "" 150 | "/usr/share/texmf/tex/latex/pgf/basiclayer/pgfcore.sty" 1304191498 410 5bf12ea7330e5f12c445332a4fe9a263 "" 151 | "/usr/share/texmf/tex/latex/pgf/systemlayer/pgfsys.sty" 1304191498 362 4d082b7c595b2ffec199f5351c4303c9 "" 152 | "/usr/share/texmf/tex/latex/pgf/utilities/pgfrcs.sty" 1304191498 325 2bcd023400636339210573e2b3ee298b "" 153 | "/usr/share/texmf/tex/latex/pgf/utilities/xxcolor.sty" 1304191498 2267 e82edfd18fbf4047c6f20ed9467f27db "" 154 | "/usr/share/texmf/tex/latex/xcolor/xcolor.sty" 1339578534 55224 a43bab84e0ac5e6efcaf9a98bde73a94 "" 155 | "/usr/share/texmf/web2c/texmf.cnf" 1392645748 31083 1dfd8bf685ce0009c40532fedf8a7c53 "" 156 | "/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1471682245 3822874 550fd3e5e6cfb3ab0f884c37be3c1763 "" 157 | "config/presento-config.tex" 1485627370 688 dfcf4e29c20daaf8e4ecd629a4907a73 "" 158 | "config/presento.sty" 1485627197 3552 b589c9f2a2046414a6e53a2eb48620c7 "" 159 | "presento.aux" 1485627447 8 a94a2480d3289e625eea47cd1b285758 "" 160 | "presento.tex" 1485626828 249 4e8e0126e85741e70f17b73f94213325 "" 161 | (generated) 162 | "presento.pdf" 163 | "presento.log" 164 | -------------------------------------------------------------------------------- /presento.fls: -------------------------------------------------------------------------------- 1 | PWD /mnt/c/Users/asus/Documents/GitHub/presento 2 | INPUT /etc/texmf/web2c/texmf.cnf 3 | INPUT /usr/share/texmf/web2c/texmf.cnf 4 | INPUT /usr/share/texlive/texmf-dist/web2c/texmf.cnf 5 | INPUT /var/lib/texmf/web2c/pdftex/pdflatex.fmt 6 | INPUT presento.tex 7 | OUTPUT presento.log 8 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamer.cls 9 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamer.cls 10 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasercs.sty 11 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasercs.sty 12 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasemodes.sty 13 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasemodes.sty 14 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasedecode.sty 15 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasedecode.sty 16 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty 17 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty 18 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseoptions.sty 19 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseoptions.sty 20 | INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty 21 | INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty 22 | INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty 23 | INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty 24 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifvtex.sty 25 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifvtex.sty 26 | INPUT /usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty 27 | INPUT /usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty 28 | INPUT /usr/share/texlive/texmf-dist/tex/latex/extsizes/size14.clo 29 | INPUT /usr/share/texlive/texmf-dist/tex/latex/extsizes/size14.clo 30 | INPUT /usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map 31 | INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr12.tfm 32 | INPUT /usr/share/texmf/tex/latex/pgf/basiclayer/pgfcore.sty 33 | INPUT /usr/share/texmf/tex/latex/pgf/basiclayer/pgfcore.sty 34 | INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty 35 | INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty 36 | INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty 37 | INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty 38 | INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty 39 | INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty 40 | INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg 41 | INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg 42 | INPUT /usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def 43 | INPUT /usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def 44 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty 45 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty 46 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty 47 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty 48 | INPUT /usr/share/texmf/tex/latex/pgf/systemlayer/pgfsys.sty 49 | INPUT /usr/share/texmf/tex/latex/pgf/systemlayer/pgfsys.sty 50 | INPUT /usr/share/texmf/tex/latex/pgf/utilities/pgfrcs.sty 51 | INPUT /usr/share/texmf/tex/latex/pgf/utilities/pgfrcs.sty 52 | INPUT /usr/share/texmf/tex/generic/pgf/utilities/pgfutil-common.tex 53 | INPUT /usr/share/texmf/tex/generic/pgf/utilities/pgfutil-latex.def 54 | INPUT /usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty 55 | INPUT /usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty 56 | INPUT /usr/share/texmf/tex/generic/pgf/utilities/pgfrcs.code.tex 57 | INPUT /usr/share/texmf/tex/generic/pgf/utilities/pgfrcs.code.tex 58 | INPUT /usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys.code.tex 59 | INPUT /usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys.code.tex 60 | INPUT /usr/share/texmf/tex/generic/pgf/utilities/pgfkeys.code.tex 61 | INPUT /usr/share/texmf/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex 62 | INPUT /usr/share/texmf/tex/generic/pgf/systemlayer/pgf.cfg 63 | INPUT /usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-pdftex.def 64 | INPUT /usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-pdftex.def 65 | INPUT /usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def 66 | INPUT /usr/share/texmf/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex 67 | INPUT /usr/share/texmf/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex 68 | INPUT /usr/share/texmf/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex 69 | INPUT /usr/share/texmf/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex 70 | INPUT /usr/share/texmf/tex/latex/xcolor/xcolor.sty 71 | INPUT /usr/share/texmf/tex/latex/xcolor/xcolor.sty 72 | INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg 73 | INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg 74 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcore.code.tex 75 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcore.code.tex 76 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmath.code.tex 77 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmathcalc.code.tex 78 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmathutil.code.tex 79 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmathparser.code.tex 80 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.code.tex 81 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex 82 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex 83 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.random.code.tex 84 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex 85 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.base.code.tex 86 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.round.code.tex 87 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex 88 | INPUT /usr/share/texmf/tex/generic/pgf/math/pgfmathfloat.code.tex 89 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex 90 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex 91 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex 92 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex 93 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex 94 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex 95 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorequick.code.tex 96 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex 97 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex 98 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex 99 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex 100 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex 101 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex 102 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex 103 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex 104 | INPUT /usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex 105 | INPUT /usr/share/texmf/tex/latex/pgf/utilities/xxcolor.sty 106 | INPUT /usr/share/texmf/tex/latex/pgf/utilities/xxcolor.sty 107 | INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty 108 | INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty 109 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty 110 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty 111 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty 112 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty 113 | INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty 114 | INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty 115 | INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty 116 | INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty 117 | INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty 118 | INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def 119 | INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def 120 | INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg 121 | INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg 122 | INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty 123 | INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty 124 | INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def 125 | INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def 126 | INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty 127 | INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty 128 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaserequires.sty 129 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaserequires.sty 130 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasecompatibility.sty 131 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasecompatibility.sty 132 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasefont.sty 133 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasefont.sty 134 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty 135 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty 136 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty 137 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty 138 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasetranslator.sty 139 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasetranslator.sty 140 | INPUT /usr/share/texmf/tex/latex/beamer/base/translator/translator.sty 141 | INPUT /usr/share/texmf/tex/latex/beamer/base/translator/translator.sty 142 | INPUT /usr/share/texmf/tex/latex/beamer/base/translator/translator-language-mappings.tex 143 | INPUT /usr/share/texmf/tex/latex/beamer/base/translator/translator-language-mappings.tex 144 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasemisc.sty 145 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasemisc.sty 146 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasetwoscreens.sty 147 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasetwoscreens.sty 148 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseoverlay.sty 149 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseoverlay.sty 150 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasetitle.sty 151 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasetitle.sty 152 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasesection.sty 153 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasesection.sty 154 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseframe.sty 155 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseframe.sty 156 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseverbatim.sty 157 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseverbatim.sty 158 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseframesize.sty 159 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseframesize.sty 160 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseframecomponents.sty 161 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseframecomponents.sty 162 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasecolor.sty 163 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasecolor.sty 164 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasenotes.sty 165 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasenotes.sty 166 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasetoc.sty 167 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasetoc.sty 168 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasetemplates.sty 169 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasetemplates.sty 170 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseauxtemplates.sty 171 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseauxtemplates.sty 172 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseboxes.sty 173 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaseboxes.sty 174 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaselocalstructure.sty 175 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbaselocalstructure.sty 176 | INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/enumerate.sty 177 | INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/enumerate.sty 178 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasenavigation.sty 179 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasenavigation.sty 180 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasetheorems.sty 181 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasetheorems.sty 182 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty 183 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty 184 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty 185 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty 186 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty 187 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty 188 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty 189 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty 190 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty 191 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty 192 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amscls/amsthm.sty 193 | INPUT /usr/share/texlive/texmf-dist/tex/latex/amscls/amsthm.sty 194 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasethemes.sty 195 | INPUT /usr/share/texmf/tex/latex/beamer/base/beamerbasethemes.sty 196 | INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmss12.tfm 197 | INPUT /usr/share/texmf/tex/latex/beamer/base/themes/theme/beamerthemedefault.sty 198 | INPUT /usr/share/texmf/tex/latex/beamer/base/themes/theme/beamerthemedefault.sty 199 | INPUT /usr/share/texmf/tex/latex/beamer/base/themes/font/beamerfontthemedefault.sty 200 | INPUT /usr/share/texmf/tex/latex/beamer/base/themes/font/beamerfontthemedefault.sty 201 | INPUT /usr/share/texmf/tex/latex/beamer/base/themes/color/beamercolorthemedefault.sty 202 | INPUT /usr/share/texmf/tex/latex/beamer/base/themes/color/beamercolorthemedefault.sty 203 | INPUT /usr/share/texmf/tex/latex/beamer/base/themes/inner/beamerinnerthemedefault.sty 204 | INPUT /usr/share/texmf/tex/latex/beamer/base/themes/inner/beamerinnerthemedefault.sty 205 | INPUT /usr/share/texmf/tex/latex/beamer/base/art/beamericonbook.pdf 206 | OUTPUT presento.pdf 207 | INPUT /usr/share/texmf/tex/latex/beamer/base/art/beamericonbook.pdf 208 | INPUT /usr/share/texmf/tex/latex/beamer/base/art/beamericonbook.20.pdf 209 | INPUT /usr/share/texmf/tex/latex/beamer/base/art/beamericonbook.20.pdf 210 | INPUT /usr/share/texmf/tex/latex/beamer/base/art/beamericonarticle.pdf 211 | INPUT /usr/share/texmf/tex/latex/beamer/base/art/beamericonarticle.pdf 212 | INPUT /usr/share/texmf/tex/latex/beamer/base/art/beamericonarticle.20.pdf 213 | INPUT /usr/share/texmf/tex/latex/beamer/base/art/beamericonarticle.20.pdf 214 | INPUT /usr/share/texmf/tex/latex/beamer/base/art/beamericononline.pdf 215 | INPUT /usr/share/texmf/tex/latex/beamer/base/art/beamericononline.pdf 216 | INPUT /usr/share/texmf/tex/latex/beamer/base/art/beamericononline.20.pdf 217 | INPUT /usr/share/texmf/tex/latex/beamer/base/art/beamericononline.20.pdf 218 | INPUT /usr/share/texmf/tex/latex/beamer/base/themes/outer/beamerouterthemedefault.sty 219 | INPUT /usr/share/texmf/tex/latex/beamer/base/themes/outer/beamerouterthemedefault.sty 220 | INPUT config/presento-config.tex 221 | INPUT config/presento-config.tex 222 | INPUT config/presento.sty 223 | INPUT config/presento.sty 224 | INPUT /usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty 225 | INPUT /usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty 226 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty 227 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty 228 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3names.sty 229 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3names.sty 230 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3bootstrap.sty 231 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3bootstrap.sty 232 | INPUT /usr/share/texlive/texmf-dist/tex/latex/etex-pkg/etex.sty 233 | INPUT /usr/share/texlive/texmf-dist/tex/latex/etex-pkg/etex.sty 234 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3basics.sty 235 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3basics.sty 236 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3expan.sty 237 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3expan.sty 238 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3tl.sty 239 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3tl.sty 240 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3seq.sty 241 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3seq.sty 242 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3int.sty 243 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3int.sty 244 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3quark.sty 245 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3quark.sty 246 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3prg.sty 247 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3prg.sty 248 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3clist.sty 249 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3clist.sty 250 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3token.sty 251 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3token.sty 252 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3prop.sty 253 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3prop.sty 254 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3msg.sty 255 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3msg.sty 256 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3file.sty 257 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3file.sty 258 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3skip.sty 259 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3skip.sty 260 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3keys.sty 261 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3keys.sty 262 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3fp.sty 263 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3fp.sty 264 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3box.sty 265 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3box.sty 266 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3coffins.sty 267 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3coffins.sty 268 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3color.sty 269 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3color.sty 270 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3luatex.sty 271 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3luatex.sty 272 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3candidates.sty 273 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3candidates.sty 274 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 275 | INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 276 | -------------------------------------------------------------------------------- /presento.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/presento.pdf -------------------------------------------------------------------------------- /presento.tex: -------------------------------------------------------------------------------- 1 | \documentclass[14pt]{beamer} 2 | 3 | %configuration file 4 | \input{config/presento-config} 5 | 6 | \begin{document} 7 | 8 | % templates at the beginning 9 | \input{templates/title-template} 10 | 11 | % sections in the presentation 12 | \input{sections/content} 13 | 14 | \end{document} 15 | -------------------------------------------------------------------------------- /sections/content.tex: -------------------------------------------------------------------------------- 1 | \begin{frame}{Presento} 2 | \begin{fullpageitemize} 3 | \item \begin{center}\largetext{The design is \underline{clean}}\end{center} 4 | \item \begin{center}\largetext{The rules are \underline{simple}}\end{center} 5 | \item \begin{center}\largetext{The code is \underline{extensible}}\end{center} 6 | \end{fullpageitemize} 7 | \end{frame} 8 | 9 | \begin{frame}{Open Source Fonts} 10 | \begin{fullpageitemize} 11 | \item {\montserratfont This is Montserrat} 12 | \item {\notosansfont This is Noto Sans} 13 | \item {\latolightfont This is Lato (light)} 14 | \item {\inconsolatafont This is inconsolata} 15 | \item \textsc{This is Alegreya Sans small caps} 16 | \end{fullpageitemize} 17 | \end{frame} 18 | 19 | \begin{frame}{Color Palette} 20 | \begin{center} 21 | \crule[colordgray] \crule[colorhgray] \crule[colorblue] \crule[colorgreen] \crule[colororange] 22 | \end{center} 23 | \end{frame} 24 | 25 | \framecard[colorgreen]{{\color{white}\hugetext{BIG BOLD TEXT}}} 26 | 27 | \framepic[0.8]{images/skeleton}{ 28 | \begin{textblock}{7}(7,2.5) 29 | {\color{colorblue}\hugetext{\textbf{RUN!}}} 30 | \end{textblock} 31 | } -------------------------------------------------------------------------------- /templates/end-template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RatulSaha/presento/81749c467ef16699fa513b03784d1f8afcac5a9d/templates/end-template.tex -------------------------------------------------------------------------------- /templates/title-template.tex: -------------------------------------------------------------------------------- 1 | \begin{frame}[plain] 2 | \vfill 3 | \myTitle 4 | \vfill 5 | \myName 6 | \vfill 7 | \myDetails 8 | \vfill 9 | \end{frame} --------------------------------------------------------------------------------