diff --git a/Green-Energy-icon.png b/Green-Energy-icon.png new file mode 100644 index 0000000..6535b16 Binary files /dev/null and b/Green-Energy-icon.png differ diff --git a/MCIE.png b/MCIE.png new file mode 100644 index 0000000..42c2499 Binary files /dev/null and b/MCIE.png differ diff --git a/all_settings.py b/all_settings.py new file mode 100644 index 0000000..b086d2c --- /dev/null +++ b/all_settings.py @@ -0,0 +1,475 @@ +#!/usr/bin/python +from string import Template +import subprocess +import sys + +with open('all_settings.tex', 'r') as f: + template = Template(f.read()) + + +themes = 'Default', 'Rays', 'Basic', 'Simple', 'Envelope', 'Wave', 'Board', 'Autumn', 'Desert' + +colors = 'Default', 'Australia', 'Britain', 'Sweden', 'Spain', 'Russia', 'Denmark', 'Germany' + +palettes = 'Default', 'BlueGrayOrange', 'GreenGrayViolet', 'PurpleGrayBlue', 'BrownBlueOrange' + +backgrounds = 'Default', 'VerticalGradation', 'Rays', 'BottomVerticalGradation', 'Empty' + +titles = 'Default', 'Basic', 'Empty', 'Filled', 'Envelope', 'Wave', 'VerticalShading' + +blocks = 'Default', 'Basic', 'Minimal', 'Envelope', 'Corner', 'Slide', 'TornOut' + +notes = 'Default', 'VerticalShading', 'Corner', 'Sticky' + + + + +################################################################################## +## This function creates a latex document from the template in +## "all_settings.tex" by substituting the values for the theme, and +## for the color, background, title, block and note commands, and +## adding a specific message as the title and a sub-message as the +## author of the document. Then it compiles this file (called +## "filename.tex"), keeps only the pdf file, and remembers its name +## for future. +## +## We also need latex commands because the resulting pdf contains the +## code of the document. So we need to modify certain characters for +## latex. +## +def createTexAndCompile( message, submessage, theme, colorcommand, + backgroundcommand, titlecommand, + blockcommand, notecommand, themelatexcommand, + colorlatexcommand, backgroundlatexcommand, + titlelatexcommand, blocklatexcommand, + notelatexcommand, filename, filelist ): + + page = template.substitute( + { + 'messagevar': message, + 'submessagevar': submessage, + 'themevar': theme, + 'colorvar': colorcommand, + 'backgroundvar': backgroundcommand, + 'titlevar': titlecommand, + 'blockvar': blockcommand, + 'notevar': notecommand, + 'themestylevar': themelatexcommand, + 'colorstylevar': colorlatexcommand, + 'backgroundstylevar': backgroundlatexcommand, + 'titlestylevar': titlelatexcommand, + 'blockstylevar': blocklatexcommand, + 'notestylevar': notelatexcommand, + } + ) + + ## create a tex file + with open(filename + '.tex', 'w') as f: + f.write(page) + + ## compile the tex file + subprocess.call('pdflatex {}.tex'.format(filename).split()) + + ## clean up auxiliary files (non-pdf) + subprocess.call('rm -f {}.tex'.format(filename).split()) + subprocess.call('rm -f {}.aux'.format(filename).split()) + subprocess.call('rm -f {}.log'.format(filename).split()) + + ## remember the name of the file for future + filelist.append(filename) + + return +################################################################################## + + +################################################################################## +## This function is for testing styles using the Default theme, or for +## testing each theme without modifications. +## +## This function creates latex commands for each style, depending on +## the values of theme, color, palette, background, title, block and +## note. Then calls function createTexAndCompile that uses these +## commands to create and compile the actual document. +## +## The main difference of this function with +## createTexAndCompileAllOptions is follows. The generated pdf +## contains the code used to generate it, so that users could easily +## see the settings. In this function the code is kept minimal, so the +## commands of the form \usesomestyle{Default} are not +## displayed. Therefore, if one uses a non-Default theme and then, for +## instance, default block style, it would have effect in the +## generated pdf, but the code in the pdf would not be correct. +## +## Thus, in principle this function can be used for arbitrary +## combinations of options, but the correctness of the code in the pdf +## file is guaranteed only for testing styles using the Default theme, +## or for testing each theme without modifications. +## +def createTexAndCompileOneOption( message, submessage, theme, color, palette, + background, title, block, note, filelist ): + + themelatexcommand = '' + colorcommand = colorlatexcommand = '' + backgroundcommand = backgroundlatexcommand = '' + titlecommand = titlelatexcommand = '' + blockcommand = blocklatexcommand = '' + notecommand = notelatexcommand = '' + + ## only if theme is the default one, we also specify other styles + if theme != 'Default' and theme != '': + themelatexcommand = r'\bs usetheme\{' + theme + r'\}\\' + + if color != '': + if palette != '': + colorcommand = r'\usecolorstyle[colorPalette=' + palette + ']{' + color + '}' + colorlatexcommand = r'\bs usecolorstyle[colorPalette=' + palette + ']\{' + color + r'\}\\' + else: + colorcommand = r'\usecolorstyle{' + color + '}' + colorlatexcommand = r'\bs usecolorstyle\{' + color + r'\}\\' + if colorcommand == r'\usecolorstyle{Default}' or colorcommand == r'\usecolorstyle[colorPalette=Default]{Default}': + colorcommand = colorlatexcommand = '' + elif palette != '' and palette != 'Default': + colorcommand = r'\usecolorstyle[colorPalette=' + palette + ']{Default}' + colorlatexcommand = r'\bs usecolorstyle[colorPalette=' + palette + r']\{Default\}\\' + + if background != 'Default' and background != '': + backgroundcommand = r'\usebackgroundstyle{' + background + '}' + backgroundlatexcommand = r'\bs usebackgroundstyle\{' + background + r'\}\\' + + if title != 'Default' and title != '': + titlecommand = r'\usetitlestyle{' + title + '}' + titlelatexcommand = r'\bs usetitlestyle\{' + title + r'\}\\' + + if block != 'Default' and block != '': + blockcommand = r'\useblockstyle{' + block + '}' + blocklatexcommand = r'\bs useblockstyle\{' + block + r'\}\\' + + if note != 'Default' and note != '': + notecommand = r'\usenotestyle{' + note + '}' + notelatexcommand = r'\bs usenotestyle\{' + note + r'\}\\' + + filename = 'ff_' + theme + color + palette + background + title + block + note + + createTexAndCompile( message, submessage, theme, colorcommand, + backgroundcommand, titlecommand, + blockcommand, notecommand, themelatexcommand, + colorlatexcommand, backgroundlatexcommand, + titlelatexcommand, blocklatexcommand, + notelatexcommand, filename, filelist ) + + return +################################################################################## + + +################################################################################## +## This function is for testing all combinations of styles. +## +## This function creates latex commands for each style, depending on +## the values of color, palette, background, title, block and note. +## Then calls function createTexAndCompile that uses these commands to +## create and compile the actual document. +## +def createTexAndCompileAllOptions( message, submessage, theme, color, + palette, background, title, block, note, + filelist ): + + themelatexcommand = '' + colorcommand = colorlatexcommand = '' + backgroundcommand = backgroundlatexcommand = '' + titlecommand = titlelatexcommand = '' + blockcommand = blocklatexcommand = '' + notecommand = notelatexcommand = '' + + if theme != '': + themelatexcommand = r'\bs usetheme\{' + theme + r'\}\\' + else: + themelatexcommand = r'\bs usetheme\{Default\}\\' + + if color != '': + if palette != '': + colorcommand = r'\usecolorstyle[colorPalette=' + palette + ']{' + color + '}' + colorlatexcommand = r'\bs usecolorstyle[colorPalette=' + palette + ']\{' + color + r'\}\\' + else: + colorcommand = r'\usecolorstyle{' + color + '}' + colorlatexcommand = r'\bs usecolorstyle\{' + color + r'\}\\' + elif palette != '': + colorcommand = r'\usecolorstyle[colorPalette=' + palette + ']{Default}' + colorlatexcommand = r'\bs usecolorstyle[colorPalette=' + palette + r']\{Default\}\\' + + if background != '': + backgroundcommand = r'\usebackgroundstyle{' + background + '}' + backgroundlatexcommand = r'\bs usebackgroundstyle\{' + background + r'\}\\' + + if title != '': + titlecommand = r'\usetitlestyle{' + title + '}' + titlelatexcommand = r'\bs usetitlestyle\{' + title + r'\}\\' + + if block != '': + blockcommand = r'\useblockstyle{' + block + '}' + blocklatexcommand = r'\bs useblockstyle\{' + block + r'\}\\' + + if note != '': + notecommand = r'\usenotestyle{' + note + '}' + notelatexcommand = r'\bs usenotestyle\{' + note + r'\}\\' + + + filename = 'ff_' + theme + color + palette + background + title + block + note + + createTexAndCompile( message, submessage, theme, colorcommand, + backgroundcommand, titlecommand, + blockcommand, notecommand, themelatexcommand, + colorlatexcommand, backgroundlatexcommand, + titlelatexcommand, blocklatexcommand, + notelatexcommand, filename, filelist ) + + return +################################################################################## + + +################################################################################## +## A function to combine all pdfs whose names are given in the list filelist, +## in a file called outputFile +## +def combinePdfs( outputFile, filelist ): + ## merging all pdfs in filelist + command = 'gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=' + outputFile + '.pdf' + subprocess.call( + command.split() + [t + '.pdf' for t in filelist] + ) + + return +################################################################################## + + +################################################################################## +## A function to remove pdf files whose names are given in the list filelist +## +def removePdfs( filelist ): + ## removing the pdfs + for filename in filelist: + subprocess.call('rm -f {}.pdf'.format(filename).split()) + + return +################################################################################## + + +################################################################################## +## A function to combine all pdfs whose names are given in the list filelist, +## in a file called outputFile, then remove these files +## +def combineAndRemovePdfs( outputFile, filelist ): + combinePdfs( outputFile, filelist ) + removePdfs( filelist ) + + return +################################################################################## + + +################################################################################## +## A function to try all options: color palettes, color styles, backgrounds, +## titles, blocks and notes separately +def testAllOptionsSeparately( ): + filenames = [] + + ##########------------------------------########## + ##########------------------------------########## + ########## varying themes + color = palette = background = title = block = note = '' + submessage = 'All options are defined by the theme' + outputFile = 'all_themes' + + for theme in themes: + message = 'Using ' + theme + ' theme' + createTexAndCompileOneOption(message, submessage, theme, color, palette, + background, title, block, note, filenames) + + combineAndRemovePdfs(outputFile, filenames) + + ##########------------------------------########## + ########## varying color styles + del filenames[:] + theme = background = title = block = note = 'Default' + palette = '' + submessage = 'with the rest being Default' + outputFile = 'all_colors' + + for color in colors: + message = 'Using ' + color + ' color style' + createTexAndCompileOneOption(message, submessage, theme, color, palette, + background, title, block, note, filenames) + + combineAndRemovePdfs(outputFile, filenames) + + ########## varying color palettes + del filenames[:] + theme = color = background = title = block = note = 'Default' + submessage = 'with the Default color style' + outputFile = 'all_palettes' + + for palette in palettes: + message = 'Using ' + palette + ' color palette' + createTexAndCompileOneOption(message, submessage, theme, color, palette, + background, title, block, note, filenames) + + combineAndRemovePdfs(outputFile, filenames) + + ##########------------------------------########## + ########## varying backgrounds + del filenames[:] + theme = color = palette = title = block = note = 'Default' + submessage = 'with the rest being Default' + outputFile = 'all_backgrounds' + + for background in backgrounds: + message = 'Using ' + background + ' background style' + createTexAndCompileOneOption(message, submessage, theme, color, palette, + background, title, block, note, filenames) + + combineAndRemovePdfs(outputFile, filenames) + + ##########------------------------------########## + ########## varying titles + del filenames[:] + theme = color = palette = background = block = note = 'Default' + submessage = 'with the rest being Default' + outputFile = 'all_titles' + + for title in titles: + message = 'Using ' + title + ' title style' + createTexAndCompileOneOption(message, submessage, theme, color, palette, + background, title, block, note, filenames) + + combineAndRemovePdfs(outputFile, filenames) + + ##########------------------------------########## + ########## varying blocks + del filenames[:] + theme = color = palette = background = title = note = 'Default' + submessage = 'with the rest being Default' + outputFile = 'all_blocks' + + for block in blocks: + message = 'Using ' + block + ' block style' + createTexAndCompileOneOption(message, submessage, theme, color, palette, + background, title, block, note, filenames) + + combineAndRemovePdfs(outputFile, filenames) + + ##########------------------------------########## + ########## varying notes + del filenames[:] + theme = color = palette = background = title = block = 'Default' + submessage = 'with the rest being Default' + outputFile = 'all_notes' + + for note in notes: + message = 'Using ' + note + ' note style' + createTexAndCompileOneOption(message, submessage, theme, color, palette, + background, title, block, note, filenames) + + combineAndRemovePdfs(outputFile, filenames) + del filenames[:] + + ###############--------------------############### + ############### combine the 7 pdfs into one called all_settings + outputs = 'all_themes', 'all_colors', 'all_palettes', 'all_backgrounds', 'all_titles', 'all_blocks', 'all_notes' + combinePdfs('all_settings', outputs) + + return +################################################################################## + + +################################################################################## +## A function to try all combinations of options: themes, palettes, +## color, background, title, block and note styles +## +def testAllOptionsCombined( ): + filenames = [] + outputFile = 'all_combinations' + + for theme in themes: + for color in colors: + for palette in palettes: + for background in backgrounds: + for title in titles: + for block in blocks: + for note in notes: + message = 'Using ' + theme + ', ' + palette + submessage = color + background + title + block + note + + createTexAndCompileAllOptions(message, + submessage, + theme, color, + palette, + background, + title, block, + note, + filenames) + + combineAndRemovePdfs(outputFile, filenames) + del filenames[:] + + return +################################################################################## + + +################################################################################## +## A function to test all predefined themes +def testThemes( ): + filenames = [] + color = palette = background = title = block = note = '' + submessage = 'All options are defined by the theme' + outputFile = 'all_themes' + + for theme in themes: + message = 'Using ' + theme + ' theme' + createTexAndCompileOneOption(message, submessage, theme, color, palette, + background, title, block, note, filenames) + + combineAndRemovePdfs(outputFile, filenames) + del filenames[:] + + return +################################################################################## + + +################################################################################## +def usageMessage(): + print 'usage: ' + print ' all_settings.py' + print ' produces all_settings.pdf by ' + print ' testing all themes and all options separately, and ' + print ' combining them into one file.' + print r' all_settings.py all' + print r' tests all combinations of all options. Be careful! 352800 combinations' + + return +################################################################################## + + +################################################################################## +############################## Main Body ######################################### +################################################################################## + +def main(): + if len(sys.argv) == 1: + ## tests all options separately, and generates files all_settings, + ## all_themes, all_colors, all_palettes, all_backgrounds, + ## all_titles, all_blocks, and all_notes + testAllOptionsSeparately() + + elif len(sys.argv) == 2: + if sys.argv[1] == 'all': + testAllOptionsCombined() + else: + ## in future we can allow more parameters, for instance compiling + ## all options for a particular theme + usageMessage() + sys.exit(2) + else: + usageMessage() + sys.exit(2) + + +if __name__ == "__main__": + main() diff --git a/all_settings.tex b/all_settings.tex new file mode 100644 index 0000000..3c659de --- /dev/null +++ b/all_settings.tex @@ -0,0 +1,70 @@ +\documentclass[a1paper,landscape]{tikzposter} + +\tikzposterlatexaffectionproofon %shows small comment on how the poster was made + +% Commands +\newcommand{\bs}{\textbackslash} % backslash +\newcommand{\cmd}[1]{{\bf \color{red}#1}} % highlights command + + +% -- PREDEFINED THEMES ---------------------- % + +% Backgrounds: Default, Empty, Rays, VerticalGradation, BottomVerticalGradation +% Titles: Default, Basic, Empty, Filled, Envelope, Wave, VerticalShading +% Blocks: Default, Basic, Minimal, Envelope, Corner, Slide, TornOut +% Notes: Default, Sticky, Corner, VerticalShading + +\usetheme{$themevar} +$colorvar +$backgroundvar +$titlevar +$blockvar +$notevar + +% Title, Author, Institute +\title{$messagevar} +\author{$submessagevar} +\institute{} + +\begin{document} + +% Title block with title, author, logo, etc. +\maketitle + +\block{Block with title}{Content\\~\\~ + + % \vspace{1cm} + % \innerblock{Theorem}{like environment} + + % \vspace{1cm} + % \innerblock{}{inner block without title} + +} + +\block{}{~\\ + Block without title\\ + ~\\ +} + +\note[targetoffsety=-2cm, width=20cm]{ + Note\\ ~\\ ~\\} + +\block[titleoffsety=-2cm,bodyoffsety=-2cm]% +{If you like this setting, use the following code:}{ + \bs documentclass\{tikzposter\} \\ + \\ + $themestylevar$colorstylevar$backgroundstylevar$titlestylevar$blockstylevar$notestylevar\\ + \bs title\{Title\} + \bs author\{Author\} + \bs institute\{Institute\}\\ + \\ + \bs begin\{document\}\\ + \\ + \bs maketitle\\ + \\ + \bs block\{Block\}\{Content\}\\ + \bs end\{document\} +} + +\end{document} + diff --git a/atom.png b/atom.png new file mode 100644 index 0000000..2bd8f71 Binary files /dev/null and b/atom.png differ diff --git a/chemy.png b/chemy.png new file mode 100644 index 0000000..ccca8b9 Binary files /dev/null and b/chemy.png differ diff --git a/compile_guides.py b/compile_guides.py new file mode 100644 index 0000000..34f4fda --- /dev/null +++ b/compile_guides.py @@ -0,0 +1,35 @@ +#!/usr/bin/python + +import subprocess +import all_settings + + +## tests all options separately by executing all_settings.py +all_settings.main() + + +## then compiles mytheme.tex and styleguide.tex, +filesToCompile = 'mytheme', 'styleguide' +for filename in filesToCompile: + subprocess.call('pdflatex {}.tex'.format(filename).split()) + ## compile twice because of beamer in styleguide + subprocess.call('pdflatex {}.tex'.format(filename).split()) + + ## clean up auxiliary files (non-pdf and non-tex) + subprocess.call('rm -f {}.aux'.format(filename).split()) + subprocess.call('rm -f {}.log'.format(filename).split()) + subprocess.call('rm -f {}.nav'.format(filename).split()) + subprocess.call('rm -f {}.out'.format(filename).split()) + subprocess.call('rm -f {}.snm'.format(filename).split()) + subprocess.call('rm -f {}.toc'.format(filename).split()) + + +## removes the pdfs created beafore +filesToDelete = 'all_themes', 'all_colors', 'all_palettes', 'all_backgrounds', 'all_titles', 'all_blocks', 'all_notes', 'mytheme' +all_settings.removePdfs(filesToDelete) + +## and removes the file created from importing all_settings +subprocess.call('rm -f all_settings.pyc') + + +## The generated files are all_settings.pdf and styleguide.pdf diff --git a/helmet.png b/helmet.png new file mode 100644 index 0000000..5181e89 Binary files /dev/null and b/helmet.png differ diff --git a/ielectronica.png b/ielectronica.png new file mode 100644 index 0000000..93a80c4 Binary files /dev/null and b/ielectronica.png differ diff --git a/iesEmpresa.jpg b/iesEmpresa.jpg new file mode 100644 index 0000000..26e17ea Binary files /dev/null and b/iesEmpresa.jpg differ diff --git a/industry.png b/industry.png new file mode 100644 index 0000000..2a9246f Binary files /dev/null and b/industry.png differ diff --git a/logoITM.png b/logoITM.png new file mode 100644 index 0000000..79a9715 Binary files /dev/null and b/logoITM.png differ diff --git a/movility.png b/movility.png new file mode 100644 index 0000000..06c4d76 Binary files /dev/null and b/movility.png differ diff --git a/mult.png b/mult.png new file mode 100644 index 0000000..2b75155 Binary files /dev/null and b/mult.png differ diff --git a/mytheme.aux b/mytheme.aux new file mode 100644 index 0000000..257b3fd --- /dev/null +++ b/mytheme.aux @@ -0,0 +1,18 @@ +\relax +\providecommand\hyper@newdestlabel[2]{} +\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} +\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined +\global\let\oldcontentsline\contentsline +\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} +\global\let\oldnewlabel\newlabel +\gdef\newlabel#1#2{\newlabelxx{#1}#2} +\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} +\AtEndDocument{\ifx\hyper@anchor\@undefined +\let\contentsline\oldcontentsline +\let\newlabel\oldnewlabel +\fi} +\fi} +\global\let\hyper@last\relax +\gdef\HyperFirstAtBeginDocument#1{#1} +\providecommand\HyField@AuxAddToFields[1]{} +\providecommand\HyField@AuxAddToCoFields[2]{} diff --git a/mytheme.fdb_latexmk b/mytheme.fdb_latexmk new file mode 100644 index 0000000..52f9947 --- /dev/null +++ b/mytheme.fdb_latexmk @@ -0,0 +1,219 @@ +# Fdb version 3 +["pdflatex"] 1539997653 "mytheme.tex" "mytheme.pdf" "mytheme" 1539997658 + "/usr/local/texlive/2017/texmf-dist/fonts/enc/dvips/base/8r.enc" 1480098666 4850 80dc9bab7f31fb78a000ccfed0e27cab "" + "/usr/local/texlive/2017/texmf-dist/fonts/map/fontname/texfonts.map" 1480098670 3287 e6b82fe08f5336d4d5ebc73fb1152e87 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8r.tfm" 1480098688 4840 6a894dde946186de9a64269f0edd24e5 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8t.tfm" 1480098688 7216 ce159066bacd323ac1e4527281f7a233 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagdc8t.tfm" 1480098688 16976 9e95f62fc7afdbc58d9175c8fda656bb "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8r.tfm" 1480098688 5036 723de33948f8971252bfe397b4190283 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8t.tfm" 1480098688 7340 62d51a8cc96448508dcbcfef0e69f404 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagkc8t.tfm" 1480098688 16664 f296f4af5de08541800ec9ccb025285f "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aebx12.tfm" 1480098698 6132 8ad25ac1b8f3422e2a7eaeb718e3c843 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aer10.tfm" 1480098698 6076 dc5394361b1c55a30e76ff07ab99157c "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aer17.tfm" 1480098698 6104 412e349a5a6e3f1445fb2b73d9eaf6b9 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aeti12.tfm" 1480098698 7208 7ebf791420ad872cf3162cdf96220b8a "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aett12.tfm" 1480098698 1380 08568e0543ffa85761e9b07ab6d7d6d7 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmbsy10.tfm" 1480098701 1116 4e6ba9d7914baa6482fd69f67d126380 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm" 1480098701 1324 c910af8c371558dc20f2d7822f66fe64 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmbxti10.tfm" 1480098701 1532 9162035f4e7176612125649e348e2195 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmex10.tfm" 1480098701 992 662f679a0b3d2d53c1b94050fdaa3f50 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm" 1480098701 1524 4414a8315f39513458b80dfc63bff03a "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmib10.tfm" 1480098701 1524 554068197b70979a55370e6c6495f441 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmr12.tfm" 1480098701 1288 655e228510b4c2a1abe905c368440826 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmr17.tfm" 1480098701 1292 296a67155bdbfc32aa9c636f21e91433 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmsl12.tfm" 1480098701 1504 f280e6069e577ca4a981806c471fe65c "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm" 1480098701 1124 6c73e740cf17375f03eec0ee63599741 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmti12.tfm" 1480098701 1484 ed72f8f5cf654cda15ecc8e32bfcbee5 "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmtt12.tfm" 1480098701 772 9a936b7f5e2ff0557fce0f62822f0bbf "" + "/usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmu10.tfm" 1480098701 1276 d1b8c21fa8328272b4e5e6bc10761e6e "" + "/usr/local/texlive/2017/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb" 1480098733 32080 340ef9bf63678554ee606688e7b5339d "" + "/usr/local/texlive/2017/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb" 1480098733 32362 179c33bbf43f19adbb3825bb4e36e57a "" + "/usr/local/texlive/2017/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb" 1480098733 32569 5e5ddc8df908dea60932f3c484a54c0d "" + "/usr/local/texlive/2017/texmf-dist/fonts/type1/public/amsfonts/cm/cmti12.pfb" 1480098733 36118 fad905eba93cff5bce1e185fe980a177 "" + "/usr/local/texlive/2017/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt12.pfb" 1480098733 24252 1e4e051947e12dfb50fee0b7f4e26e3a "" + "/usr/local/texlive/2017/texmf-dist/fonts/type1/urw/avantgar/uagd8a.pfb" 1480098746 36354 f20bee7d266ac21e410927874882a384 "" + "/usr/local/texlive/2017/texmf-dist/fonts/type1/urw/avantgar/uagk8a.pfb" 1480098746 34871 37495c1e231421084d87820806d42cdc "" + "/usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagd8t.vf" 1480098757 2348 2e6761168126ba9a008731179fe938e3 "" + "/usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagdc8t.vf" 1480098757 3604 d150be04f81d328da772d7c4c55c35a0 "" + "/usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagk8t.vf" 1480098757 2356 b1bad47972ebc061e37998cb9f9560b5 "" + "/usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagkc8t.vf" 1480098757 3608 b92700a68e478c6fefcc0055f43f2ad0 "" + "/usr/local/texlive/2017/texmf-dist/fonts/vf/public/ae/aebx12.vf" 1480098760 3188 9220059dad8c24eb72c5ca13862eaaa7 "" + "/usr/local/texlive/2017/texmf-dist/fonts/vf/public/ae/aer17.vf" 1480098760 3288 0cea84560e07529ac52b9c435854a210 "" + "/usr/local/texlive/2017/texmf-dist/fonts/vf/public/ae/aeti12.vf" 1480098760 3164 58298bde53748f6cb67a8f7c9cc2a252 "" + "/usr/local/texlive/2017/texmf-dist/fonts/vf/public/ae/aett12.vf" 1480098760 3440 d81f2a186e456fbebf1afdf3a13c8998 "" + "/usr/local/texlive/2017/texmf-dist/tex/context/base/mkii/supp-pdf.mkii" 1480098806 71627 94eb9990bed73c364d7f53f960cc8c5b "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/ifxetex/ifxetex.sty" 1480098815 1458 43ab4710dc82f3edeabecd0d099626b2 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/gettitlestring.sty" 1480098815 8237 3b62ef1f7e2c23a328c814b3893bc11f "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty" 1490564930 185082 1fb09d7d24834377f95006300bc91fd2 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty" 1480098815 70864 bcd5b216757bd619ae692a151d90085d "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/ifpdf.sty" 1490564930 1251 d170e11a3246c3392bc7f59595af42cb "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/ifvtex.sty" 1480098815 6797 90b7f83b0ad46826bc16058b1e3d48df "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/infwarerr.sty" 1480098815 8253 473e0e41f9adadb1977e8631b8f72ea6 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/ltxcmds.sty" 1480098815 18425 5b3c0c59d76fac78978b5558e83c1f36 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1480098816 1006 b103be0bfc8c1682ff1fa9760697a329 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1480098816 43226 167a99346bfe2676e3efcdde2d81fe45 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1480098816 19302 4f089dc590e71f7331e6d5b5ea85273b "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1480098816 6068 edae1e768a7d8d8f0f00e953d2b0153e "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1480098816 7041 a891ad72049e17c4e366c40ca37b0ccb "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1480098816 4625 40c07e9f6f2f7c674704b3f2055560ce "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1480098816 2631 7eefa6cdbefd8d4e2bad7262cf1094cd "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1480098816 43477 81143b33d9ebafdeead07ede13372427 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1480098816 17436 8d99d4113be311daf23deff86991ee7d "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1480098816 20772 c57e34db4aa7b1da013169d04b743eac "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1480098816 9641 711f0edc22c180a5caf168b6e8970057 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1480098816 34516 658a71478d21df554bce9d9cd436203a "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1480098816 3052 e5672c657232fd63b0a9853b0746297c "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1480098816 16669 4ec6e40088fc6de6334b443fe2dc59f0 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1480098816 21541 4cd19f8ff7dd74d5aa7d803a6397af84 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1480098816 19998 d77fef95c7369827753d17fd11be19c4 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1480098816 8943 2e2495b057f8f0035b5568394d489963 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex" 1480098816 4611 b858a4e5bd5442802c91a13027dc25bb "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalc.code.tex" 1480098816 15934 b941bd3ae7b33179029513707d1f0ff6 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex" 1480098816 5484 4bb4a5cbbd05d6f17a261b59dbd014f1 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex" 1480098816 319 d246cee5ce1aaf2afe558acd4731d5ba "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex" 1480098816 1298 83d7449064b0f0f089f1898a244b6d16 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex" 1480098816 3725 36db4c06798413d051778705f3255eea "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex" 1480098816 3001 d54bab2f783098ed890fabbeb437b04f "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex" 1480098816 527 a8d3e34fbab3dc317cf9b06aa5cdc2e4 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex" 1480098816 1158 d6338189706f4587fbc6175c0fb41f17 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex" 1480098816 607 40dc15d3efcf10f095866a94bd544bc1 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex" 1480098816 457 ffe9f8b9d108b5f729fd86c78c63589a "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex" 1480098816 447 e87a0add254801e837fa6c18f61f340f "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex" 1480098816 1004 86af66805a9d0b62bd41ea0796a64d50 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex" 1480098816 590 7e11000a24bbee9ae2a4cd0e5d88e58c "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex" 1480098816 11599 d694704a88e2f9007c996d3a6a4d629c "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex" 1480098816 176652 1c2926908e2b356d454795c35385d580 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex" 1480098816 8854 7be3c3b9eb0de90885a881085ce8e118 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex" 1480098816 31927 7acd27f90dd95ce67ad32166cd0b95ec "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex" 1480098816 2647 defb4a59c2a1d36127a1ac6eebb4a5c1 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex" 1480098816 32969 dbcfd5a7de6a0f7255c333ef60287d59 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex" 1480098816 69900 cbd9fafb795a493fb2a3b73713994b78 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex" 1480098816 28333 0189c4cfb5044e700e6ba65a32295f01 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex" 1480098816 132566 291d42c3b23fdb5c47e51b36a5fea0c4 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex" 1480098816 37737 ea6cb0b4e615f6048f20ee7153b3cc78 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex" 1480098816 49891 e74f8181c57d9359c941b6bee48fccc2 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex" 1480098816 90791 0f3e73cae9286c96d9fcb2161cc223bc "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex" 1480098816 454 9e9e7c99f4da4f41698be21eaef4938e "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex" 1480098816 13416 940ea6971d7a65dc440d3479939c66ae "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex" 1480098816 94097 62ac62cda46eb715560dc27f9ed6e8b1 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1480098816 9375 5adc70f722abd29fc250d59e0694b548 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1480098816 22069 7c21c42b15718ce922f36235be360490 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1480098816 8210 a7be5b52ef3d2c087b7dc3d52898b67e "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1480098816 3534 c7f28fbac13616513e513efe93b8569b "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex" 1480098816 3167 7c9394e79aac27db96a92f9b2792b858 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1480098816 9289 261407875b9dbb0194691c3eb893610f "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1480098816 7078 946ddf4a7e57219b6afdbad98eb6731b "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1480098816 2688 139c6abc86761a6190c2f4bef5d752be "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1480098816 92284 dcf023dbaa84e6c50e11c2f79fe8cfa6 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex" 1480098816 35430 046e15fbb65e74d8f0e7945f99741fdb "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex" 1480098816 7099 f44d505bae6c7c2b933cdd63441db4b9 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex" 1480098816 71902 658cc1e13f73daec4225b8fc1c27600b "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex" 1480098816 20934 2328bd2e04520e1ab077ac4ee13b8935 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex" 1480098816 16203 83cbe1220e389eeee283a6168f9a567b "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex" 1480098816 42906 d54376d96df1a2ae2d33fb722236d8e9 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg" 1480098816 978 15af626ebd3d4d790aac19170dac04f2 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1480098816 5437 d91f93ed61ecdc57e119849b2d784a0b "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def" 1480098816 13507 809d848d9262638e1b1705a68a73c566 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1480098816 35113 2ccc50c1c9573e4bac9230d030f9c67c "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1480098816 1983 b5994ebbcee17f1ba3d29bb1bd696fcf "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1480098816 7881 d459d6057e13d10ce7a227ae44b7295e "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex" 1480098816 22211 d696ef78c12269178882d218b2cf191d "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex" 1480098816 36194 e194ef4e0b396b531a3891feb4b1cc22 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex" 1480098816 33377 af391d6ad1bfcbe2278e191f48e43ba8 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex" 1480098816 2536 a3b0529d815a2759ba157b56610a6377 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex" 1480098816 6833 114eda2cf1d348e0e7e477a1a4dc1941 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex" 1480098816 16501 ab0135765e27b6b8dae047831fe84818 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def" 1480098816 5544 294baac9629ba59f675b1f2027ad7136 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/xkeyval/keyval.tex" 1480098819 2725 fc34ef3ccb37ba15a640e8fca6190bca "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/xkeyval/xkeyval.tex" 1480098819 19231 26434a5656c684f5ffb1f26f98006baa "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/xkeyval/xkvutils.tex" 1480098819 7677 6f5ce7c1124cad7ec57d05b2562bd8fe "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/xstring/xstring.sty" 1480098819 144 0ca8d67b000b795a4d9ec000e0fd09c7 "" + "/usr/local/texlive/2017/texmf-dist/tex/generic/xstring/xstring.tex" 1480098819 54373 fd4487ae3e45d4074bc89aea1d2b6807 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/a0poster/a0size.sty" 1480098820 8152 268ed2b80615aae94c473994b459df36 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/ae/ae.sty" 1480098820 1225 5aef800ba6cda7885d41428e026f49e3 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/ae/t1aer.fd" 1480098820 1844 da911cbbb4e7e5dc2776545b8b9cbc06 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/ae/t1aett.fd" 1480098820 1265 104c75383e0b9b5fac7ca7880a6cdf30 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/base/exscale.sty" 1480098821 2439 6a427669230e8504971d439451a87b33 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/base/fontenc.sty" 1492297155 4571 13977df0eda144b93597fc709035ad1f "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/base/ifthen.sty" 1480098821 5159 a08c9bbd48fc492f15b22e458bef961f "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/base/inputenc.sty" 1480098821 4732 d63eda807ac82cca2ca8488efd31a966 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/base/omsenc.dfu" 1487721667 2004 ac51aeac484f08c01026120d62677eca "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/base/ot1enc.dfu" 1487721667 3181 1cb3e9ad01f4a01127b2ffd821bfeec7 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/base/size10.clo" 1480098821 8292 e897c12e1e886ce77fe26afc5d470886 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/base/t1enc.def" 1492297155 10006 a90ba4035cf778f32f424e297d92e235 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/base/t1enc.dfu" 1487721667 11255 9d97362866549d3d3c994b5f28d1b9b5 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/base/utf8.def" 1487721667 7784 325a2a09984cb5c4ff230f9867145ad3 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/blindtext/blindtext.sty" 1480098823 47295 de48b7f8ebf4b54709a2f6b2c7106dd5 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/caption/caption.sty" 1480098823 66233 8b81cfab95a1f8fc2f0f6c89415b087a "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/caption/caption3.sty" 1480098823 64866 1ea74c5f2d1685881497f021b8f186b2 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/etoolbox/etoolbox.sty" 1483484472 42324 d951db30d0cb2b811f084fa3f92aec16 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/extsizes/extarticle.cls" 1480098827 20602 3112294ba237d94ce4a1502cfef3594f "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/geometry/geometry.sty" 1480098829 40502 e003406220954b0716679d7928aedd8a "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/graphics-cfg/color.cfg" 1480098830 1213 620bba36b25224fa9b7e1ccb4ecb76fd "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/graphics-cfg/graphics.cfg" 1480098830 1224 978390e9c2234eab29404bc21b268d1e "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/graphics-def/pdftex.def" 1485129666 58250 3792a9d2d1d664ee8c742498e295b051 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/graphics/graphics.sty" 1492297155 14603 b288c52bd5d46d593af31dbc7e548236 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/graphics/graphicx.sty" 1480098830 8125 557ab9f1bfa80d369fb45a914aa8a3b4 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/graphics/trig.sty" 1480098830 3980 0a268fbfda01e381fa95821ab13b6aee "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/hpdftex.def" 1489964469 51983 9a4f683a2a7b213874a28bc4008b84d9 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/hyperref.sty" 1489964469 233808 b63d91422c362e723c6e8b1a2fffcba5 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/nameref.sty" 1480098831 12949 81e4e808884a8f0e276b69410e234656 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/pd1enc.def" 1489964469 14098 7631f11156e5f9cd76010dbd230aa268 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1480098833 678 4792914a8f45be57bb98413425e4c7af "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/latexconfig/hyperref.cfg" 1480098833 235 6031e5765137be07eed51a510b2b8fb7 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/ms/everyshi.sty" 1480098835 3878 6aa7c08ff2621006e0603349e40a30a8 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/auxhook.sty" 1480098836 3834 4363110eb0ef1eb2b71c8fcbcdb6c357 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty" 1480098836 12095 5337833c991d80788a43d3ce26bd1c46 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/grfext.sty" 1480098836 7075 2fe3d848bba95f139de11ded085e74aa "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/kvoptions.sty" 1480098836 22417 1d9df1eb66848aa31b18a593099cf45c "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty" 1480098836 9581 023642318cef9f4677efe364de1e2a27 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty" 1480098837 1197 8a80cdde14696a9198f1793a55dcf332 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty" 1480098837 410 5bf12ea7330e5f12c445332a4fe9a263 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1480098837 21115 facf03b7dbe5ea2f5f1dce1ac84b5d05 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty" 1480098837 1091 d9163d29def82ee90370c8a63667742c "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty" 1480098837 339 592cf35cba3d400082b8a9a5d0199d70 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/math/pgfmath.sty" 1480098837 306 0796eafca5e159e6ec2167a6d22d81b1 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty" 1480098837 443 0b2e781830192df35c0fd357cf13e26e "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/utilities/pgffor.sty" 1480098837 348 8927fde343487e003b01a4c2ca34073b "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty" 1480098837 274 4cad6e665cc93ac2ac979039a94fa1e1 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty" 1480098837 325 2bcd023400636339210573e2b3ee298b "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/psnfss/avant.sty" 1480098837 795 c8d43d295cb2b79ceb71eba8e372db73 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/psnfss/omspag.fd" 1480098837 576 626c83d57e8f32394d4887f3dd31d665 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/psnfss/t1pag.fd" 1480098837 1007 2cc391f354d52007e256485aef3427ad "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/tools/calc.sty" 1480098841 10214 d03d065f799d54f6b7e9b175f8d84279 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/tools/xspace.sty" 1480098841 4544 8b8f59969458e1c25e0559e8e0ced1a4 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/url/url.sty" 1480098842 12796 8edb7d69a20b857904dd0ea757c14ec9 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/xcolor/xcolor.sty" 1480098843 55589 34128738f682d033422ca125f82e5d62 "" + "/usr/local/texlive/2017/texmf-dist/tex/latex/xkeyval/xkeyval.sty" 1480098843 4962 9c1069474ff71dbc47d5006555e352d3 "" + "/usr/local/texlive/2017/texmf-dist/web2c/texmf.cnf" 1494087824 32646 eadc4ca26cdbe7105ac7c593aa8c4f72 "" + "/usr/local/texlive/2017/texmf-var/fonts/map/pdftex/updmap/pdftex.map" 1495593472 2350277 a699055bee05bf8a40b0504752487295 "" + "/usr/local/texlive/2017/texmf-var/web2c/pdftex/pdflatex.fmt" 1495593487 4129592 0e6cfee100d68e6d96b92c0258f2ff73 "" + "/usr/local/texlive/2017/texmf.cnf" 1495593465 577 2b71d4d888f9e5560b2e99985915a9fa "" + "atom.png" 1539128792 162051 23107ac4f310f9f41e6b0e29e1a0c2ee "" + "logoITM.png" 1349493568 412481 a04ca31660c639d089eae6efec6a30e0 "" + "mcie.png" 1539996814 414984 1f095e0405f9d8e5ea9b97467c6b47e5 "" + "movility.png" 1538699664 26919 aef4f0d315063a9b04cfc592e5cddb00 "" + "mytheme.aux" 1539997658 662 b2b94621371df8d9296b8bf5bec1b851 "" + "mytheme.out" 1539997654 0 d41d8cd98f00b204e9800998ecf8427e "" + "mytheme.tex" 1539997652 9009 0cdd4967983256a1ab815cda6e9fdb2d "" + "osci.png" 1539128793 93433 bc3d487a2ee5cf42849a6e64bf94de33 "" + "pcb.png" 1539404225 66585 499aed7eecf3001680f2673b60c572f2 "" + "renew.png" 1539128793 4973 0a9fef40145bd00eb3e0216045ba4e2f "" + "research.png" 1539128793 107696 4aba763c608890ff0c6808b44f865a32 "" + "sepLogo.png" 1538700523 280791 a5d2953e5417c063bf628ba8cb96dc0a "" + "signal.png" 1539128792 35697 84ea54f9c689a67f6350a5924932c072 "" + "tecnmW.png" 1524514452 161520 ea1939c0b4ad91757d0eb4b6fcd14fc5 "" + "tikzposter.cls" 1538688255 30333 632ccd4aee064d94dd026bb5be0ca325 "" + "tikzposterBackgroundstyles.tex" 1538688255 2134 7863cf7b9a434f8687f95439c87cf130 "" + "tikzposterBlockstyles.tex" 1538688255 8363 5feeceba1dc19b521e82a27186b4e2e7 "" + "tikzposterColorpalettes.tex" 1538688255 1537 ac74ec764e91ace65f8a83f8daa35913 "" + "tikzposterColorstyles.tex" 1538688255 6502 c272b03d636c9b006e310c652d602743 "" + "tikzposterInnerblockstyles.tex" 1538688255 10868 7714256c00124f631bf214801c2fc341 "" + "tikzposterLayoutthemes.tex" 1538688255 2747 1f8adbf43e64e846256e90facd241ba1 "" + "tikzposterNotestyles.tex" 1538688255 7851 43195d5496b882181b88b49a61d198b7 "" + "tikzposterTitlestyles.tex" 1538688255 6372 8029e8ab673a3f29e72cb46eb6b27cf7 "" + (generated) + "mytheme.out" + "mytheme.log" + "mytheme.aux" + "mytheme.pdf" diff --git a/mytheme.fls b/mytheme.fls new file mode 100644 index 0000000..21c35fa --- /dev/null +++ b/mytheme.fls @@ -0,0 +1,447 @@ +PWD /Users/Marx/Dropbox/Latex/itmPoster +INPUT /usr/local/texlive/2017/texmf.cnf +INPUT /usr/local/texlive/2017/texmf-dist/web2c/texmf.cnf +INPUT /usr/local/texlive/2017/texmf-var/web2c/pdftex/pdflatex.fmt +INPUT mytheme.tex +OUTPUT mytheme.log +INPUT tikzposter.cls +INPUT tikzposter.cls +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/xkeyval/xkeyval.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/xkeyval/xkeyval.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/xkeyval/xkeyval.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/xkeyval/xkvutils.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/xkeyval/keyval.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/tools/calc.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/tools/calc.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/ifthen.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/ifthen.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/ae/ae.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/ae/ae.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/fontenc.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/fontenc.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/t1enc.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/t1enc.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/ae/t1aer.fd +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/ae/t1aer.fd +INPUT /usr/local/texlive/2017/texmf-dist/fonts/map/fontname/texfonts.map +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aer10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/xstring/xstring.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/xstring/xstring.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/xstring/xstring.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/etoolbox/etoolbox.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/etoolbox/etoolbox.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/ms/everyshi.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/ms/everyshi.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/graphics/graphicx.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/graphics/graphicx.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/graphics/graphics.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/graphics/graphics.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/graphics/trig.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/graphics/trig.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/graphics-def/pdftex.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/graphics-def/pdftex.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/infwarerr.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/infwarerr.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/ltxcmds.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/ltxcmds.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/xcolor/xcolor.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/xcolor/xcolor.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/graphics-cfg/color.cfg +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/graphics-cfg/color.cfg +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/utilities/pgffor.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/utilities/pgffor.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/math/pgfmath.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/pgf/math/pgfmath.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex +OUTPUT mytheme.pdf +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalc.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalc.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/extsizes/extarticle.cls +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/extsizes/extarticle.cls +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/size10.clo +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/size10.clo +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/exscale.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/exscale.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/ifpdf.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/ifpdf.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/ifvtex.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/ifvtex.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/ifxetex/ifxetex.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/ifxetex/ifxetex.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/a0poster/a0size.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/a0poster/a0size.sty +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aer17.tfm +INPUT tikzposterColorpalettes.tex +INPUT tikzposterColorpalettes.tex +INPUT tikzposterColorstyles.tex +INPUT tikzposterColorstyles.tex +INPUT tikzposterBackgroundstyles.tex +INPUT tikzposterBackgroundstyles.tex +INPUT tikzposterTitlestyles.tex +INPUT tikzposterTitlestyles.tex +INPUT tikzposterBlockstyles.tex +INPUT tikzposterBlockstyles.tex +INPUT tikzposterInnerblockstyles.tex +INPUT tikzposterInnerblockstyles.tex +INPUT tikzposterNotestyles.tex +INPUT tikzposterNotestyles.tex +INPUT tikzposterLayoutthemes.tex +INPUT tikzposterLayoutthemes.tex +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/inputenc.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/inputenc.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/utf8.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/utf8.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/t1enc.dfu +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/t1enc.dfu +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/ot1enc.dfu +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/ot1enc.dfu +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/omsenc.dfu +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/omsenc.dfu +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/hyperref.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/hyperref.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/auxhook.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/auxhook.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/kvoptions.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/kvoptions.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/pd1enc.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/pd1enc.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/latexconfig/hyperref.cfg +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/latexconfig/hyperref.cfg +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/url/url.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/url/url.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/hpdftex.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/hpdftex.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/blindtext/blindtext.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/blindtext/blindtext.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/tools/xspace.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/tools/xspace.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/psnfss/avant.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/psnfss/avant.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/fontenc.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/fontenc.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/t1enc.def +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/base/t1enc.def +INPUT mytheme.aux +INPUT mytheme.aux +OUTPUT mytheme.aux +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/psnfss/t1pag.fd +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/psnfss/t1pag.fd +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +INPUT /usr/local/texlive/2017/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/grfext.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/grfext.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/nameref.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/nameref.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/gettitlestring.sty +INPUT /usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/gettitlestring.sty +INPUT mytheme.out +INPUT mytheme.out +INPUT mytheme.out +INPUT mytheme.out +INPUT ./mytheme.out +INPUT ./mytheme.out +OUTPUT mytheme.out +INPUT sepLogo.png +INPUT ./sepLogo.png +INPUT ./sepLogo.png +INPUT tecnmW.png +INPUT ./tecnmW.png +INPUT ./tecnmW.png +INPUT logoITM.png +INPUT ./logoITM.png +INPUT ./logoITM.png +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aebx12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmr17.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmr12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmex10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmex10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aebx12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aer17.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aeti12.tfm +INPUT sepLogo.png +INPUT ./sepLogo.png +INPUT tecnmW.png +INPUT ./tecnmW.png +INPUT logoITM.png +INPUT ./logoITM.png +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagkc8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagdc8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmr17.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmr17.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmr12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmex10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmex10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmex10.tfm +INPUT sepLogo.png +INPUT ./sepLogo.png +INPUT tecnmW.png +INPUT ./tecnmW.png +INPUT logoITM.png +INPUT ./logoITM.png +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmr17.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmex10.tfm +INPUT pcb.png +INPUT ./pcb.png +INPUT ./pcb.png +INPUT osci.png +INPUT ./osci.png +INPUT ./osci.png +INPUT movility.png +INPUT ./movility.png +INPUT ./movility.png +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/psnfss/omspag.fd +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/psnfss/omspag.fd +INPUT renew.png +INPUT ./renew.png +INPUT ./renew.png +INPUT atom.png +INPUT ./atom.png +INPUT ./atom.png +INPUT signal.png +INPUT ./signal.png +INPUT ./signal.png +INPUT research.png +INPUT ./research.png +INPUT ./research.png +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagdc8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagdc8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagdc8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagkc8t.tfm +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/ae/t1aett.fd +INPUT /usr/local/texlive/2017/texmf-dist/tex/latex/ae/t1aett.fd +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aett12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmr17.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmex10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/ae/aett12.tfm +INPUT mcie.png +INPUT ./mcie.png +INPUT ./mcie.png +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/public/ae/aebx12.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmib10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmib10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmbsy10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmbxti10.tfm +INPUT /usr/local/texlive/2017/texmf-var/fonts/map/pdftex/updmap/pdftex.map +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/public/ae/aebx12.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmib10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmib10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmbsy10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmbxti10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/public/ae/aer17.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmr17.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmu10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/public/ae/aeti12.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmti12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmsl12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagdc8t.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8r.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8r.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagk8t.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8r.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagk8t.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8r.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagd8t.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8r.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagk8t.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8r.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagd8t.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8r.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagdc8t.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8r.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagdc8t.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8r.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagd8r.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/adobe/avantgar/pagkc8t.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/adobe/avantgar/pagk8r.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/public/ae/aett12.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmtt12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmib10.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/vf/public/ae/aett12.vf +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmtt12.tfm +INPUT /usr/local/texlive/2017/texmf-dist/fonts/tfm/public/cm/cmmib10.tfm +INPUT mytheme.aux +INPUT ./mytheme.out +INPUT ./mytheme.out +INPUT /usr/local/texlive/2017/texmf-dist/fonts/enc/dvips/base/8r.enc +INPUT /usr/local/texlive/2017/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb +INPUT /usr/local/texlive/2017/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb +INPUT /usr/local/texlive/2017/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb +INPUT /usr/local/texlive/2017/texmf-dist/fonts/type1/public/amsfonts/cm/cmti12.pfb +INPUT /usr/local/texlive/2017/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt12.pfb +INPUT /usr/local/texlive/2017/texmf-dist/fonts/type1/urw/avantgar/uagd8a.pfb +INPUT /usr/local/texlive/2017/texmf-dist/fonts/type1/urw/avantgar/uagk8a.pfb diff --git a/mytheme.log b/mytheme.log new file mode 100644 index 0000000..afbed02 --- /dev/null +++ b/mytheme.log @@ -0,0 +1,1270 @@ +This is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017) (preloaded format=pdflatex 2017.5.23) 19 OCT 2018 20:07 +entering extended mode + \write18 enabled. + file:line:error style messages enabled. + %&-line parsing enabled. +**mytheme.tex +(./mytheme.tex +LaTeX2e <2017-04-15> +Babel <3.10> and hyphenation patterns for 84 language(s) loaded. +(./tikzposter.cls +Document Class: tikzposter 2014/10/15 v2.1 LaTeX document class for Posters +(/usr/local/texlive/2017/texmf-dist/tex/latex/xkeyval/xkeyval.sty +Package: xkeyval 2014/12/03 v2.7a package option processing (HA) + (/usr/local/texlive/2017/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/local/texlive/2017/texmf-dist/tex/generic/xkeyval/xkvutils.tex +\XKV@toks=\toks14 +\XKV@tempa@toks=\toks15 + (/usr/local/texlive/2017/texmf-dist/tex/generic/xkeyval/keyval.tex)) +\XKV@depth=\count79 +File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) +)) (/usr/local/texlive/2017/texmf-dist/tex/latex/tools/calc.sty +Package: calc 2014/10/28 v4.3 Infix arithmetic (KKT,FJ) +\calc@Acount=\count80 +\calc@Bcount=\count81 +\calc@Adimen=\dimen102 +\calc@Bdimen=\dimen103 +\calc@Askip=\skip41 +\calc@Bskip=\skip42 +LaTeX Info: Redefining \setlength on input line 80. +LaTeX Info: Redefining \addtolength on input line 81. +\calc@Ccount=\count82 +\calc@Cskip=\skip43 +) (/usr/local/texlive/2017/texmf-dist/tex/latex/base/ifthen.sty +Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) +) (/usr/local/texlive/2017/texmf-dist/tex/latex/ae/ae.sty +Package: ae 2001/02/12 1.3 Almost European Computer Modern + (/usr/local/texlive/2017/texmf-dist/tex/latex/base/fontenc.sty +Package: fontenc 2017/04/05 v2.0i Standard LaTeX package + (/usr/local/texlive/2017/texmf-dist/tex/latex/base/t1enc.def +File: t1enc.def 2017/04/05 v2.0i Standard LaTeX file +LaTeX Font Info: Redeclaring font encoding T1 on input line 48. +) +LaTeX Font Info: Try loading font information for T1+aer on input line 105. + (/usr/local/texlive/2017/texmf-dist/tex/latex/ae/t1aer.fd +File: t1aer.fd 1997/11/16 Font definitions for T1/aer. +))) (/usr/local/texlive/2017/texmf-dist/tex/generic/xstring/xstring.sty (/usr/local/texlive/2017/texmf-dist/tex/generic/xstring/xstring.tex +\@xs@message=\write3 +\integerpart=\count83 +\decimalpart=\count84 +) +Package: xstring 2013/10/13 v1.7c String manipulations (C Tellechea) +) (/usr/local/texlive/2017/texmf-dist/tex/latex/etoolbox/etoolbox.sty +Package: etoolbox 2017/01/02 v2.4 e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count85 +) (/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty +(/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex +\pgfutil@everybye=\toks16 +\pgfutil@tempdima=\dimen104 +\pgfutil@tempdimb=\dimen105 + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex)) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def +\pgfutil@abb=\box26 + (/usr/local/texlive/2017/texmf-dist/tex/latex/ms/everyshi.sty +Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS) +)) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex +Package: pgfrcs 2015/08/07 v3.0.1a (rcs-revision 1.31) +)) +Package: pgf 2015/08/07 v3.0.1a (rcs-revision 1.15) + (/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (/usr/local/texlive/2017/texmf-dist/tex/latex/graphics/graphicx.sty +Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR) + (/usr/local/texlive/2017/texmf-dist/tex/latex/graphics/graphics.sty +Package: graphics 2017/04/14 v1.1b Standard LaTeX Graphics (DPC,SPQR) + (/usr/local/texlive/2017/texmf-dist/tex/latex/graphics/trig.sty +Package: trig 2016/01/03 v1.10 sin cos tan (DPC) +) (/usr/local/texlive/2017/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 99. + (/usr/local/texlive/2017/texmf-dist/tex/latex/graphics-def/pdftex.def +File: pdftex.def 2017/01/12 v0.06k Graphics/color for pdfTeX + (/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/infwarerr.sty +Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO) +) +(/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/ltxcmds.sty +Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) +) +\Gread@gobject=\count86 +)) +\Gin@req@height=\dimen106 +\Gin@req@width=\dimen107 +) (/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex +Package: pgfsys 2014/07/09 v3.0.1a (rcs-revision 1.48) + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +\pgfkeys@pathtoks=\toks17 +\pgfkeys@temptoks=\toks18 + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex +\pgfkeys@tmptoks=\toks19 +)) +\pgf@x=\dimen108 +\pgf@y=\dimen109 +\pgf@xa=\dimen110 +\pgf@ya=\dimen111 +\pgf@xb=\dimen112 +\pgf@yb=\dimen113 +\pgf@xc=\dimen114 +\pgf@yc=\dimen115 +\w@pgf@writea=\write4 +\r@pgf@reada=\read1 +\c@pgf@counta=\count87 +\c@pgf@countb=\count88 +\c@pgf@countc=\count89 +\c@pgf@countd=\count90 +\t@pgf@toka=\toks20 +\t@pgf@tokb=\toks21 +\t@pgf@tokc=\toks22 + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg +File: pgf.cfg 2008/05/14 (rcs-revision 1.7) +) +Driver file for pgf: pgfsys-pdftex.def + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def +File: pgfsys-pdftex.def 2014/10/11 (rcs-revision 1.35) + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def +File: pgfsys-common-pdf.def 2013/10/10 (rcs-revision 1.13) +))) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex +File: pgfsyssoftpath.code.tex 2013/09/09 (rcs-revision 1.9) +\pgfsyssoftpath@smallbuffer@items=\count91 +\pgfsyssoftpath@bigbuffer@items=\count92 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex +File: pgfsysprotocol.code.tex 2006/10/16 (rcs-revision 1.4) +)) (/usr/local/texlive/2017/texmf-dist/tex/latex/xcolor/xcolor.sty +Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) + (/usr/local/texlive/2017/texmf-dist/tex/latex/graphics-cfg/color.cfg +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package xcolor Info: Driver file: pdftex.def on input line 225. +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352. +Package xcolor Info: Model `RGB' extended on input line 1364. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. +) +(/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex +Package: pgfcore 2010/04/11 v3.0.1a (rcs-revision 1.7) + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex +\pgfmath@dimen=\dimen116 +\pgfmath@count=\count93 +\pgfmath@box=\box27 +\pgfmath@toks=\toks23 +\pgfmath@stack@operand=\toks24 +\pgfmath@stack@operation=\toks25 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) +(/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex))) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex +\c@pgfmathroundto@lastzeros=\count94 +)) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex +File: pgfcorepoints.code.tex 2013/10/07 (rcs-revision 1.27) +\pgf@picminx=\dimen117 +\pgf@picmaxx=\dimen118 +\pgf@picminy=\dimen119 +\pgf@picmaxy=\dimen120 +\pgf@pathminx=\dimen121 +\pgf@pathmaxx=\dimen122 +\pgf@pathminy=\dimen123 +\pgf@pathmaxy=\dimen124 +\pgf@xx=\dimen125 +\pgf@xy=\dimen126 +\pgf@yx=\dimen127 +\pgf@yy=\dimen128 +\pgf@zx=\dimen129 +\pgf@zy=\dimen130 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex +File: pgfcorepathconstruct.code.tex 2013/10/07 (rcs-revision 1.29) +\pgf@path@lastx=\dimen131 +\pgf@path@lasty=\dimen132 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex +File: pgfcorepathusage.code.tex 2014/11/02 (rcs-revision 1.24) +\pgf@shorten@end@additional=\dimen133 +\pgf@shorten@start@additional=\dimen134 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex +File: pgfcorescopes.code.tex 2015/05/08 (rcs-revision 1.46) +\pgfpic=\box28 +\pgf@hbox=\box29 +\pgf@layerbox@main=\box30 +\pgf@picture@serial@count=\count95 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex +File: pgfcoregraphicstate.code.tex 2014/11/02 (rcs-revision 1.12) +\pgflinewidth=\dimen135 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex +File: pgfcoretransformations.code.tex 2015/08/07 (rcs-revision 1.20) +\pgf@pt@x=\dimen136 +\pgf@pt@y=\dimen137 +\pgf@pt@temp=\dimen138 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex +File: pgfcorequick.code.tex 2008/10/09 (rcs-revision 1.3) +) +(/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex +File: pgfcoreobjects.code.tex 2006/10/11 (rcs-revision 1.2) +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex +File: pgfcorepathprocessing.code.tex 2013/09/09 (rcs-revision 1.9) +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex +File: pgfcorearrows.code.tex 2015/05/14 (rcs-revision 1.43) +\pgfarrowsep=\dimen139 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex +File: pgfcoreshade.code.tex 2013/07/15 (rcs-revision 1.15) +\pgf@max=\dimen140 +\pgf@sys@shading@range@num=\count96 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex +File: pgfcoreimage.code.tex 2013/07/15 (rcs-revision 1.18) + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex +File: pgfcoreexternal.code.tex 2014/07/09 (rcs-revision 1.21) +\pgfexternal@startupbox=\box31 +)) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex +File: pgfcorelayers.code.tex 2013/07/18 (rcs-revision 1.7) +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex +File: pgfcoretransparency.code.tex 2013/09/30 (rcs-revision 1.5) +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex +File: pgfcorepatterns.code.tex 2013/11/07 (rcs-revision 1.5) +))) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex +File: pgfmoduleshapes.code.tex 2014/03/21 (rcs-revision 1.35) +\pgfnodeparttextbox=\box32 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex +File: pgfmoduleplot.code.tex 2015/08/03 (rcs-revision 1.13) +) +(/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty +Package: pgfcomp-version-0-65 2007/07/03 v3.0.1a (rcs-revision 1.7) +\pgf@nodesepstart=\dimen141 +\pgf@nodesepend=\dimen142 +) (/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty +Package: pgfcomp-version-1-18 2007/07/23 v3.0.1a (rcs-revision 1.1) +)) (/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (/usr/local/texlive/2017/texmf-dist/tex/latex/pgf/math/pgfmath.sty (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex +Package: pgffor 2013/12/13 v3.0.1a (rcs-revision 1.25) + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex) +\pgffor@iter=\dimen143 +\pgffor@skip=\dimen144 +\pgffor@stack=\toks26 +\pgffor@toks=\toks27 +)) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex +Package: tikz 2015/08/07 v3.0.1a (rcs-revision 1.151) + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex +File: pgflibraryplothandlers.code.tex 2013/08/31 v3.0.1a (rcs-revision 1.20) +\pgf@plot@mark@count=\count97 +\pgfplotmarksize=\dimen145 +) +\tikz@lastx=\dimen146 +\tikz@lasty=\dimen147 +\tikz@lastxsaved=\dimen148 +\tikz@lastysaved=\dimen149 +\tikzleveldistance=\dimen150 +\tikzsiblingdistance=\dimen151 +\tikz@figbox=\box33 +\tikz@figbox@bg=\box34 +\tikz@tempbox=\box35 +\tikz@tempbox@bg=\box36 +\tikztreelevel=\count98 +\tikznumberofchildren=\count99 +\tikznumberofcurrentchild=\count100 +\tikz@fig@count=\count101 + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex +File: pgfmodulematrix.code.tex 2013/09/17 (rcs-revision 1.8) +\pgfmatrixcurrentrow=\count102 +\pgfmatrixcurrentcolumn=\count103 +\pgf@matrix@numberofcolumns=\count104 +) +\tikz@expandcount=\count105 + +(/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex +File: tikzlibrarytopaths.code.tex 2008/06/17 v3.0.1a (rcs-revision 1.2) +))) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex +File: tikzlibraryshapes.code.tex 2008/01/09 v3.0.1a (rcs-revision 1.1) + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex +File: tikzlibraryshapes.geometric.code.tex 2008/01/09 v3.0.1a (rcs-revision 1.1) + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex +File: pgflibraryshapes.geometric.code.tex 2008/06/26 v3.0.1a (rcs-revision 1.1) +)) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex +File: tikzlibraryshapes.misc.code.tex 2008/01/09 v3.0.1a (rcs-revision 1.1) + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex +File: pgflibraryshapes.misc.code.tex 2013/07/18 v3.0.1a (rcs-revision 1.5) +)) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex +File: tikzlibraryshapes.symbols.code.tex 2008/01/09 v3.0.1a (rcs-revision 1.1) + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex +File: pgflibraryshapes.symbols.code.tex 2013/09/11 v3.0.1a (rcs-revision 1.6) +)) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex +File: tikzlibraryshapes.arrows.code.tex 2008/01/09 v3.0.1a (rcs-revision 1.1) + +(/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex +File: pgflibraryshapes.arrows.code.tex 2008/06/26 v3.0.1a (rcs-revision 1.1) +)) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex)) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex +File: tikzlibraryshapes.multipart.code.tex 2008/01/09 v3.0.1a (rcs-revision 1.1) + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex +File: pgflibraryshapes.multipart.code.tex 2010/01/07 v3.0.1a (rcs-revision 1.2) +\pgfnodepartlowerbox=\box37 +\pgfnodeparttwobox=\box38 +\pgfnodepartthreebox=\box39 +\pgfnodepartfourbox=\box40 +\pgfnodeparttwentybox=\box41 +\pgfnodepartnineteenbox=\box42 +\pgfnodeparteighteenbox=\box43 +\pgfnodepartseventeenbox=\box44 +\pgfnodepartsixteenbox=\box45 +\pgfnodepartfifteenbox=\box46 +\pgfnodepartfourteenbox=\box47 +\pgfnodepartthirteenbox=\box48 +\pgfnodeparttwelvebox=\box49 +\pgfnodepartelevenbox=\box50 +\pgfnodeparttenbox=\box51 +\pgfnodepartninebox=\box52 +\pgfnodeparteightbox=\box53 +\pgfnodepartsevenbox=\box54 +\pgfnodepartsixbox=\box55 +\pgfnodepartfivebox=\box56 +))) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex +\pgfdecoratedcompleteddistance=\dimen152 +\pgfdecoratedremainingdistance=\dimen153 +\pgfdecoratedinputsegmentcompleteddistance=\dimen154 +\pgfdecoratedinputsegmentremainingdistance=\dimen155 +\pgf@decorate@distancetomove=\dimen156 +\pgf@decorate@repeatstate=\count106 +\pgfdecorationsegmentamplitude=\dimen157 +\pgfdecorationsegmentlength=\dimen158 +) +\tikz@lib@dec@box=\box57 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex +File: tikzlibraryshadows.code.tex 2008/01/13 v3.0.1a (rcs-revision 1.3) + (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex +File: tikzlibraryfadings.code.tex 2009/11/15 v3.0.1a (rcs-revision 1.2) + +(/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex +File: pgflibraryfadings.code.tex 2008/02/07 v3.0.1a (rcs-revision 1.3) +))) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex +File: tikzlibrarybackgrounds.code.tex 2013/07/18 v3.0.1a (rcs-revision 1.3) +\pgf@layerbox@background=\box58 +\pgf@layerboxsaved@background=\box59 +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalc.code.tex +File: tikzlibrarycalc.code.tex 2013/07/15 v3.0.1a (rcs-revision 1.9) +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex +File: tikzlibraryfit.code.tex 2013/07/12 v3.0.1a (rcs-revision 1.5) +) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex)) (/usr/local/texlive/2017/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex +File: pgflibraryarrows.code.tex 2013/09/23 v3.0.1a (rcs-revision 1.16) +\arrowsize=\dimen159 +) +\TP@innermargin=\dimen160 +\TP@visibletextwidth=\dimen161 +\TP@visibletextheight=\dimen162 +\TP@titlewidth=\dimen163 +\titlewidth=\dimen164 +\TP@titlelinewidth=\dimen165 +\titlelinewidth=\dimen166 +\titleinnersep=\dimen167 +\TP@titleinnersep=\dimen168 +\TP@titletotopverticalspace=\dimen169 +\titletotopverticalspace=\dimen170 +\TP@titletoblockverticalspace=\dimen171 +\TP@titleheight=\dimen172 +\titleheight=\dimen173 +\titlegraphicheight=\dimen174 +\titleposleft=\dimen175 +\titleposright=\dimen176 +\titlepostop=\dimen177 +\titleposbottom=\dimen178 +\TP@titlegraphictotitledistance=\dimen179 +\TP@colspace=\dimen180 +\TP@coltop=\dimen181 +\TP@colbottom=\dimen182 +\TP@colcenter=\dimen183 +\colwidth=\dimen184 +\TP@subcolspace=\dimen185 +\TP@subcoltop=\dimen186 +\TP@subcolbottom=\dimen187 +\TP@subcolcenter=\dimen188 +\subcolwidth=\dimen189 +\TP@blockverticalspace=\dimen190 +\TP@blockcenter=\dimen191 +\TP@blocktitleinnersep=\dimen192 +\blocktitleinnersep=\dimen193 +\TP@blockbodyinnersep=\dimen194 +\blockbodyinnersep=\dimen195 +\TP@blocktitlebox=\box60 +\TP@blockbodybox=\box61 +\blockwidth=\dimen196 +\TP@blocktitlewidth=\dimen197 +\TP@blockbodywidth=\dimen198 +\TP@blockbodyheight=\dimen199 +\TP@blocktitleheight=\dimen256 +\TP@blocktop=\dimen257 +\TP@blocktitleoffsetx=\dimen258 +\TP@blocktitleoffsety=\dimen259 +\TP@blockbodyoffsetx=\dimen260 +\TP@blockbodyoffsety=\dimen261 +\TP@blockbodyverticalshift=\dimen262 +\blocklinewidth=\dimen263 +\TP@innerblockcenter=\dimen264 +\TP@innerblocktitleinnersep=\dimen265 +\innerblocktitleinnersep=\dimen266 +\TP@innerblockbodyinnersep=\dimen267 +\innerblockbodyinnersep=\dimen268 +\TP@innerblocktitlebox=\box62 +\TP@innerblockbodybox=\box63 +\TP@innerblocktitlewidth=\dimen269 +\TP@innerblockbodywidth=\dimen270 +\TP@innerblockbodyheight=\dimen271 +\TP@innerblocktitleheight=\dimen272 +\TP@innerblocktitleoffsetx=\dimen273 +\TP@innerblocktitleoffsety=\dimen274 +\TP@innerblockbodyoffsetx=\dimen275 +\TP@innerblockbodyoffsety=\dimen276 +\TP@innerblockbodyverticalshift=\dimen277 +\innerblocklinewidth=\dimen278 +\TP@coloredbox=\box64 +\TP@coloredboxwidth=\dimen279 +\TP@coloredboxlinewidth=\dimen280 +\TP@coloredboxinnersep=\dimen281 +\TP@coloredboxheight=\dimen282 +\TP@noteinnersep=\dimen283 +\noteinnersep=\dimen284 +\TP@notetargetoffsetx=\dimen285 +\TP@notetargetoffsety=\dimen286 +\TP@noteradius=\dimen287 +\TP@notewidth=\dimen288 +\TP@noteheight=\dimen289 +\TP@notebox=\box65 +\notelinewidth=\dimen290 + (/usr/local/texlive/2017/texmf-dist/tex/latex/extsizes/extarticle.cls +Document Class: extarticle 1996/10/08 v1.0 Non Standard LaTeX document class +(/usr/local/texlive/2017/texmf-dist/tex/latex/base/size10.clo +File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option) +) (/usr/local/texlive/2017/texmf-dist/tex/latex/base/exscale.sty +Package: exscale 2014/09/29 v2.1h Standard LaTeX package exscale +LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 57. +LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal' +(Font) OMX/cmex/m/n --> OMX/cmex/m/n on input line 57. +LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' +(Font) OMX/cmex/m/n --> OMX/cmex/m/n on input line 57. +\big@size=\dimen291 +) +\c@part=\count107 +\c@section=\count108 +\c@subsection=\count109 +\c@subsubsection=\count110 +\c@paragraph=\count111 +\c@subparagraph=\count112 +\c@figure=\count113 +\c@table=\count114 +\abovecaptionskip=\skip44 +\belowcaptionskip=\skip45 +\bibindent=\dimen292 +) (/usr/local/texlive/2017/texmf-dist/tex/latex/caption/caption.sty +Package: caption 2016/02/21 v3.3-144 Customizing captions (AR) + (/usr/local/texlive/2017/texmf-dist/tex/latex/caption/caption3.sty +Package: caption3 2016/05/22 v1.7-166 caption3 kernel (AR) +Package caption3 Info: TeX engine: e-TeX on input line 67. +\captionmargin=\dimen293 +\captionmargin@=\dimen294 +\captionwidth=\dimen295 +\caption@tempdima=\dimen296 +\caption@indent=\dimen297 +\caption@parindent=\dimen298 +\caption@hangindent=\dimen299 +) +\c@ContinuedFloat=\count115 +) (/usr/local/texlive/2017/texmf-dist/tex/latex/geometry/geometry.sty +Package: geometry 2010/09/12 v5.6 Page Geometry + (/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/ifpdf.sty +Package: ifpdf 2017/03/15 v3.2 Provides the ifpdf switch +) (/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/ifvtex.sty +Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO) +Package ifvtex Info: VTeX not detected. +) (/usr/local/texlive/2017/texmf-dist/tex/generic/ifxetex/ifxetex.sty +Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional +) +\Gm@cnth=\count116 +\Gm@cntv=\count117 +\c@Gm@tempcnt=\count118 +\Gm@bindingoffset=\dimen300 +\Gm@wd@mp=\dimen301 +\Gm@odd@mp=\dimen302 +\Gm@even@mp=\dimen303 +\Gm@layoutwidth=\dimen304 +\Gm@layoutheight=\dimen305 +\Gm@layouthoffset=\dimen306 +\Gm@layoutvoffset=\dimen307 +\Gm@dimlist=\toks28 +) (/usr/local/texlive/2017/texmf-dist/tex/latex/a0poster/a0size.sty +File: a0size.sty 2004/01/31 v1.22b a0poster class (GK, MW) +LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 229. +LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal' +(Font) OMX/cmex/m/n --> OMX/cmex/m/n on input line 229. +LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' +(Font) OMX/cmex/m/n --> OMX/cmex/m/n on input line 229. +\big@size=\dimen308 +) +\pgf@layerbox@backgroundlayer=\box66 +\pgf@layerboxsaved@backgroundlayer=\box67 +\pgf@layerbox@notelayer=\box68 +\pgf@layerboxsaved@notelayer=\box69 + (./tikzposterColorpalettes.tex) (./tikzposterColorstyles.tex) (./tikzposterBackgroundstyles.tex) (./tikzposterTitlestyles.tex) (./tikzposterBlockstyles.tex) (./tikzposterInnerblockstyles.tex) (./tikzposterNotestyles.tex) (./tikzposterLayoutthemes.tex)) (/usr/local/texlive/2017/texmf-dist/tex/latex/base/inputenc.sty +Package: inputenc 2015/03/17 v1.2c Input encoding file +\inpenc@prehook=\toks29 +\inpenc@posthook=\toks30 + (/usr/local/texlive/2017/texmf-dist/tex/latex/base/utf8.def +File: utf8.def 2017/01/28 v1.1t UTF-8 support for inputenc +Now handling font encoding OML ... +... no UTF-8 mapping file for font encoding OML +Now handling font encoding T1 ... +... processing UTF-8 mapping file for font encoding T1 + +(/usr/local/texlive/2017/texmf-dist/tex/latex/base/t1enc.dfu +File: t1enc.dfu 2017/01/28 v1.1t UTF-8 support for inputenc + defining Unicode char U+00A0 (decimal 160) + defining Unicode char U+00A1 (decimal 161) + defining Unicode char U+00A3 (decimal 163) + defining Unicode char U+00AB (decimal 171) + defining Unicode char U+00AD (decimal 173) + defining Unicode char U+00BB (decimal 187) + defining Unicode char U+00BF (decimal 191) + defining Unicode char U+00C0 (decimal 192) + defining Unicode char U+00C1 (decimal 193) + defining Unicode char U+00C2 (decimal 194) + defining Unicode char U+00C3 (decimal 195) + defining Unicode char U+00C4 (decimal 196) + defining Unicode char U+00C5 (decimal 197) + defining Unicode char U+00C6 (decimal 198) + defining Unicode char U+00C7 (decimal 199) + defining Unicode char U+00C8 (decimal 200) + defining Unicode char U+00C9 (decimal 201) + defining Unicode char U+00CA (decimal 202) + defining Unicode char U+00CB (decimal 203) + defining Unicode char U+00CC (decimal 204) + defining Unicode char U+00CD (decimal 205) + defining Unicode char U+00CE (decimal 206) + defining Unicode char U+00CF (decimal 207) + defining Unicode char U+00D0 (decimal 208) + defining Unicode char U+00D1 (decimal 209) + defining Unicode char U+00D2 (decimal 210) + defining Unicode char U+00D3 (decimal 211) + defining Unicode char U+00D4 (decimal 212) + defining Unicode char U+00D5 (decimal 213) + defining Unicode char U+00D6 (decimal 214) + defining Unicode char U+00D8 (decimal 216) + defining Unicode char U+00D9 (decimal 217) + defining Unicode char U+00DA (decimal 218) + defining Unicode char U+00DB (decimal 219) + defining Unicode char U+00DC (decimal 220) + defining Unicode char U+00DD (decimal 221) + defining Unicode char U+00DE (decimal 222) + defining Unicode char U+00DF (decimal 223) + defining Unicode char U+00E0 (decimal 224) + defining Unicode char U+00E1 (decimal 225) + defining Unicode char U+00E2 (decimal 226) + defining Unicode char U+00E3 (decimal 227) + defining Unicode char U+00E4 (decimal 228) + defining Unicode char U+00E5 (decimal 229) + defining Unicode char U+00E6 (decimal 230) + defining Unicode char U+00E7 (decimal 231) + defining Unicode char U+00E8 (decimal 232) + defining Unicode char U+00E9 (decimal 233) + defining Unicode char U+00EA (decimal 234) + defining Unicode char U+00EB (decimal 235) + defining Unicode char U+00EC (decimal 236) + defining Unicode char U+00ED (decimal 237) + defining Unicode char U+00EE (decimal 238) + defining Unicode char U+00EF (decimal 239) + defining Unicode char U+00F0 (decimal 240) + defining Unicode char U+00F1 (decimal 241) + defining Unicode char U+00F2 (decimal 242) + defining Unicode char U+00F3 (decimal 243) + defining Unicode char U+00F4 (decimal 244) + defining Unicode char U+00F5 (decimal 245) + defining Unicode char U+00F6 (decimal 246) + defining Unicode char U+00F8 (decimal 248) + defining Unicode char U+00F9 (decimal 249) + defining Unicode char U+00FA (decimal 250) + defining Unicode char U+00FB (decimal 251) + defining Unicode char U+00FC (decimal 252) + defining Unicode char U+00FD (decimal 253) + defining Unicode char U+00FE (decimal 254) + defining Unicode char U+00FF (decimal 255) + defining Unicode char U+0100 (decimal 256) + defining Unicode char U+0101 (decimal 257) + defining Unicode char U+0102 (decimal 258) + defining Unicode char U+0103 (decimal 259) + defining Unicode char U+0104 (decimal 260) + defining Unicode char U+0105 (decimal 261) + defining Unicode char U+0106 (decimal 262) + defining Unicode char U+0107 (decimal 263) + defining Unicode char U+0108 (decimal 264) + defining Unicode char U+0109 (decimal 265) + defining Unicode char U+010A (decimal 266) + defining Unicode char U+010B (decimal 267) + defining Unicode char U+010C (decimal 268) + defining Unicode char U+010D (decimal 269) + defining Unicode char U+010E (decimal 270) + defining Unicode char U+010F (decimal 271) + defining Unicode char U+0110 (decimal 272) + defining Unicode char U+0111 (decimal 273) + defining Unicode char U+0112 (decimal 274) + defining Unicode char U+0113 (decimal 275) + defining Unicode char U+0114 (decimal 276) + defining Unicode char U+0115 (decimal 277) + defining Unicode char U+0116 (decimal 278) + defining Unicode char U+0117 (decimal 279) + defining Unicode char U+0118 (decimal 280) + defining Unicode char U+0119 (decimal 281) + defining Unicode char U+011A (decimal 282) + defining Unicode char U+011B (decimal 283) + defining Unicode char U+011C (decimal 284) + defining Unicode char U+011D (decimal 285) + defining Unicode char U+011E (decimal 286) + defining Unicode char U+011F (decimal 287) + defining Unicode char U+0120 (decimal 288) + defining Unicode char U+0121 (decimal 289) + defining Unicode char U+0122 (decimal 290) + defining Unicode char U+0123 (decimal 291) + defining Unicode char U+0124 (decimal 292) + defining Unicode char U+0125 (decimal 293) + defining Unicode char U+0128 (decimal 296) + defining Unicode char U+0129 (decimal 297) + defining Unicode char U+012A (decimal 298) + defining Unicode char U+012B (decimal 299) + defining Unicode char U+012C (decimal 300) + defining Unicode char U+012D (decimal 301) + defining Unicode char U+012E (decimal 302) + defining Unicode char U+012F (decimal 303) + defining Unicode char U+0130 (decimal 304) + defining Unicode char U+0131 (decimal 305) + defining Unicode char U+0132 (decimal 306) + defining Unicode char U+0133 (decimal 307) + defining Unicode char U+0134 (decimal 308) + defining Unicode char U+0135 (decimal 309) + defining Unicode char U+0136 (decimal 310) + defining Unicode char U+0137 (decimal 311) + defining Unicode char U+0139 (decimal 313) + defining Unicode char U+013A (decimal 314) + defining Unicode char U+013B (decimal 315) + defining Unicode char U+013C (decimal 316) + defining Unicode char U+013D (decimal 317) + defining Unicode char U+013E (decimal 318) + defining Unicode char U+0141 (decimal 321) + defining Unicode char U+0142 (decimal 322) + defining Unicode char U+0143 (decimal 323) + defining Unicode char U+0144 (decimal 324) + defining Unicode char U+0145 (decimal 325) + defining Unicode char U+0146 (decimal 326) + defining Unicode char U+0147 (decimal 327) + defining Unicode char U+0148 (decimal 328) + defining Unicode char U+014A (decimal 330) + defining Unicode char U+014B (decimal 331) + defining Unicode char U+014C (decimal 332) + defining Unicode char U+014D (decimal 333) + defining Unicode char U+014E (decimal 334) + defining Unicode char U+014F (decimal 335) + defining Unicode char U+0150 (decimal 336) + defining Unicode char U+0151 (decimal 337) + defining Unicode char U+0152 (decimal 338) + defining Unicode char U+0153 (decimal 339) + defining Unicode char U+0154 (decimal 340) + defining Unicode char U+0155 (decimal 341) + defining Unicode char U+0156 (decimal 342) + defining Unicode char U+0157 (decimal 343) + defining Unicode char U+0158 (decimal 344) + defining Unicode char U+0159 (decimal 345) + defining Unicode char U+015A (decimal 346) + defining Unicode char U+015B (decimal 347) + defining Unicode char U+015C (decimal 348) + defining Unicode char U+015D (decimal 349) + defining Unicode char U+015E (decimal 350) + defining Unicode char U+015F (decimal 351) + defining Unicode char U+0160 (decimal 352) + defining Unicode char U+0161 (decimal 353) + defining Unicode char U+0162 (decimal 354) + defining Unicode char U+0163 (decimal 355) + defining Unicode char U+0164 (decimal 356) + defining Unicode char U+0165 (decimal 357) + defining Unicode char U+0168 (decimal 360) + defining Unicode char U+0169 (decimal 361) + defining Unicode char U+016A (decimal 362) + defining Unicode char U+016B (decimal 363) + defining Unicode char U+016C (decimal 364) + defining Unicode char U+016D (decimal 365) + defining Unicode char U+016E (decimal 366) + defining Unicode char U+016F (decimal 367) + defining Unicode char U+0170 (decimal 368) + defining Unicode char U+0171 (decimal 369) + defining Unicode char U+0172 (decimal 370) + defining Unicode char U+0173 (decimal 371) + defining Unicode char U+0174 (decimal 372) + defining Unicode char U+0175 (decimal 373) + defining Unicode char U+0176 (decimal 374) + defining Unicode char U+0177 (decimal 375) + defining Unicode char U+0178 (decimal 376) + defining Unicode char U+0179 (decimal 377) + defining Unicode char U+017A (decimal 378) + defining Unicode char U+017B (decimal 379) + defining Unicode char U+017C (decimal 380) + defining Unicode char U+017D (decimal 381) + defining Unicode char U+017E (decimal 382) + defining Unicode char U+01CD (decimal 461) + defining Unicode char U+01CE (decimal 462) + defining Unicode char U+01CF (decimal 463) + defining Unicode char U+01D0 (decimal 464) + defining Unicode char U+01D1 (decimal 465) + defining Unicode char U+01D2 (decimal 466) + defining Unicode char U+01D3 (decimal 467) + defining Unicode char U+01D4 (decimal 468) + defining Unicode char U+01E2 (decimal 482) + defining Unicode char U+01E3 (decimal 483) + defining Unicode char U+01E6 (decimal 486) + defining Unicode char U+01E7 (decimal 487) + defining Unicode char U+01E8 (decimal 488) + defining Unicode char U+01E9 (decimal 489) + defining Unicode char U+01EA (decimal 490) + defining Unicode char U+01EB (decimal 491) + defining Unicode char U+01F0 (decimal 496) + defining Unicode char U+01F4 (decimal 500) + defining Unicode char U+01F5 (decimal 501) + defining Unicode char U+0218 (decimal 536) + defining Unicode char U+0219 (decimal 537) + defining Unicode char U+021A (decimal 538) + defining Unicode char U+021B (decimal 539) + defining Unicode char U+0232 (decimal 562) + defining Unicode char U+0233 (decimal 563) + defining Unicode char U+1E02 (decimal 7682) + defining Unicode char U+1E03 (decimal 7683) + defining Unicode char U+200C (decimal 8204) + defining Unicode char U+2010 (decimal 8208) + defining Unicode char U+2011 (decimal 8209) + defining Unicode char U+2012 (decimal 8210) + defining Unicode char U+2013 (decimal 8211) + defining Unicode char U+2014 (decimal 8212) + defining Unicode char U+2015 (decimal 8213) + defining Unicode char U+2018 (decimal 8216) + defining Unicode char U+2019 (decimal 8217) + defining Unicode char U+201A (decimal 8218) + defining Unicode char U+201C (decimal 8220) + defining Unicode char U+201D (decimal 8221) + defining Unicode char U+201E (decimal 8222) + defining Unicode char U+2030 (decimal 8240) + defining Unicode char U+2031 (decimal 8241) + defining Unicode char U+2039 (decimal 8249) + defining Unicode char U+203A (decimal 8250) + defining Unicode char U+2423 (decimal 9251) + defining Unicode char U+1E20 (decimal 7712) + defining Unicode char U+1E21 (decimal 7713) +) +Now handling font encoding OT1 ... +... processing UTF-8 mapping file for font encoding OT1 + (/usr/local/texlive/2017/texmf-dist/tex/latex/base/ot1enc.dfu +File: ot1enc.dfu 2017/01/28 v1.1t UTF-8 support for inputenc + defining Unicode char U+00A0 (decimal 160) + defining Unicode char U+00A1 (decimal 161) + defining Unicode char U+00A3 (decimal 163) + defining Unicode char U+00AD (decimal 173) + defining Unicode char U+00B8 (decimal 184) + defining Unicode char U+00BF (decimal 191) + defining Unicode char U+00C5 (decimal 197) + defining Unicode char U+00C6 (decimal 198) + defining Unicode char U+00D8 (decimal 216) + defining Unicode char U+00DF (decimal 223) + defining Unicode char U+00E6 (decimal 230) + defining Unicode char U+00EC (decimal 236) + defining Unicode char U+00ED (decimal 237) + defining Unicode char U+00EE (decimal 238) + defining Unicode char U+00EF (decimal 239) + defining Unicode char U+00F8 (decimal 248) + defining Unicode char U+0131 (decimal 305) + defining Unicode char U+0141 (decimal 321) + defining Unicode char U+0142 (decimal 322) + defining Unicode char U+0152 (decimal 338) + defining Unicode char U+0153 (decimal 339) + defining Unicode char U+0174 (decimal 372) + defining Unicode char U+0175 (decimal 373) + defining Unicode char U+0176 (decimal 374) + defining Unicode char U+0177 (decimal 375) + defining Unicode char U+0218 (decimal 536) + defining Unicode char U+0219 (decimal 537) + defining Unicode char U+021A (decimal 538) + defining Unicode char U+021B (decimal 539) + defining Unicode char U+2013 (decimal 8211) + defining Unicode char U+2014 (decimal 8212) + defining Unicode char U+2018 (decimal 8216) + defining Unicode char U+2019 (decimal 8217) + defining Unicode char U+201C (decimal 8220) + defining Unicode char U+201D (decimal 8221) +) +Now handling font encoding OMS ... +... processing UTF-8 mapping file for font encoding OMS + (/usr/local/texlive/2017/texmf-dist/tex/latex/base/omsenc.dfu +File: omsenc.dfu 2017/01/28 v1.1t UTF-8 support for inputenc + defining Unicode char U+00A7 (decimal 167) + defining Unicode char U+00B6 (decimal 182) + defining Unicode char U+00B7 (decimal 183) + defining Unicode char U+2020 (decimal 8224) + defining Unicode char U+2021 (decimal 8225) + defining Unicode char U+2022 (decimal 8226) +) +Now handling font encoding OMX ... +... no UTF-8 mapping file for font encoding OMX +Now handling font encoding U ... +... no UTF-8 mapping file for font encoding U + defining Unicode char U+00A9 (decimal 169) + defining Unicode char U+00AA (decimal 170) + defining Unicode char U+00AE (decimal 174) + defining Unicode char U+00BA (decimal 186) + defining Unicode char U+02C6 (decimal 710) + defining Unicode char U+02DC (decimal 732) + defining Unicode char U+200C (decimal 8204) + defining Unicode char U+2026 (decimal 8230) + defining Unicode char U+2122 (decimal 8482) + defining Unicode char U+2423 (decimal 9251) +)) (/usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/hyperref.sty +Package: hyperref 2017/03/14 v6.85a Hypertext links for LaTeX + (/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty +Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO) + (/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty +Package: hobsub-generic 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO) +Package: hobsub 2016/05/16 v1.14 Construct package bundles (HO) +Package hobsub Info: Skipping package `infwarerr' (already loaded). +Package hobsub Info: Skipping package `ltxcmds' (already loaded). +Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO) +Package ifluatex Info: LuaTeX not detected. +Package hobsub Info: Skipping package `ifvtex' (already loaded). +Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO) +Package hobsub Info: Skipping package `ifpdf' (already loaded). +Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) +Package etexcmds Info: Could not find \expanded. +(etexcmds) That can mean that you are not using pdfTeX 1.50 or +(etexcmds) that some package has redefined \expanded. +(etexcmds) In the latter case, load this package earlier. +Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO) +Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO) +Package: pdftexcmds 2017/03/19 v0.25 Utility functions of pdfTeX for LuaTeX (HO) +Package pdftexcmds Info: LuaTeX not detected. +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. +Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO) +Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO) +Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO) +Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO) +) +Package hobsub Info: Skipping package `hobsub' (already loaded). +Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO) +Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO) +Package: xcolor-patch 2016/05/16 xcolor patch +Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO) +Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO) +Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO) +Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO) +) (/usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/auxhook.sty +Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO) +) (/usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/kvoptions.sty +Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO) +) +\@linkdim=\dimen309 +\Hy@linkcounter=\count119 +\Hy@pagecounter=\count120 + (/usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/pd1enc.def +File: pd1enc.def 2017/03/14 v6.85a Hyperref: PDFDocEncoding definition (HO) +Now handling font encoding PD1 ... +... no UTF-8 mapping file for font encoding PD1 +) +\Hy@SavedSpaceFactor=\count121 + (/usr/local/texlive/2017/texmf-dist/tex/latex/latexconfig/hyperref.cfg +File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive +) +Package hyperref Info: Hyper figures OFF on input line 4498. +Package hyperref Info: Link nesting OFF on input line 4503. +Package hyperref Info: Hyper index ON on input line 4506. +Package hyperref Info: Plain pages OFF on input line 4513. +Package hyperref Info: Backreferencing OFF on input line 4518. +Package hyperref Info: Implicit mode ON; LaTeX internals redefined. +Package hyperref Info: Bookmarks ON on input line 4751. +\c@Hy@tempcnt=\count122 + (/usr/local/texlive/2017/texmf-dist/tex/latex/url/url.sty +\Urlmuskip=\muskip10 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +LaTeX Info: Redefining \url on input line 5104. +\XeTeXLinkMargin=\dimen310 +\Fld@menulength=\count123 +\Field@Width=\dimen311 +\Fld@charsize=\dimen312 +Package hyperref Info: Hyper figures OFF on input line 6358. +Package hyperref Info: Link nesting OFF on input line 6363. +Package hyperref Info: Hyper index ON on input line 6366. +Package hyperref Info: backreferencing OFF on input line 6373. +Package hyperref Info: Link coloring OFF on input line 6378. +Package hyperref Info: Link coloring with OCG OFF on input line 6383. +Package hyperref Info: PDF/A mode OFF on input line 6388. +LaTeX Info: Redefining \ref on input line 6428. +LaTeX Info: Redefining \pageref on input line 6432. +\Hy@abspage=\count124 +\c@Item=\count125 +\c@Hfootnote=\count126 +) + +Package hyperref Message: Driver (autodetected): hpdftex. + +(/usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/hpdftex.def +File: hpdftex.def 2017/03/14 v6.85a Hyperref driver for pdfTeX +\Fld@listcount=\count127 +\c@bookmark@seq@number=\count128 + (/usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty +Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO) +Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 282. +) +\Hy@SectionHShift=\skip46 +) (/usr/local/texlive/2017/texmf-dist/tex/latex/blindtext/blindtext.sty +Package: blindtext 2012/01/06 V2.0 blindtext-Package + (/usr/local/texlive/2017/texmf-dist/tex/latex/tools/xspace.sty +Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH) +) +\c@blindtext=\count129 +\c@Blindtext=\count130 +\c@blind@countparstart=\count131 +\blind@countxx=\count132 +\blindtext@numBlindtext=\count133 +\blind@countyy=\count134 +\c@blindlist=\count135 +\c@blindlistlevel=\count136 +\c@blindlist@level=\count137 +\blind@listitem=\count138 +\c@blind@listcount=\count139 +\c@blind@levelcount=\count140 +\blind@mathformula=\count141 +\blind@Mathformula=\count142 +\c@blind@randomcount=\count143 +\c@blind@randommax=\count144 +\c@blind@pangramcount=\count145 +\c@blind@pangrammax=\count146 +) (/usr/local/texlive/2017/texmf-dist/tex/latex/psnfss/avant.sty +Package: avant 2005/04/12 PSNFSS-v9.2a (SPQR) +) (/usr/local/texlive/2017/texmf-dist/tex/latex/base/fontenc.sty +Package: fontenc 2017/04/05 v2.0i Standard LaTeX package + (/usr/local/texlive/2017/texmf-dist/tex/latex/base/t1enc.def +File: t1enc.def 2017/04/05 v2.0i Standard LaTeX file +LaTeX Font Info: Redeclaring font encoding T1 on input line 48. +)) (./mytheme.aux) +\openout1 = `mytheme.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 65. +LaTeX Font Info: ... okay on input line 65. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 65. +LaTeX Font Info: ... okay on input line 65. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 65. +LaTeX Font Info: ... okay on input line 65. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 65. +LaTeX Font Info: ... okay on input line 65. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 65. +LaTeX Font Info: ... okay on input line 65. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 65. +LaTeX Font Info: ... okay on input line 65. +LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 65. +LaTeX Font Info: ... okay on input line 65. +LaTeX Font Info: Try loading font information for T1+pag on input line 65. + (/usr/local/texlive/2017/texmf-dist/tex/latex/psnfss/t1pag.fd +File: t1pag.fd 2001/06/04 font definitions for T1/pag. +) ABD: EveryShipout initializing macros (/usr/local/texlive/2017/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count147 +\scratchdimen=\dimen313 +\scratchbox=\box70 +\nofMPsegments=\count148 +\nofMParguments=\count149 +\everyMPshowfont=\toks31 +\MPscratchCnt=\count150 +\MPscratchDim=\dimen314 +\MPnumerator=\count151 +\makeMPintoPDFobject=\count152 +\everyMPtoPDFconversion=\toks32 +) (/usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty +Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf + (/usr/local/texlive/2017/texmf-dist/tex/latex/oberdiek/grfext.sty +Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO) +) +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 438. +Package grfext Info: Graphics extension search list: +(grfext) [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPEG,.JBIG2,.JB2,.eps] +(grfext) \AppendGraphicsExtensions on input line 456. + (/usr/local/texlive/2017/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live +)) +Package caption Info: Begin \AtBeginDocument code. +Package caption Info: hyperref package is loaded. +Package caption Info: End \AtBeginDocument code. + +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: a0paper +* layout: +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(0.0pt, 2392.87677pt, 0.0pt) +* v-part:(T,H,B)=(0.0pt, 3383.03267pt, 0.0pt) +* \paperwidth=2392.87677pt +* \paperheight=3383.03267pt +* \textwidth=2392.87677pt +* \textheight=3383.03267pt +* \oddsidemargin=-72.26999pt +* \evensidemargin=-72.26999pt +* \topmargin=-109.26999pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=10.0pt +* \footskip=30.0pt +* \marginparwidth=65.0pt +* \marginparsep=11.0pt +* \columnsep=10.0pt +* \skip\footins=9.0pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +\AtBeginShipoutBox=\box71 +Package hyperref Info: Link coloring OFF on input line 65. +(/usr/local/texlive/2017/texmf-dist/tex/latex/hyperref/nameref.sty +Package: nameref 2016/05/21 v2.44 Cross-referencing by name of section + (/usr/local/texlive/2017/texmf-dist/tex/generic/oberdiek/gettitlestring.sty +Package: gettitlestring 2016/05/16 v1.5 Cleanup title references (HO) +) +\c@section@level=\count153 +) +LaTeX Info: Redefining \ref on input line 65. +LaTeX Info: Redefining \pageref on input line 65. +LaTeX Info: Redefining \nameref on input line 65. + (./mytheme.out) (./mytheme.out) +\@outlinefile=\write5 +\openout5 = `mytheme.out'. + + +File: sepLogo.png Graphic file (type png) + +Package pdftex.def Info: sepLogo.png used on input line 65. +(pdftex.def) Requested size: 1084.04999pt x 371.84462pt. + +File: tecnmW.png Graphic file (type png) + +Package pdftex.def Info: tecnmW.png used on input line 65. +(pdftex.def) Requested size: 722.7pt x 355.16838pt. + +File: logoITM.png Graphic file (type png) + +Package pdftex.def Info: logoITM.png used on input line 65. +(pdftex.def) Requested size: 361.34999pt x 359.29248pt. +LaTeX Font Info: Font shape `T1/pag/bx/n' in size <17.28> not available +(Font) Font shape `T1/pag/b/n' tried instead on input line 65. +LaTeX Font Info: Font shape `T1/pag/b/n' in size <17.28> not available +(Font) Font shape `T1/pag/db/n' tried instead on input line 65. +File: sepLogo.png Graphic file (type png) + +Package pdftex.def Info: sepLogo.png used on input line 69. +(pdftex.def) Requested size: 1084.04999pt x 371.84462pt. +File: tecnmW.png Graphic file (type png) + +Package pdftex.def Info: tecnmW.png used on input line 69. +(pdftex.def) Requested size: 722.7pt x 355.16838pt. +File: logoITM.png Graphic file (type png) + +Package pdftex.def Info: logoITM.png used on input line 69. +(pdftex.def) Requested size: 361.34999pt x 359.29248pt. +LaTeX Font Info: Font shape `T1/pag/bx/n' in size <24.88> not available +(Font) Font shape `T1/pag/b/n' tried instead on input line 69. +LaTeX Font Info: Font shape `T1/pag/b/n' in size <24.88> not available +(Font) Font shape `T1/pag/db/n' tried instead on input line 69. +LaTeX Font Info: Font shape `T1/pag/bx/n' in size <61.92> not available +(Font) Font shape `T1/pag/b/n' tried instead on input line 69. +LaTeX Font Info: Font shape `T1/pag/b/n' in size <61.92> not available +(Font) Font shape `T1/pag/db/n' tried instead on input line 69. +LaTeX Font Info: Font shape `T1/pag/bx/sc' in size <61.92> not available +(Font) Font shape `T1/pag/b/sc' tried instead on input line 69. +LaTeX Font Info: Font shape `T1/pag/b/sc' in size <61.92> not available +(Font) Font shape `T1/pag/db/sc' tried instead on input line 69. +File: sepLogo.png Graphic file (type png) + +Package pdftex.def Info: sepLogo.png used on input line 69. +(pdftex.def) Requested size: 1084.04999pt x 371.84462pt. +File: tecnmW.png Graphic file (type png) + +Package pdftex.def Info: tecnmW.png used on input line 69. +(pdftex.def) Requested size: 722.7pt x 355.16838pt. +File: logoITM.png Graphic file (type png) + +Package pdftex.def Info: logoITM.png used on input line 69. +(pdftex.def) Requested size: 361.34999pt x 359.29248pt. +LaTeX Font Info: Font shape `T1/pag/bx/n' in size <43> not available +(Font) Font shape `T1/pag/b/n' tried instead on input line 84. +LaTeX Font Info: Font shape `T1/pag/b/n' in size <43> not available +(Font) Font shape `T1/pag/db/n' tried instead on input line 84. +LaTeX Font Info: Font shape `T1/pag/bx/n' in size <29.86> not available +(Font) Font shape `T1/pag/b/n' tried instead on input line 84. +LaTeX Font Info: Font shape `T1/pag/b/n' in size <29.86> not available +(Font) Font shape `T1/pag/db/n' tried instead on input line 84. + +Overfull \hbox (3.89998pt too wide) in paragraph at lines 84--84 +[][] + [] + + +File: pcb.png Graphic file (type png) + +Package pdftex.def Info: pcb.png used on input line 84. +(pdftex.def) Requested size: 180.67499pt x 180.67455pt. + +File: osci.png Graphic file (type png) + +Package pdftex.def Info: osci.png used on input line 84. +(pdftex.def) Requested size: 180.67499pt x 180.67455pt. + +Underfull \hbox (badness 2529) in paragraph at lines 94--94 +\T1/pag/m/n/29.86 re-conocimiento del Tec-nológico Na-cional + [] + + +Underfull \hbox (badness 1097) in paragraph at lines 94--94 +\T1/pag/m/n/29.86 de Méx-ico []\T1/pag/db/n/29.86 TecNM[]\T1/pag/m/n/29.86 , la Sec-re-taría de Rela- + [] + + +Overfull \hbox (3.89998pt too wide) in paragraph at lines 94--94 +[][] + [] + + +File: movility.png Graphic file (type png) + +Package pdftex.def Info: movility.png used on input line 94. +(pdftex.def) Requested size: 180.67499pt x 180.67455pt. +LaTeX Font Info: Try loading font information for OMS+pag on input line 123. + (/usr/local/texlive/2017/texmf-dist/tex/latex/psnfss/omspag.fd +File: omspag.fd +) +LaTeX Font Info: Font shape `OMS/pag/m/n' in size <29.86> not available +(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 123. + +Overfull \hbox (3.89998pt too wide) in paragraph at lines 123--123 +[][] + [] + + +File: renew.png Graphic file (type png) + +Package pdftex.def Info: renew.png used on input line 123. +(pdftex.def) Requested size: 180.67499pt x 180.68556pt. + +File: atom.png Graphic file (type png) + +Package pdftex.def Info: atom.png used on input line 123. +(pdftex.def) Requested size: 180.67499pt x 180.67455pt. + +File: signal.png Graphic file (type png) + +Package pdftex.def Info: signal.png used on input line 123. +(pdftex.def) Requested size: 180.67499pt x 132.68286pt. + +Underfull \hbox (badness 1558) in paragraph at lines 140--140 +\T1/pag/m/n/29.86 niería Elec-trónica, In-ge-niería Eléc-trica o + [] + + +Underfull \hbox (badness 1824) in paragraph at lines 140--140 +[]\T1/pag/m/n/29.86 Aprobar la en-tre-vista per-sonal con do- + [] + + +Overfull \hbox (3.89998pt too wide) in paragraph at lines 140--140 +[][] + [] + + +File: research.png Graphic file (type png) + +Package pdftex.def Info: research.png used on input line 140. +(pdftex.def) Requested size: 180.67499pt x 180.67455pt. + +Overfull \hbox (3.89998pt too wide) in paragraph at lines 159--159 +[][] + [] + +LaTeX Font Info: Font shape `T1/pag/bx/sc' in size <43> not available +(Font) Font shape `T1/pag/b/sc' tried instead on input line 194. +LaTeX Font Info: Font shape `T1/pag/b/sc' in size <43> not available +(Font) Font shape `T1/pag/db/sc' tried instead on input line 194. +LaTeX Font Info: Font shape `T1/pag/bx/sc' in size <24.88> not available +(Font) Font shape `T1/pag/b/sc' tried instead on input line 194. +LaTeX Font Info: Font shape `T1/pag/b/sc' in size <24.88> not available +(Font) Font shape `T1/pag/db/sc' tried instead on input line 194. +LaTeX Font Info: Font shape `T1/pag/bx/n' in size <35.83> not available +(Font) Font shape `T1/pag/b/n' tried instead on input line 194. +LaTeX Font Info: Font shape `T1/pag/b/n' in size <35.83> not available +(Font) Font shape `T1/pag/db/n' tried instead on input line 194. +LaTeX Font Info: Font shape `T1/pag/bx/sc' in size <35.83> not available +(Font) Font shape `T1/pag/b/sc' tried instead on input line 194. +LaTeX Font Info: Font shape `T1/pag/b/sc' in size <35.83> not available +(Font) Font shape `T1/pag/db/sc' tried instead on input line 194. +LaTeX Font Info: Try loading font information for T1+aett on input line 194. +(/usr/local/texlive/2017/texmf-dist/tex/latex/ae/t1aett.fd +File: t1aett.fd 1997/11/16 Font definitions for T1/aett. +) + +LaTeX Font Warning: Font shape `T1/aett/bx/n' undefined +(Font) using `T1/aett/m/n' instead on input line 194. + + +Overfull \hbox (3.89998pt too wide) in paragraph at lines 194--194 +[][] + [] + + +Overfull \hbox (3.89998pt too wide) in paragraph at lines 218--218 +[][] + [] + + +Overfull \hbox (3.89998pt too wide) in paragraph at lines 242--242 +[][] + [] + + +Underfull \hbox (badness 10000) in paragraph at lines 259--259 +[][]$\T1/aett/m/n/29.86 http : / / sagitario . itmorelia . edu . mx / + [] + + +Overfull \hbox (3.89998pt too wide) in paragraph at lines 259--259 +[][] + [] + + +File: mcie.png Graphic file (type png) + +Package pdftex.def Info: mcie.png used on input line 259. +(pdftex.def) Requested size: 650.43pt x 479.68234pt. + [1 + +{/usr/local/texlive/2017/texmf-var/fonts/map/pdftex/updmap/pdftex.map} <./sepLogo.png> <./tecnmW.png> <./logoITM.png> <./pcb.png> <./osci.png> <./movility.png> <./renew.png> <./atom.png> <./signal.png> <./research.png> <./mcie.png>] +Package atveryend Info: Empty hook `BeforeClearDocument' on input line 263. +Package atveryend Info: Empty hook `AfterLastShipout' on input line 263. + (./mytheme.aux) +Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 263. +Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 263. +Package rerunfilecheck Info: File `mytheme.out' has not changed. +(rerunfilecheck) Checksum: D41D8CD98F00B204E9800998ECF8427E;0. + + +LaTeX Font Warning: Some font shapes were not available, defaults substituted. + + ) +Here is how much of TeX's memory you used: + 22068 strings out of 492995 + 451865 string characters out of 6132704 + 582562 words of memory out of 5000000 + 25154 multiletter control sequences out of 15000+600000 + 89641 words of font info for 100 fonts, out of 8000000 for 9000 + 1141 hyphenation exceptions out of 8191 + 62i,13n,94p,821b,1250s stack positions out of 5000i,500n,10000p,200000b,80000s +{/usr/local/texlive/2017/texmf-dist/fonts/enc/dvips/base/8r.enc} +Output written on mytheme.pdf (1 page, 1478419 bytes). +PDF statistics: + 102 PDF objects out of 1000 (max. 8388607) + 50 compressed objects within 1 object stream + 2 named destinations out of 1000 (max. 500000) + 182 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/mytheme.pdf b/mytheme.pdf new file mode 100644 index 0000000..a6114ab Binary files /dev/null and b/mytheme.pdf differ diff --git a/mytheme.synctex.gz b/mytheme.synctex.gz new file mode 100644 index 0000000..cd70be1 Binary files /dev/null and b/mytheme.synctex.gz differ diff --git a/mytheme.tex b/mytheme.tex new file mode 100644 index 0000000..244c535 --- /dev/null +++ b/mytheme.tex @@ -0,0 +1,263 @@ +\documentclass[a0paper]{tikzposter} +\usepackage[utf8]{inputenc} +\usepackage{hyperref} +\usepackage{blindtext} + +\tikzposterlatexaffectionproofon %shows small comment on how the poster was made + + + +\definecolor{mygray}{HTML}{CCCCCC} +\definecolor{itmGuinda}{RGB}{121,31,37} +\definecolor{itmMoztaza}{RGB}{197, 144, 48} +\definecolor{itmMoztaza2}{RGB}{205, 210, 250} +\definecolor{itmGuinda2}{RGB}{165, 96, 102} +\definecolor{itmGuinda3}{RGB}{214, 180, 183} +% Commands +\newcommand{\bs}{\textbackslash} % backslash +\newcommand{\itmColor}[1]{{\bf \color{itmGuinda}#1}} % highlights command + +\definecolorstyle{myColorStyle} { + \definecolor{colorOne}{named}{itmGuinda} + \definecolor{colorTwo}{named}{itmMoztaza} + \definecolor{colorThree}{named}{itmGuinda2} +}{ + % Background Colors + \colorlet{backgroundcolor}{colorTwo!60} + \colorlet{framecolor}{colorTwo!80} + % Title Colors + \colorlet{titlefgcolor}{white} + \colorlet{titlebgcolor}{colorOne} + % Block Colors + \colorlet{blocktitlebgcolor}{colorTwo!50} + \colorlet{blocktitlefgcolor}{black} + \colorlet{blockbodybgcolor}{colorTwo!50} + \colorlet{blockbodyfgcolor}{black} + % Innerblock Colors + \colorlet{innerblocktitlebgcolor}{white} + \colorlet{innerblocktitlefgcolor}{black} + \colorlet{innerblockbodybgcolor}{white} + \colorlet{innerblockbodyfgcolor}{black} + % Note colors + \colorlet{notefgcolor}{black} + \colorlet{notebgcolor}{white} + \colorlet{notefrcolor}{white} +} + +\usecolorstyle{myColorStyle} +\usebackgroundstyle{Default} +\usetitlestyle{Wave} +\useblockstyle{Minimal} + + +\usepackage{avant} +\renewcommand*\familydefault{\sfdefault} +\usepackage[T1]{fontenc} + + +\title{\textbf{Maestría en Ciencias en Ingeniería Electrónica}} +\author{Instituto Tecnológico de Morelia} +\titlegraphic{ + \includegraphics[width=15in]{sepLogo.png}\quad \includegraphics[width=10in]{tecnmW.png}\quad\includegraphics[width=5in]{logoITM.png} + } +\institute{División de Estudios de Posgrado e Investigación} + +\begin{document} + +% Title block with title, author, logo, etc. +\maketitle + +\begin{columns} + \column{0.33} + + \block[titleoffsety=2cm,bodyoffsety=2cm]{Objetivo de la Maestría}{ + \coloredbox{ + Formar profesionistas con especialización en el área de \itmColor{Procesamiento de Señales} y \itmColor{Electrónica de Potencia}, que logren incorporarse a \itmColor{instituciones de investigación y desarrollo tecnológico, industrias de base tecnológica y a la docencia}. + + } + %\vspace{0.1in} + \begin{tikzfigure} + %\includegraphics[width=2in]{uC} + \includegraphics[width=2.5in]{pcb} + \includegraphics[width=2.5in]{osci} + \end{tikzfigure} + } + %=-=-=-= + \block[titleoffsety=2cm,bodyoffsety=2cm]{Becas}{ + \coloredbox[]{ + Este programa de maestría cuenta con el reconocimiento del Tecnológico Nacional de México \itmColor{TecNM}, la Secretaría de Relaciones Exteriores \itmColor{SRE}, el programa educativo Roberto Rocca, German Academic Exchange Service \itmColor{DAAD} y el Consejo Nacional de Ciencia y Tecnología \itmColor{CONACyT}, a través del Programa Nacional de Posgrados de Calidad \itmColor{PNPC}, lo que permite postular por becas a estudiantes nacionales y extranjeros, las cuales cubren manutención por un periodo de hasta dos años a los alumnos de tiempo completo que cumplan con los requisitos que exige cada organismo. + } + % + \begin{tikzfigure} + \includegraphics[width=2.5in]{movility.png} + \end{tikzfigure} + } + %=-=-=-= + \block[titleoffsety=2cm,bodyoffsety=2cm, %titlecenter + ] + {Líneas Generadoras del Conocimiento}{ + \coloredbox[bgcolor=itmGuinda3]{ + \begin{itemize} + \item {\LARGE \itmColor{Electrónica de Potencia}} + \begin{itemize} + \item {\bfseries Sistemas de Iluminación} + \item {\bfseries Calidad de la Energía} + \item {\bfseries Fuentes Alternas de Energía} + \end{itemize} + \item {\LARGE \itmColor{Procesamiento de Señales}} + \begin{itemize} + \item {\bfseries Aplicaciones de Telemetría y TICs} + \item {\bfseries Aplicaciones en Instrumentación y Control} + \item {\bfseries Sistemas Embebidos} + \item {\bfseries Redes Inteligentes} + \end{itemize} + \end{itemize} + + } + % + \begin{tikzfigure} + \includegraphics[width=2.5in]{renew} + \includegraphics[width=2.5in]{atom} + \includegraphics[width=2.5in]{signal} + \end{tikzfigure} + } +%***************************** + \column{0.33} +%=-=-=-= + \block[titleoffsety=1cm, bodyoffsety=2cm]{Requisitos de Ingreso}{ + \coloredbox{ Para ingresar a la \itmColor{Maestría en Ciencias en Ingeniería Electrónica} se debe: + \begin{itemize} + \item Estar titulado de la licenciatura en Ingeniería Electrónica, Ingeniería Eléctrica o área afín con promedio mínimo de 80/100 o equivalente. + \item Aprobar un exámen de conocimientos en matemáticas y electrónica, o aprobar un curso propedéutico. + \item Obtener 450 puntos en el examen de inglés del TOEFL. + \item Aprobar la entrevista personal con docentes de la maestría. + \end{itemize} + } + \begin{tikzfigure} + \includegraphics[width=2.5in]{research} + %\includegraphics[width=2.5in]{signal} + \end{tikzfigure} + } + %=-=-=-= + \block[titleoffsety=2cm, bodyoffsety=2cm]{}{ + \coloredbox[bgcolor=itmGuinda3]{ + \begin{itemize} + \item {\LARGE\itmColor{Documentación Requerida}} + \begin{itemize} + \item \bfseries Solicitud de admisión en formato ofical. + \item \bfseries Título de licenciatura o acta de examen de grado. + \item \bfseries Copia del certificado de licenciatura. + \item \bfseries Copia del acta de nacimiento. + \item \bfseries Currículum Vitae. + \item \bfseries Copia de identificación IFE. + \item \bfseries CURP. + \item \bfseries Carta de exposición de motivos en formato libre. + \item \bfseries 2 Cartas de recomendación. + \end{itemize} + \end{itemize} + } + } + %=-=-=-= + %=-=-=-= + \block[titleoffsety=2cm, bodyoffsety=2cm,titlecenter]{\scshape Información}{ + \coloredbox[bgcolor=itmMoztaza2]{ + \begin{center} + {\Large\bfseries\centering + \scshape Instituto Tecológico de Morelia} + + {\centering + Av. Tecnológico 1500, Col. Lomas de Santiaguito, + CP 58120, Morelia, Michoacán, México.} + + {\centering + Tel: (443)312-1570 + } + + %{\centering + %\scshape División de Estudios de Posgrado e Investigación, Ext. 316 + %} + + {\centering + \scshape Posgrado en Ingeniería Electrónica,\quad\quad Ext. 330 + } + + {\centering \itmColor{ + \href{mailto:pelectron@itmorelia.edu.mx}{pelectron@itmorelia.edu.mx}} + } + + {\centering \Large \itmColor{ + \url{www.itmorelia.edu.mx}} + } + + \end{center} + } + } + %=-=-=-= + %***************************** + \column{0.33} + %=-=-=-= + \block[titleoffsety=2cm, bodyoffsety=2cm]{Curso Propedéutico}{ + \coloredbox{ + \begin{itemize} + \item {\itmColor{Requisitos para el Curso}} + \begin{itemize} + \item Título de licenciatura o acta de examen de grado. + \item Solicitud de Admisión. + \item Pagar costo del proceso de admisión. + \end{itemize} + \item {\itmColor{Materias del Curso}} + \begin{itemize} + \item Matemáticas + \item Teoría de Circuitos + \item Electrónica + \item Programación Avanzada + \end{itemize} + \end{itemize} + {\bfseries Nota: Las materias se asignan de acuerdo al perfil de ingreso.} + } + } + %=-=-=-= + %=-=-=-= + \block[titleoffsety=2cm, bodyoffsety=2cm]{Calendario}{ + \coloredbox{ + \begin{itemize} + \item \itmColor{Mayo-Agosto} + \begin{itemize} + \item \textbf{Mayo:} Inscripción a curso propedéutico y examen$^{*}$. + \item \textbf{Mayo-Junio:} Curso propedéutico. + \item \textbf{Junio:} Examen de ingreso y entrevista. + \item \textbf{Julio:} Publicación de resultados. + \item \textbf{Agosto:} Inicio de semestre. + \end{itemize} + \item \itmColor{Noviembre-Enero} + \begin{itemize} + \item \textbf{Noviembre:} Inscripción a curso propedéutico y examen. + \item \textbf{Noviembre-Diciembre:} Curso propedéutico. + \item \textbf{Diciembre:} Examen de ingreso y entrevista. + \item \textbf{Diciembre:} Publicación de resultados. + \item \textbf{Enero:} Inicio de semestre. + \end{itemize} + \end{itemize} + } + } + %=-=-=-= + %=-=-=-= + \block[titleoffsety=2cm, bodyoffsety=2cm]{Calendario}{ + \coloredbox{ + %$*:$ Recepción de solicitudes todo el año. + + $*:$ Costo del examen incluido en el pago del proceso de admisión. + + $*:$ Más información en + + \url{http://sagitario.itmorelia.edu.mx/pelectron/Informacion.php} + + } + \begin{tikzfigure} + \includegraphics[width=9in]{mcie} + \end{tikzfigure} + } + %=-=-=-= +\end{columns} + +\end{document} diff --git a/osci.png b/osci.png new file mode 100644 index 0000000..8615ccb Binary files /dev/null and b/osci.png differ diff --git a/pcb.png b/pcb.png new file mode 100644 index 0000000..4d9d088 Binary files /dev/null and b/pcb.png differ diff --git a/renew.png b/renew.png new file mode 100644 index 0000000..aefa2a2 Binary files /dev/null and b/renew.png differ diff --git a/renew2.png b/renew2.png new file mode 100644 index 0000000..a224e9d Binary files /dev/null and b/renew2.png differ diff --git a/research.png b/research.png new file mode 100644 index 0000000..e49d865 Binary files /dev/null and b/research.png differ diff --git a/science.png b/science.png new file mode 100644 index 0000000..8d6d467 Binary files /dev/null and b/science.png differ diff --git a/sepLogo.png b/sepLogo.png new file mode 100644 index 0000000..ac1a92f Binary files /dev/null and b/sepLogo.png differ diff --git a/signal.png b/signal.png new file mode 100644 index 0000000..fdf32d6 Binary files /dev/null and b/signal.png differ diff --git a/styleguide.pdf b/styleguide.pdf new file mode 100644 index 0000000..64640d4 Binary files /dev/null and b/styleguide.pdf differ diff --git a/styleguide.tex b/styleguide.tex new file mode 100644 index 0000000..7836c79 --- /dev/null +++ b/styleguide.tex @@ -0,0 +1,592 @@ +\documentclass[9pt]{beamer} + +\usepackage{tikz} + + +\usetheme{Hannover} +\usecolortheme{dove} +\setbeamersize{text margin left=0.2cm,text margin right=0.2cm} +\setbeamertemplate{navigation symbols}{} +\setbeamertemplate{frametitle}[default][left] +\setbeamercolor{frametitle}{fg=red!80!black, bg=gray!20} + +% Commands +\newcommand{\bs}{\textbackslash} % backslash +\newcommand{\cmd}[1]{{\bf \color{red}#1}} % highlights command + + +\title{Theme and Style Guide to TikZposter} + +\author[] {Elena Botoeva, Richard Barnard, Pascal Richter and Dirk Surmann} + + +\begin{document} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\begin{frame} + \titlepage +\end{frame} + +\section{Default} + +\begin{frame} + \frametitle{Your first TikZposter} + + \begin{columns} + \column{.45\textwidth} + \includegraphics[width=5cm]{all_themes.pdf} + + %% + \column{.55\textwidth} + Making posters in Latex is easy! To see this document, compile the following + code: + + \medskip + \hspace{0.2cm} + \begin{minipage}{.55\textwidth}\small + \bs documentclass\{tikzposter\}\\ + \\ + \bs title\{Title\}\\ + \bs author\{Author\}\\ + \bs institute\{Institute\}\\ + \\ + \bs begin\{document\}\\ + \\ + \bs maketitle\\ + \\ + \bs block\{Block\}\{Content\}\\ + \bs end\{document\} + \end{minipage} + + \end{columns} +\end{frame} + +\section{Customizing} + +\begin{frame} + \frametitle{Customization of TikZposter} + + TikZposter is highly customizable! There are a number of options + that can be specified on different levels and define the layout and + the appearance of your poster. + + \medskip% + Here we will only discuss customization from the stylistic point of + view. The goal of this document is to introduce you to the available + themes and styles that are listed below. + + \begin{description}\small + \item[Themes:] Default, Rays, Basic, Simple, Envelope, Wave, + Board, Autumn, Desert. + + \item[Color palettes:] Default, BlueGrayOrange, GreenGrayViolet, + PurpleGrayBlue, BrownBlueOrange. + + \item[Color styles:] Default, Australia, Britain, Sweden, Spain, + Russia, Denmark, Germany. + + \item[Backgrounds:] Default, VerticalGradation, Rays, + BottomVerticalGradation, Empty. + + \item[Titles:] Default, Basic, Empty, Filled, Envelope, Wave, VerticalShading. + + \item[Blocks:] Default, Basic, Minimal, Envelope, Corner, + Slide, TornOut. + + \item[Inner blocks:] Default and Table, along with copies of + the styles for blocks. + + \item[Notes:] Default, VerticalShading, Corner, Sticky. + \end{description} +\end{frame} + +\subsection{Theme} + +\begin{frame} + \frametitle{Customization of TikZposter: Theme} + + \emph{Theme} is a complete collection of all possible options for you poster. + + \medskip + \begin{columns}[c] + \column{.45\textwidth} + \includegraphics[width=5cm, page=3]{all_themes.pdf} + + %% + \column{.55\textwidth} + By \bs usetheme command, you can change the theme of the poster. + + \medskip + \hspace{0.2cm} + \begin{minipage}{.6\textwidth}\small + \bs documentclass\{tikzposter\} + + \bs usetheme\{Basic\}\\ + \\ + \bs title\{Title\}\\ + \bs author\{Author\}\\ + \bs institute\{Institute\}\\ + \\ + \bs begin\{document\}\\ + \\ + \bs maketitle\\ + \\ + \bs block\{Block\}\{Content\}\\ + \bs end\{document\} + \end{minipage} + + \end{columns} +\end{frame} + +\begin{frame} + \frametitle{All Themes} + + \small\vspace{-0.05cm} + \begin{tabular}[t]{@{}p{3.5cm}@{~~~}p{3.5cm}@{~~~}p{3.5cm}} + Default & Rays & Basic\\[-0.03cm] + \includegraphics[page=1,width=3.5cm]{all_themes.pdf} & + \includegraphics[page=2, width=3.5cm]{all_themes.pdf} & + \includegraphics[page=3, width=3.5cm]{all_themes.pdf} \\ [0.03cm] + Simple & Envelope & Wave\\[-0.03cm] + \includegraphics[page=4,width=3.5cm]{all_themes.pdf} & + \includegraphics[page=5, width=3.5cm]{all_themes.pdf} & + \includegraphics[page=6, width=3.5cm]{all_themes.pdf} \\ [0.03cm] + Board & Autumn & Desert\\[-0.03cm] + \includegraphics[page=7,width=3.5cm]{all_themes.pdf} & + \includegraphics[page=8, width=3.5cm]{all_themes.pdf} & + \includegraphics[page=9, width=3.5cm]{all_themes.pdf} \\ + \end{tabular} +\end{frame} + +\foreach \theme/\i in {% + Default/1, Rays/2, Basic/3, Simple/4, Envelope/5, Wave/6, Board/7, Autumn/8, + Desert/9}{ +\begin{frame} + \frametitle{\theme ~Theme} + \includegraphics[page=\i, width=11.2cm]{all_themes.pdf} +\end{frame} +} + +\subsection{Color} + +\begin{frame} + \frametitle{Customization of TikZposter: Color styles and palettes} + + \emph{Color palettes} define the main colors used by the elements of + poster, while \emph{Color styles} specify the exact colors used in + depicting the elements of poster, e.g., the color of the text in + block titles, the frame color of the title, etc. + + \medskip + \begin{columns}[c] + \column{.45\textwidth} + \includegraphics[width=5cm, page=2]{all_colors.pdf} + + %% + \column{.55\textwidth} % + By \bs usecolorstyle command, you can change the coloring scheme + or the main colors, so called color palette, of the poster. + + \medskip + \hspace{0.2cm} + \begin{minipage}{.6\textwidth}\small + \bs documentclass\{tikzposter\} + + \bs usecolorstyle[colorPalette=GreenGrayViolet]\\ + \mbox{\qquad\qquad}\{Australia\}\\ + \\ + \bs title\{Title\}\\ + \bs author\{Author\}\\ + \bs institute\{Institute\}\\ + \\ + \bs begin\{document\}\\ + \\ + \bs maketitle\\ + \\ + \bs block\{Block\}\{Content\}\\ + \bs end\{document\} + \end{minipage} + + \end{columns} +\end{frame} + +\begin{frame} + \frametitle{All Color Styles} + + \small\vspace{-0.05cm} + \begin{tabular}[t]{@{}p{3.5cm}@{~~~}p{3.5cm}@{~~~}p{3.5cm}} + Default & Australia & Britain\\[-0.03cm] + \includegraphics[page=1, width=3.5cm]{all_colors.pdf} & + \includegraphics[page=2, width=3.5cm]{all_colors.pdf} & + \includegraphics[page=3, width=3.5cm]{all_colors.pdf} \\ [0.03cm] + Sweden & Spain & Russia\\[-0.03cm] + \includegraphics[page=4, width=3.5cm]{all_colors.pdf} & + \includegraphics[page=5, width=3.5cm]{all_colors.pdf} & + \includegraphics[page=6, width=3.5cm]{all_colors.pdf} \\ [0.03cm] + Denmark & Germany & \\[-0.03cm] + \includegraphics[page=7, width=3.5cm]{all_colors.pdf} & + \includegraphics[page=8, width=3.5cm]{all_colors.pdf} + \end{tabular} +\end{frame} + +\foreach \col/\i in {% + Default/1, Australia/2, Britain/3, Sweden/4, Spain/5, Russia/6, Denmark/7, Germany/8}{ +\begin{frame} + \frametitle{\col ~Color Style} + \includegraphics[page=\i, width=11.2cm]{all_colors.pdf} +\end{frame} +} + +\begin{frame} + \frametitle{All Color Palettes} + + \small + \begin{tabular}[t]{@{}p{3.5cm}@{~~~}p{3.5cm}@{~~~}p{3.5cm}} + Default & BlueGrayOrange & GreenGrayViolet\\[-0.03cm] + \includegraphics[page=1, width=3.5cm]{all_palettes.pdf} & + \includegraphics[page=2, width=3.5cm]{all_palettes.pdf} & + \includegraphics[page=3, width=3.5cm]{all_palettes.pdf} \\ [0.05cm] + PurpleGrayBlue & BrownBlueOrange & \\[-0.03cm] + \includegraphics[page=4, width=3.5cm]{all_palettes.pdf} & + \includegraphics[page=5, width=3.5cm]{all_palettes.pdf} & + \end{tabular} +\end{frame} + +\foreach \col/\i in {% + Default/1, BlueGrayOrange/2, GreenGrayViolet/3, PurpleGrayBlue/4, BrownBlueOrange/5}{ +\begin{frame} + \frametitle{\col ~Color Palette} + \includegraphics[page=\i, width=11.2cm]{all_palettes.pdf} +\end{frame} +} + +\subsection{Background} + +\begin{frame} + \frametitle{Customization of TikZposter: Background} + + \begin{columns}[c] + \column{.45\textwidth} + \includegraphics[width=5cm,page=3]{all_backgrounds.pdf} + + %% + \column{.55\textwidth} + By \bs usebackgroundstyle command, you can change the background of the poster. + + \medskip + \hspace{0.2cm} + \begin{minipage}{.6\textwidth}\small + \bs documentclass\{tikzposter\} + + \bs usebackgroundstyle\{Rays\}\\ + \\ + \bs title\{Title\}\\ + \bs author\{Author\}\\ + \bs institute\{Institute\}\\ + \\ + \bs begin\{document\}\\ + \\ + \bs maketitle\\ + \\ + \bs block\{Block\}\{Content\}\\ + \bs end\{document\} + \end{minipage} + + \end{columns} +\end{frame} + +\begin{frame} + \frametitle{All Background Styles} + + \small + \begin{tabular}[t]{@{}p{3.5cm}@{~~~}p{3.5cm}@{~~~}p{3.5cm}} + Default & VerticalGradation & Rays\\[-0.03cm] + \includegraphics[page=1, width=3.5cm]{all_backgrounds.pdf} & + \includegraphics[page=2, width=3.5cm]{all_backgrounds.pdf} & + \includegraphics[page=3, width=3.5cm]{all_backgrounds.pdf} \\ [0.05cm] + BottomVerticalGradation & Empty & \\[-0.03cm] + \includegraphics[page=4, width=3.5cm]{all_backgrounds.pdf} & + \includegraphics[page=5, width=3.5cm]{all_backgrounds.pdf} & + \end{tabular} +\end{frame} + +\foreach \back/\i in {% + Default/1, VerticalGradation/2, Rays/3, BottomVerticalGradation/4, Empty/5}{ +\begin{frame} + \frametitle{\back ~Background} + \includegraphics[page=\i, width=11.2cm]{all_backgrounds.pdf} +\end{frame} +} + +\subsection{Title} + +\begin{frame} + \frametitle{Customization of TikZposter: Title node} + + \begin{columns}[c] + \column{.45\textwidth} + \includegraphics[width=5cm, page=6]{all_titles.pdf} + + %% + \column{.55\textwidth} + By \bs usetitlestyle command, you can change the way the title is depicted. + + \medskip + \hspace{0.2cm} + \begin{minipage}{.6\textwidth}\small + \bs documentclass\{tikzposter\} + + \bs usetitlestyle\{Wave\}\\ + \\ + \bs title\{Title\}\\ + \bs author\{Author\}\\ + \bs institute\{Institute\}\\ + \\ + \bs begin\{document\}\\ + \\ + \bs maketitle\\ + \\ + \bs block\{Block\}\{Content\}\\ + \bs end\{document\} + \end{minipage} + \end{columns} +\end{frame} + +\begin{frame} + \frametitle{All Title Styles} + + \small\vspace{-0.05cm} + \begin{tabular}[t]{@{}p{3.5cm}@{~~~}p{3.5cm}@{~~~}p{3.5cm}} + Default & Basic & Empty\\[-0.03cm] + \includegraphics[page=1, width=3.5cm]{all_titles.pdf} & + \includegraphics[page=2, width=3.5cm]{all_titles.pdf} & + \includegraphics[page=3, width=3.5cm]{all_titles.pdf} \\ [0.03cm] + Filled & Envelope & Wave\\[-0.03cm] + \includegraphics[page=4, width=3.5cm]{all_titles.pdf} & + \includegraphics[page=5, width=3.5cm]{all_titles.pdf} & + \includegraphics[page=6, width=3.5cm]{all_titles.pdf} \\ [0.03cm] + VerticalShading & & \\[-0.03cm] + \includegraphics[page=7, width=3.5cm]{all_titles.pdf} & + \end{tabular} +\end{frame} + +\foreach \back/\i in {% + Default/1, Basic/2, Empty/3, Filled/4, Envelope/5, Wave/6, VerticalShading/7}{ +\begin{frame} + \frametitle{\back ~Title} + \includegraphics[page=\i, width=11.2cm]{all_titles.pdf} +\end{frame} +} + +\subsection{Block} + +\begin{frame} + \frametitle{Customization of TikZposter: Block nodes} + + \begin{columns}[c] + \column{.45\textwidth} + \includegraphics[width=5cm, page=6]{all_blocks.pdf} + + %% + \column{.55\textwidth} + By \bs useblockstyle command, you can change the style of the blocks. + + \medskip + \hspace{0.2cm} + \begin{minipage}{.6\textwidth}\small + \bs documentclass\{tikzposter\} + + \bs useblockstyle\{Slide\}\\ + \\ + \bs title\{Title\}\\ + \bs author\{Author\}\\ + \bs institute\{Institute\}\\ + \\ + \bs begin\{document\}\\ + \\ + \bs maketitle\\ + \\ + \bs block\{Block\}\{Content\}\\ + \bs end\{document\} + \end{minipage} + \end{columns} +\end{frame} + +\begin{frame} + \frametitle{All Block Styles} + + \small\vspace{-0.05cm} + \begin{tabular}[t]{@{}p{3.5cm}@{~~~}p{3.5cm}@{~~~}p{3.5cm}} + Default & Basic & Minimal\\[-0.03cm] + \includegraphics[page=1, width=3.5cm]{all_blocks.pdf} & + \includegraphics[page=2, width=3.5cm]{all_blocks.pdf} & + \includegraphics[page=3, width=3.5cm]{all_blocks.pdf} \\ [0.03cm] + Envelope & Corner & Slide\\[-0.03cm] + \includegraphics[page=4, width=3.5cm]{all_blocks.pdf} & + \includegraphics[page=5, width=3.5cm]{all_blocks.pdf} & + \includegraphics[page=6, width=3.5cm]{all_blocks.pdf} \\ [0.03cm] + TornOut & & \\[-0.03cm] + \includegraphics[page=7, width=3.5cm]{all_blocks.pdf} & + \end{tabular} +\end{frame} + +\foreach \back/\i in {% + Default/1, Basic/2, Minimal/3, Envelope/4, Corner/5, Slide/6, TornOut/7}{ +\begin{frame} + \frametitle{\back ~Block} + \includegraphics[page=\i, width=11.2cm]{all_blocks.pdf} +\end{frame} +} + +\subsection{Note} + +\begin{frame} + \frametitle{Customization of TikZposter: Notes} + + \begin{columns}[c] + \column{.45\textwidth} + \includegraphics[width=5cm, page=4]{all_notes.pdf} + + %% + \column{.55\textwidth} + By \bs usenotestyle command, you can change the style of the notes. + + \medskip + \hspace{0.2cm} + \begin{minipage}{.6\textwidth}\small + \bs documentclass\{tikzposter\} + + \bs usenotestyle\{Sticky\}\\ + \\ + \bs title\{Title\}\\ + \bs author\{Author\}\\ + \bs institute\{Institute\}\\ + \\ + \bs begin\{document\}\\ + \\ + \bs maketitle\\ + \\ + \bs block\{Block\}\{Content\}\\ + \bs end\{document\} + \end{minipage} + \end{columns} +\end{frame} + +\begin{frame} + \frametitle{All Note Styles} + + \small + \begin{tabular}[t]{p{4.5cm}p{4.5cm}} + Default & VerticalShading\\ + \includegraphics[page=1, width=4.5cm]{all_notes.pdf} & + \includegraphics[page=2, width=4.5cm]{all_notes.pdf}\\ + Corner & Sticky\\ + \includegraphics[page=3, width=4.5cm]{all_notes.pdf} & + \includegraphics[page=4, width=4.5cm]{all_notes.pdf} \\ + \end{tabular} +\end{frame} + +\foreach \back/\i in {% + Default/1, VerticalShading/2, Corner/3, Sticky/4}{ +\begin{frame} + \frametitle{\back ~Block} + \includegraphics[page=\i, width=11.2cm]{all_notes.pdf} +\end{frame} +} + +\subsection{New Look} + +\begin{frame} + \frametitle{Customization of TikZposter: Your Own Look} + + \footnotesize + You can completely change the appearance of your poster. Below we + define a new color style to be used together with the predefined + background (Default), title (Wave), blocks (Minimal) and notes + (Default) styles. + + \medskip\scriptsize + \begin{columns}[t] + \column{.4\textwidth} + \begin{minipage}[t]{0.5\textwidth} + \bs documentclass\{tikzposter\} + + \bs definecolor\{mygray\}\{HTML\}\{CCCCCC\} + + \bs definecolorstyle\{myColorStyle\}\{\\ + \mbox{~~}\bs colorlet\{colorOne\}\{black\}\\ + \mbox{~~}\bs colorlet\{colorTwo\}\{mygray\}\\ + \mbox{~~}\bs colorlet\{colorThree\}\{mygray\}\\ + \}\{\\ + \mbox{~~}\% Background Colors\\ + \mbox{~~}\bs colorlet\{backgroundcolor\}\{colorTwo!50\}\\ + \mbox{~~}\bs colorlet\{framecolor\}\{colorTwo!50\}\\ + \mbox{~~}\% Title Colors\\ + \mbox{~~}\bs colorlet\{titlefgcolor\}\{white\}\\ + \mbox{~~}\bs colorlet\{titlebgcolor\}\{colorOne\}\\ + \mbox{~~}\% Block Colors\\ + \mbox{~~}\bs colorlet\{blocktitlebgcolor\}\{colorTwo!50\}\\ + \mbox{~~}\bs colorlet\{blocktitlefgcolor\}\{black\}\\ + \mbox{~~}\bs colorlet\{blockbodybgcolor\}\{colorTwo!50\}\\ + \mbox{~~}\bs colorlet\{blockbodyfgcolor\}\{black\}\\ + \mbox{~~}\% Innerblock Colors\\ + \mbox{~~}\bs colorlet\{innerblocktitlebgcolor\}\{white\}\\ + \mbox{~~}\bs colorlet\{innerblocktitlefgcolor\}\{black\}\\ + \mbox{~~}\bs colorlet\{innerblockbodybgcolor\}\{white\}\\ + \mbox{~~}\bs colorlet\{innerblockbodyfgcolor\}\{black\}\\ + \mbox{~~}\% Note colors\\ + \mbox{~~}\bs colorlet\{notefgcolor\}\{black\}\\ + \mbox{~~}\bs colorlet\{notebgcolor\}\{white\}\\ + \mbox{~~}\bs colorlet\{notefrcolor\}\{white\}\\ + \} + \end{minipage} + + %% + \column{.6\textwidth} + \begin{minipage}[t]{0.5\textwidth} + \bs usecolorstyle\{myColorStyle\}\\ + % \bs usebackgroundstyle\{Default\}\\ + \bs usetitlestyle\{Wave\}\\ + \bs useblockstyle\{Minimal\}\\ + \\ + \bs usepackage\{avant\}\\ + \bs renewcommand*\bs familydefault\{\bs sfdefault\}\\ + \bs usepackage[T1]\{fontenc\}\\ + \\ + \bs title\{Title\}% + \bs author\{Author\}% + \bs institute\{Institute\}\\ + \\ + \bs begin\{document\}\\ + \bs maketitle\\ + \bs begin\{columns\}\\ + \mbox{~~}\bs column\{0.5\}\\ + \mbox{~~}\bs block\{Block 1\}\{\\ + \mbox{~~~~}\bs coloredbox\{\\ + \mbox{~~~~~~}Content 1\\ + \mbox{~~}\}\}\\ + \mbox{~~}\bs column\{0.5\}\\ + \mbox{~~}\bs block\{Block 2\}\{\\ + \mbox{~~~~}\bs coloredbox\{\\ + \mbox{~~~~~~}Content 2\\ + \mbox{~~}\}\}\\ + \bs end\{columns\}\\ + \bs end\{document\} + \end{minipage} + \end{columns} + + \vspace{-4cm}\hspace{7cm}\includegraphics[width=4cm]{mytheme.pdf} + + ~\\~\\~\\~\\~\\ +\end{frame} + +\begin{frame} + \frametitle{My Customized Poster} + \includegraphics[width=11.2cm]{mytheme.pdf} +\end{frame} + + +\end{document} + + + diff --git a/tecnmW.png b/tecnmW.png new file mode 100644 index 0000000..f72368f Binary files /dev/null and b/tecnmW.png differ diff --git a/tikzposter-example.tex b/tikzposter-example.tex new file mode 100644 index 0000000..bc3b7dc --- /dev/null +++ b/tikzposter-example.tex @@ -0,0 +1,191 @@ +%% +%% This is file `tikzposter-example.tex', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% tikzposter.dtx (with options: `tikzposter-example.tex') +%% +%% This is a generated file. +%% +%% Copyright (C) 2014 by Pascal Richter, Elena Botoeva, Richard Barnard, and Dirk Surmann +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 2.1 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 2.1 or later is part of all distributions of +%% LaTeX version 2014/10/15 or later. +%% + + + + + + + +\documentclass[25pt, a0paper, portrait, margin=0mm, innermargin=15mm, + blockverticalspace=15mm, colspace=15mm, subcolspace=8mm]{tikzposter} %Default values for poster format options. + +\tikzposterlatexaffectionproofon %shows small comment on how the poster was made at bottom of poster + + % Commands +\newcommand{\bs}{\textbackslash} % backslash +\newcommand{\cmd}[1]{{\bfseries \color{red}#1}} % highlights command + + % Title, Author, Institute +\title{Using tikzposter} +\author{Pascal Richter, Elena Botoeva, Richard Barnard, \& Dirk Surmann} +\institute{} + + % -- PREDEFINED THEMES ---------------------- % + % Choose LAYOUT: Default, Basic, Rays, Simple, Envelope, Wave, Board, Autumn, Desert, +\usetheme{Autumn} +\usecolorstyle[colorPalette=BrownBlueOrange]{Germany} + +\begin{document} + +\maketitle + +\begin{columns}%blocks will be placed into columns +\column{.55} +\block[roundedcorners=40]{Creating the document}{ +The document begins with: +\begin{quote} + \texttt{\bs documentclass[25pt, a0paper, portrait, margin=10mm, innermargin=15mm, + blockverticalspace=15mm, colspace=15mm, subcolspace=8mm]\{tikzposter\}\\ + \bs title\{Title\}\\ + \bs author\{Author(s)\}\\ + \bs institute\{Institute \}\\ + \bs titlegraphic\{Logo\}\\ + \bs begin\{document\}\\ + \bs maketitle} +\\ \dots \end{quote} +\begin{tikzfigure}[A figure can be made with \bs \texttt{tikzfigure}; \bs\texttt{figure} does not work] +\begin{tikzpicture} +\draw[draw=none,inner color=red, outer color=green] (0,0) circle (1.5cm); +\end{tikzpicture} +\end{tikzfigure} +\innerblock[]{Inner Blocks}{Inner blocks may be created inside of blocks with the command \bs\texttt{innerblock[{\it options}]\{{\it Heading}\}\{{\it Text}\}} } +\coloredbox{Text may be highlighted using colored boxes created by \bs\texttt{coloredbox[{\it options}]\{{\it Text\}}}} +} +\note[targetoffsetx=-.05\textwidth,targetoffsety=9.5cm,innersep=.4cm,angle=-45,connection]{Optional arguments for the format of the poster} +\block{The title matter}{ +The title is made by the standard \texttt{\bs maketitle[{\it options}]} command where you can alter the \texttt{width}, the spacing between the title and top of the poster (\texttt{titletotopverticalspace}), the bottom of the title to the main content of the poster (\texttt{titletoblockverticalspace}) and the space between the title information and the logo (\texttt{titlegraphictotitleverticalspace}). + +If the default format of the title is not to your liking, you can define the placement of the different items via the \texttt{\bs settitle} command, described in the manual. +} +\block{Blocks}{ +Blocks are arranged in a grid, by default, with width by default \texttt{\bs textwdith}. They are created by the command +\begin{quote} +\bs\texttt{block [{\it options}] \{{\it title}\}\{{\it contents}\}} +\end{quote} +The title may be left empty, resulting in no title area being created for the block (as seen in a later block to the right). Further blocks will be placed below automatically, at a distance defined by \texttt{blockverticalspace}. + +If you want to change the position of the title matter or the contents in the block, you may by setting in the options +\begin{quote} +\texttt{titleoffsetx, titleoffsety, bodyoffsetx, bodyoffsety} +\end{quote} +which let you adjust the vertical or horizontal position of the two parts of the block, respectively. You can also make, relative to the default width, the title and block body by setting +\begin{quote} +\texttt{titlewidthscale, bodywidthscale} +\end{quote} +The title's alignment can be set by \texttt{titleleft, titlecenter, titleright}, the body may be shifted vertically by setting \texttt{bodyverticalshift}, and the shape of the block can be altered by setting \texttt{roundedcorners, linewidth}. The inner margins of the title can by set by \texttt{titleinnersep,bodyinnersep}. +} + +\note[targetoffsetx=24cm, targetoffsety=-9cm,rotate=1,angle=270,radius=8cm,width=.75\textwidth,innersep=.4cm]{ +You can place notes that are ``attached'' to the previous block using the command +\begin{quote} \texttt{\bs note[{\it options}]\{{\it contents}\}}\end{quote} +The note is placed by default slightly to the right of a ``target'' in the center of the previous block. The note style may also allow for a connection between the note and the ``target''. \\ +The target may be shifted from the default by setting the options \texttt{targetoffsetx, targetoffsety}, rotated by an angle with \texttt{rotate}, and its width with \texttt{width}. The placement of the note in relation with the target is given in polar coordinates with \texttt{ radius, angle}. Please observe that notes are always drawn {\bfseries over} the other objects. They do not affect the placement of blocks. +} + +\column{.45} +\block{Columns}{ +By default, blocks are arranged in a single column. If you want multiple columns for your poster, you may use the \texttt{columns} environment. For example, +\begin{quote} + \texttt{\noindent \bs begin\{columns\}\\ + \bs column\{.6\}\\ + \bs block\{\dots\}\{\dots\}\\ + \bs column\{.4\}\\ + \bs block\{\dots\}\{\dots\}\\ + \bs block\{\dots\}\{\dots\}\\ + \bs end\{columns\} + } +\end{quote} +will create two columns of 60\% and 40\% the available width; spacing between successive columns is handled automatically. The block command(s) following \texttt{\bs column} are the blocks to go in that column. The number of columns is free to be chosen, but the relative widths must all be chosen. If the widths sum to less than 1, empty space will be seen on the right. If they sum to more than 1, the latter columns will be cut off. +} + +\begin{subcolumns} +\subcolumn{.45} +\block{Subcolumns}{If you want to have an additional subdivision of columns inside a column, you may use the\\ \texttt{\bs subcolumns} environment inside of a column environment. The functionality is similar to that of columns, but now the widths are relative to the width of the current column.} + +\subcolumn{.5} +\block{}{An example use of subcolumns is. + \begin{quote} + \texttt{\bs begin\{subcolumns\}\\ + \bs subcolumn\{.6\}\\ + \bs block\{\dots\}\{\dots\}\\ + \bs subcolumn\{.4\}\\ + \bs block\{\dots\}\{\dots\}\\ + \bs block\{\dots\}\{\dots\}\\ + \bs end\{subcolumns\} + } +\end{quote} +} +\end{subcolumns} + +\block[titlewidthscale=.8,bodywidthscale=.9,titleoffsety=9.5mm,bodyoffsety=9mm]{Changing the Poster's Appearance}{ +If the default appearance of the title, background, blocks, and notes is not desired, you may change the colors by calling the color style along with a general layout theme with the commands +\begin{quote} + \texttt{\bs usecolorpalette}\{{\em color palette}\}\\ + \texttt{\bs usecolorstyle\{{\em color style}\}} +\end{quote} +and +\begin{quote} + \texttt{\bs usetheme\{{\em layout style}\}} +\end{quote} +where the color palette and style and layout style are either the name of a custom made or one of the offered predefined choices listed in the manual or the comments of this poster's source. Individual changes can be made to the style of the background, title matter, blocks, inner blocks, and notes by using one of the following (along with either a custom-designed style or a predefined style listed in the manual or the comments of this poster's source). These changes are made with the commands +\begin{quote} + \texttt{\bs usebackgroundstyle[]\{\}, \bs usetitlestyle[]\{\},\\ \bs useblockstyle[]\{\},\bs innerblockstyle[]\{\}, \bs usenotestyle[]\{\}} +\end{quote} +Custom styles for these can be made; this is detailed in the manual. +} + +\end{columns} + +\block[titleoffsety=-1cm,bodyoffsety=-1cm]{Sample document}{\vspace{2em} +This poster was created by the following commands (omitting the contents of the blocks and notes) to give a sense of how different objects are created and options used. +\begin{quote} +\texttt{\bs documentclass[25pt, a0paper, portrait, margin=0mm, innermargin=15mm, +blockverticalspace=15mm, colspace=15mm, subcolspace=8mm]\{tikzposter\}\\ +\bs title\{Using tikzposter\} \bs author\{Pascal Richter, Elena Botoeva, Richard Barnard, \& Dirk Surmann\} \bs institute\{\}\\ +\bs usetheme\{Autumn\}\bs usecolorstyle[colorPalette=BrownBlueOrange]\{Germany\}\\ +\bs begin\{document\}\bs maketitle\\ +\bs begin\{columns\} \bs column\{0.55\}\\ +\bs block\{Creating the document\}\{The document\dots\} \bs note[targetoffsetx=-.05\bs textwidth,targetoffsety=9.5cm,innersep=.4cm,angle=-45,connection]\{\dots\}\\ +\bs block\{The title matter\}\{The title\dots\}\\ +\bs block\{Blocks\}\{Blocks are\dots\} \bs note[targetoffsetx=24cm, targetoffsety=-9cm,rotate=1,angle=270,radius=8cm,width=.75\bs textwidth,innersep=.4cm]\{You can\dots\}\\ +\bs column\{0.45\} \bs block\{Columns\}\{By default,\dots\}\\ +\bs begin\{subcolumns\} \bs subcolumn\{.45\} +\bs block\{Subcolumns\}\{If you\dots\} +\bs subcolumn\{.5\} \bs block\{\}\{An example\dots\} +\bs end\{subcolumns\}\\ +\bs block[titlewidthscale=.8,bodywidthscale=.9,titleoffsety=9.5mm,bodyoffsety=9mm]\{Changing the Poster's Appearance\}\{If the default\dots\} +\bs end\{columns\}\\ +\bs block[titleoffsety=-1cm,bodyoffsety=-1cm]\{Sample document\}\{This poster\dots\}\\ +\bs end\{document\} +} +\end{quote} +} + +\end{document} + + + +\endinput +%% +%% End of file `tikzposter-example.tex'. diff --git a/tikzposter-template.tex b/tikzposter-template.tex new file mode 100644 index 0000000..af80816 --- /dev/null +++ b/tikzposter-template.tex @@ -0,0 +1,104 @@ +%% +%% This is file `tikzposter-template.tex', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% tikzposter.dtx (with options: `tikzposter-template.tex') +%% +%% This is a generated file. +%% +%% Copyright (C) 2014 by Pascal Richter, Elena Botoeva, Richard Barnard, and Dirk Surmann +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 2.1 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 2.1 or later is part of all distributions of +%% LaTeX version 2014/10/15 or later. +%% + + + + + + + +\documentclass{tikzposter} %Options for format can be included here + + % Title, Author, Institute +\title{Template Poster} +\author{Author(s)} +\institute{Institute} +\titlegraphic{LogoGraphic Inserted Here} + + %Choose Layout +\usetheme{Default} + +\begin{document} + + % Title block with title, author, logo, etc. +\maketitle + + % First block +\block{Basic Block}{Text} +\begin{columns} + + % FIRST column +\column{0.6}% Width set relative to text width + +\block{Large Column}{Text\\Text\\Text Text Text} +\note{Note with default behavior} +\note[targetoffsetx=12cm, targetoffsety=-1cm, angle=20, rotate=25] +{Note \\ offset and rotated} + + % First column - second block +\block{Block titles with enough text will automatically obey spacing requirements } +{Text\\Text} + + % First column - third block +\block{Sample Block 4}{T\\E\\S\\T} + + % SECOND column +\column{0.4} + % Second column with first block's top edge aligned with with previous column's top. + + % Second column - first block +\block[titleleft]{Smaller Column}{Test} + + % Second column - second block +\block[titlewidthscale=0.6, bodywidthscale=0.8] +{Variable width title}{Block with smaller width.} + + % Second column - third block +\block{}{Block with no title} + + % Second column - A collection of blocks in subcolumn environment. +\begin{subcolumns} +\subcolumn{0.27} \block{1}{First block.} \block{2}{Second block} +\subcolumn{0.4} \block{Sub-columns}{Sample subblocks\\Second subcolumn} +\subcolumn{0.33} \block{4}{Fourth} \block{}{Final Subcolumn block} +\end{subcolumns} + + % Bottomblock +\block{Final Block in column}{ +Sample block. +} +\end{columns} + + % Final block +\block[titleleft, titleoffsetx=2em, titleoffsety=1em, bodyoffsetx=2em,% + bodyoffsety=-2cm, roundedcorners=10, linewidth=0mm, titlewidthscale=0.7,% + bodywidthscale=0.9, bodyverticalshift=2cm, titleright] +{Block outside of Columns}{Along with several options enabled} + +\end{document} + + + +\endinput +%% +%% End of file `tikzposter-template.tex'. diff --git a/tikzposter.cls b/tikzposter.cls new file mode 100644 index 0000000..dd6e238 --- /dev/null +++ b/tikzposter.cls @@ -0,0 +1,825 @@ +%% +%% This is file `tikzposter.cls', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% tikzposter.dtx (with options: `tikzposter.cls') +%% +%% This is a generated file. +%% +%% Copyright (C) 2014 by Pascal Richter, Elena Botoeva, Richard Barnard, and Dirk Surmann +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 2.1 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 2.1 or later is part of all distributions of +%% LaTeX version 2014/10/15 or later. +%% + + + + + + + + +\NeedsTeXFormat{LaTeX2e} +\ProvidesClass{tikzposter}[2014/10/15 v2.1 LaTeX document class for Posters] + + % --------------------------------------- % + % Loading Packages +\RequirePackage{xkeyval} +\RequirePackage{calc} +\RequirePackage{ifthen} +\RequirePackage{ae} +\RequirePackage{xstring} +\RequirePackage{etoolbox} +\RequirePackage{tikz} +\usetikzlibrary{shapes,decorations,shadows,backgrounds,calc,fadings,fit} +\usetikzlibrary{decorations.pathmorphing} +\usepgflibrary{arrows} + + % --------------------------------------- % + % Paper parameter +\newif\ifTP@hugefontsize +\newdimen\TP@innermargin +\newdimen\TP@visibletextwidth +\newdimen\TP@visibletextheight + + % Title parameter +\newdimen\TP@titlewidth +\newdimen\titlewidth +\newdimen\TP@titlelinewidth +\newdimen\titlelinewidth +\def\titleroundedcorners{} +\newdimen\titleinnersep +\newdimen\TP@titleinnersep +\newdimen\TP@titletotopverticalspace +\newdimen\titletotopverticalspace +\newdimen\TP@titletoblockverticalspace +\newdimen\TP@titleheight +\newdimen\titleheight +\newdimen\titlegraphicheight +\newdimen\titleposleft +\newdimen\titleposright +\newdimen\titlepostop +\newdimen\titleposbottom +\newdimen\TP@titlegraphictotitledistance +\def\TP@titletextscale{1} +\gdef\TP@titlegraphicAlignment{} +\newif\ifTP@titlegraphicTop + + % Maketitle parameter +\def\@title{~} +\def\title#1{% +\expandarg\StrCut{#1}{\empty\\}\titleone\titletwo% +\expandarg\StrCut{\titletwo}{\empty\\}\titletwo\titlethree% +\gdef\@title{% +\scalebox{\TP@titletextscale}\titleone% +\expandafter\ifstrempty\expandafter{\titletwo}{}{\par\scalebox{\TP@titletextscale}\titletwo}% +\expandafter\ifstrempty\expandafter{\titlethree}{}{\par\scalebox{\TP@titletextscale}\titlethree}% +}% +} +\def\@author{~} +\def\@institute{~} +\def\@titlegraphic{~} + + % Affection parameter +\newif\ifTP@showlatexaffection + + % Column parameter +\newif\ifTP@columnEnvironment +\TP@columnEnvironmentfalse +\newif\ifTP@subcolumnEnvironment +\TP@subcolumnEnvironmentfalse +\newdimen\TP@colspace +\newdimen\TP@coltop +\newdimen\TP@colbottom +\newdimen\TP@colcenter +\newdimen\colwidth + + % Subcolumn parameter +\newdimen\TP@subcolspace +\newdimen\TP@subcoltop +\newdimen\TP@subcolbottom +\newdimen\TP@subcolcenter +\newdimen\subcolwidth + + % Block parameter +\newdimen\TP@blockverticalspace +\newdimen\TP@blockcenter +\newdimen\TP@blocktitleinnersep +\newdimen\blocktitleinnersep +\newdimen\TP@blockbodyinnersep +\newdimen\blockbodyinnersep +\newbox\TP@blocktitlebox +\newbox\TP@blockbodybox +\def\TP@blocktitleAlignment{} +\newif\ifBlockHasTitle +\newdimen\blockwidth +\newdimen\TP@blocktitlewidth +\newdimen\TP@blockbodywidth +\newdimen\TP@blockbodyheight +\newdimen\TP@blocktitleheight +\newdimen\TP@blocktop +\newdimen\TP@blocktitleoffsetx +\newdimen\TP@blocktitleoffsety +\newdimen\TP@blockbodyoffsetx +\newdimen\TP@blockbodyoffsety +\newdimen\TP@blockbodyverticalshift +\def\blockroundedcorners{} +\newdimen\blocklinewidth +\def\TP@blocktitlefont{} +\def\TP@blockbodyfont{} + + % Innerblock parameter +\newdimen\TP@innerblockcenter +\newdimen\TP@innerblocktitleinnersep +\newdimen\innerblocktitleinnersep +\newdimen\TP@innerblockbodyinnersep +\newdimen\innerblockbodyinnersep +\newbox\TP@innerblocktitlebox +\newbox\TP@innerblockbodybox +\def\TP@innerblocktitleAlignment{} +\newif\ifInnerblockHasTitle +\newdimen\TP@innerblocktitlewidth +\newdimen\TP@innerblockbodywidth +\newdimen\TP@innerblockbodyheight +\newdimen\TP@innerblocktitleheight +\newdimen\TP@innerblocktitleoffsetx +\newdimen\TP@innerblocktitleoffsety +\newdimen\TP@innerblockbodyoffsetx +\newdimen\TP@innerblockbodyoffsety +\newdimen\TP@innerblockbodyverticalshift +\def\innerblockroundedcorners{} +\newdimen\innerblocklinewidth + + % Coloredbox parameter +\newbox\TP@coloredbox +\newdimen\TP@coloredboxwidth +\def\TP@coloredboxroundedcorners{} +\newdimen\TP@coloredboxlinewidth +\newdimen\TP@coloredboxinnersep +\newdimen\TP@coloredboxheight + + % Note parameter +\newdimen\TP@noteinnersep +\newdimen\noteinnersep +\newdimen\TP@notetargetoffsetx +\newdimen\TP@notetargetoffsety +\def\TP@noteangle{} +\newdimen\TP@noteradius +\newdimen\TP@notewidth +\newdimen\TP@noteheight +\newif\ifNoteHasConnection +\newbox\TP@notebox +\def\noterotate{} +\def\noteroundedcorners{} +\newdimen\notelinewidth + + % --------------------------------------- % + % Declaring options +\DeclareOptionX{12pt}{\TP@hugefontsizefalse \PassOptionsToClass{\CurrentOption}{extarticle}} +\DeclareOptionX{14pt}{\TP@hugefontsizefalse \PassOptionsToClass{\CurrentOption}{extarticle}} +\DeclareOptionX{17pt}{\TP@hugefontsizefalse \PassOptionsToClass{\CurrentOption}{extarticle}} +\DeclareOptionX{20pt}{\TP@hugefontsizefalse \PassOptionsToClass{\CurrentOption}{extarticle}} +\DeclareOptionX{25pt}{\TP@hugefontsizetrue} +\DeclareOptionX{fleqn}{\PassOptionsToClass{\CurrentOption}{extarticle}} +\DeclareOptionX{leqno} {\PassOptionsToClass{\CurrentOption}{extarticle}} +\DeclareOptionX{a0paper}{\PassOptionsToPackage{\CurrentOption}{geometry}} +\DeclareOptionX{a1paper}{\PassOptionsToPackage{\CurrentOption}{geometry}} +\DeclareOptionX{a2paper}{\PassOptionsToPackage{\CurrentOption}{geometry}} +\DeclareOptionX{landscape}{\PassOptionsToPackage{\CurrentOption}{geometry}} +\DeclareOptionX{portrait}{\PassOptionsToPackage{\CurrentOption}{geometry}} +\DeclareOptionX{margin}[20mm]{\PassOptionsToPackage{margin=#1}{geometry}} +\DeclareOptionX{papersize}{\PassOptionsToPackage{\CurrentOption}{geometry}} +\DeclareOptionX{paperheight}{\PassOptionsToPackage{\CurrentOption}{geometry}} +\DeclareOptionX{paperwidth}{\PassOptionsToPackage{\CurrentOption}{geometry}} +\DeclareOptionX{innermargin}{\TP@innermargin=#1} +\DeclareOptionX{colspace}{\TP@colspace=#1} +\DeclareOptionX{subcolspace}{\TP@subcolspace=#1} +\DeclareOptionX{blockverticalspace}{\TP@blockverticalspace=#1} +\DeclareOptionX*{{\PackageWarning{tikzposter}{Unknown Option \CurrentOption.}}} + + % Executing options +\ExecuteOptionsX{ +25pt, +a0paper, +portrait, +margin=0mm, +innermargin=15mm, +colspace=15mm, +subcolspace=8mm, +blockverticalspace=15mm +} +\ProcessOptionsX \relax +\LoadClass{extarticle} +\RequirePackage{caption} +\RequirePackage{geometry} +\ifTP@hugefontsize +\input{a0size.sty} +\renewcommand{\tiny}{\fontsize{12}{14}\selectfont} +\renewcommand{\scriptsize}{\fontsize{14.4}{18}\selectfont} +\renewcommand{\footnotesize}{\fontsize{17.28}{22}\selectfont} +\renewcommand{\small}{\fontsize{20.74}{25}\selectfont} +\renewcommand{\normalsize}{\fontsize{24.88}{30}\selectfont} +\renewcommand{\large}{\fontsize{29.86}{37}\selectfont} +\renewcommand{\Large}{\fontsize{35.83}{45}\selectfont} +\renewcommand{\LARGE}{\fontsize{43}{54}\selectfont} +\renewcommand{\huge}{\fontsize{51.6}{64}\selectfont} +\renewcommand{\Huge}{\fontsize{61.92}{77}\selectfont} +\fi +\normalsize +\pagestyle{empty} +\setlength{\TP@visibletextwidth}{\textwidth-2\TP@innermargin} +\setlength{\TP@visibletextheight}{\textheight-2\TP@innermargin} +\pgfdeclarelayer{backgroundlayer} +\pgfdeclarelayer{notelayer} +\pgfsetlayers{backgroundlayer,main,notelayer} + + % --------------------------------------- % + % Background styles +\gdef\definebackgroundstyle#1#2{\expandafter\gdef\csname TP@backgroundstyle#1\endcsname{#2}} +\gdef\backgroundgraphic#1{\gdef\TP@backgroundgraphic{#1}}\backgroundgraphic{} + +\gdef\usebackgroundstyle#1{ +\ifcsname TP@backgroundstyle#1\endcsname + \gdef\TP@backgroundstyle{\csname TP@backgroundstyle#1\endcsname} % save macro +\else +\PackageWarning{tikzposter}{Unknown backgroundstyle `#1'.} +\fi +} + + % --------------------------------------- % + % Title styles +\gdef\definetitlestyle#1#2#3{ +\expandafter\gdef\csname TP@titlestyle#1Defaultvalues\endcsname{\gpresetkeys{title}{#2}{}} +\expandafter\gdef\csname TP@titlestyle#1\endcsname{#3} +} + +\define@key{title}{width}{\TP@titlewidth=#1 \titlewidth=#1} +\define@key{title}{roundedcorners}{\gdef\titleroundedcorners{#1}} +\define@key{title}{linewidth}{\TP@titlelinewidth=#1 \titlelinewidth=#1} +\define@key{title}{innersep}{\TP@titleinnersep=#1 \titleinnersep=#1} +\define@key{title}{titletotopverticalspace}{\TP@titletotopverticalspace=#1 \titletotopverticalspace=#1} +\define@key{title}{titletoblockverticalspace}{\TP@titletoblockverticalspace=#1} +\define@key{title}{titlegraphictotitledistance}{\TP@titlegraphictotitledistance=#1} +\define@key{title}{titletextscale}{\gdef\TP@titletextscale{#1}} +\define@boolkey{title}{titlegraphicleft}[true]{\ifKV@title@titlegraphicleft \gdef\TP@titlegraphicAlignment{\raggedright} \fi} +\define@boolkey{title}{titlegraphiccenter}[true]{\ifKV@title@titlegraphiccenter \gdef\TP@titlegraphicAlignment{\centering} \fi} +\define@boolkey{title}{titlegraphicright}[true]{\ifKV@title@titlegraphicright \gdef\TP@titlegraphicAlignment{\raggedleft} \fi} +\define@boolkey{title}{titlegraphictop}[true]{\ifKV@title@titlegraphictop \TP@titlegraphicToptrue \fi} +\define@boolkey{title}{titlegraphicbottom}[true]{\ifKV@title@titlegraphicbottom \TP@titlegraphicTopfalse \fi} + +\newcommand\usetitlestyle[2][]{ +\ifcsname TP@titlestyle#2\endcsname + \csname TP@titlestyle#2Defaultvalues\endcsname\gpresetkeys{title}{#1}{} % call macro + \gdef\TP@titlestyle{\csname TP@titlestyle#2\endcsname} % save macro +\else +\PackageWarning{tikzposter}{Unknown titlestyle `#2'.} +\fi +} + + % --------------------------------------- % + % Title +\gdef\TP@maketitle{ +\centering +\vbox{ +\ifTP@titlegraphicTop +\TP@titlegraphicAlignment\@titlegraphic +\\[\TP@titlegraphictotitledistance] +\fi +\centering +\color{titlefgcolor} +{\bfseries \Huge \sc {\@title} \par} +\vspace*{1em} +{\huge \@author \par} +\vspace*{1em} +\LARGE \@institute +\ifTP@titlegraphicTop\else +\vspace*{\TP@titlegraphictotitledistance} +\TP@titlegraphicAlignment\@titlegraphic +\fi +} +} + +\gdef\institute#1{\gdef\@institute{#1}} +\gdef\titlegraphic#1{\gdef\@titlegraphic{#1}} + +\newenvironment{settitle}{ +\makeatletter +\renewcommand{\TP@maketitle} +}{ +\makeatother +} + +\renewcommand\maketitle[1][]{ % #1 keys +\normalsize + +\setkeys{title}{#1} + +\node[transparent,inner sep=\TP@titleinnersep, line width=\TP@titlelinewidth, anchor=north, minimum width=\TP@visibletextwidth-2\TP@titleinnersep] +(TP@title) at ($(0, 0.5\textheight-\TP@titletotopverticalspace)$) {\parbox{\TP@titlewidth-2\TP@titleinnersep}{\TP@maketitle}}; +\draw let \p1 = ($(TP@title.north)-(TP@title.south)$) in node { +\setlength{\TP@titleheight}{\y1} +\setlength{\titleheight}{\y1} +\global\TP@titleheight=\TP@titleheight +\global\titleheight=\titleheight +}; + +\setlength{\titleposleft}{-0.5\titlewidth} +\setlength{\titleposright}{\titleposleft+\titlewidth} +\setlength{\titlepostop}{0.5\textheight-\TP@titletotopverticalspace} +\setlength{\titleposbottom}{\titlepostop-\titleheight} + +\TP@titlestyle + +\node[inner sep=\TP@titleinnersep, line width=\TP@titlelinewidth, anchor=north, minimum width=\TP@visibletextwidth-2\TP@titleinnersep] +at (0,0.5\textheight-\TP@titletotopverticalspace) {\parbox{\TP@titlewidth-2\TP@titleinnersep}{\TP@maketitle}}; + +\normalsize +\setlength{\TP@blocktop}{\titleposbottom-\TP@titletoblockverticalspace} +} + + % --------------------------------------- % + % Block styles +\gdef\defineblockstyle#1#2#3{ +\expandafter\gdef\csname TP@blockstyle#1Defaultvalues\endcsname{\gpresetkeys{block}{#2}{}} +\expandafter\gdef\csname TP@blockstyle#1\endcsname{#3} +} + +\define@key{block}{titlewidthscale}{\setlength{\TP@blocktitlewidth}{#1\TP@blocktitlewidth}} +\define@key{block}{bodywidthscale}{\setlength{\TP@blockbodywidth}{#1\TP@blockbodywidth}} +\define@boolkey{block}{titleleft}[true]{\ifKV@block@titleleft \gdef\TP@blocktitleAlignment{\raggedright} \fi} +\define@boolkey{block}{titlecenter}[true]{\ifKV@block@titlecenter \gdef\TP@blocktitleAlignment{\centering} \fi} +\define@boolkey{block}{titleright}[true]{\ifKV@block@titleright \gdef\TP@blocktitleAlignment{\raggedleft} \fi} +\define@key{block}{titleoffsetx}{\TP@blocktitleoffsetx=#1} +\define@key{block}{titleoffsety}{\TP@blocktitleoffsety=#1} +\define@key{block}{bodyoffsetx}{\TP@blockbodyoffsetx=#1} +\define@key{block}{bodyoffsety}{\TP@blockbodyoffsety=#1} +\define@key{block}{bodyverticalshift}{\TP@blockbodyverticalshift=#1} +\define@key{block}{roundedcorners}{\gdef\blockroundedcorners{#1}} +\define@key{block}{linewidth}{\blocklinewidth=#1} +\define@key{block}{titleinnersep}{\TP@blocktitleinnersep=#1 \blocktitleinnersep=#1} +\define@key{block}{bodyinnersep}{\TP@blockbodyinnersep=#1 \blockbodyinnersep=#1} +\define@key{block}{titlefont}{\gdef\TP@blocktitlefont{#1}} +\define@key{block}{bodyfont}{\gdef\TP@blockbodyfont{#1}} + +\newcommand\useblockstyle[2][]{ +\ifcsname TP@blockstyle#2\endcsname +\csname TP@blockstyle#2Defaultvalues\endcsname\gpresetkeys{block}{#1}{} % call macro +\gdef\TP@blockstyle{\csname TP@blockstyle#2\endcsname} % save macro +\else +\PackageWarning{tikzposter}{Unknown blockstyle `#2'.} +\fi +} + + % --------------------------------------- % + % Block +\newcommand\block[3][]{ % #1 keys #2 title #3 text +\normalsize +\ifTP@subcolumnEnvironment +\TP@blocktitlewidth=\subcolwidth +\TP@blockbodywidth=\subcolwidth +\TP@blockcenter=\TP@subcolcenter +\else +\ifTP@columnEnvironment +\TP@blocktitlewidth=\colwidth +\TP@blockbodywidth=\colwidth +\TP@blockcenter=\TP@colcenter +\else +\setlength\TP@blocktitlewidth{\TP@visibletextwidth} +\setlength\TP@blockbodywidth{\TP@visibletextwidth} +\TP@blockcenter=0pt +\fi +\fi + +\setkeys{block}{#1} + +\setlength\blockwidth{\TP@blocktitlewidth-\blocklinewidth-2\TP@blockbodyinnersep} + +\ifTP@subcolumnEnvironment \else \ifTP@columnEnvironment \else +\setlength\TP@blocktitlewidth{\TP@blocktitlewidth-\blocklinewidth} +\setlength\TP@blockbodywidth{\TP@blockbodywidth-\blocklinewidth} +\TP@blockcenter=0pt +\fi \fi + +\ifstrempty{#2}{ +\BlockHasTitlefalse +\setlength{\TP@blocktitleheight}{0pt} +}{ +\BlockHasTitletrue +\setbox\TP@blocktitlebox=\hbox{% +\pgfinterruptpicture% +\parbox{\TP@blocktitlewidth-2\TP@blocktitleinnersep}{% +\strut\bfseries\LARGE\color{blocktitlefgcolor}\TP@blocktitleAlignment\TP@blocktitlefont#2\par\normalsize}% +\endpgfinterruptpicture% +}% +\setlength{\TP@blocktitleheight}{\ht\TP@blocktitlebox + \dp\TP@blocktitlebox +2\TP@blocktitleinnersep} +} + +\setbox\TP@blockbodybox=\hbox{ +\pgfinterruptpicture% +\parbox{\TP@blockbodywidth-2\TP@blockbodyinnersep-\TP@blockbodyoffsetx}{% +\vspace*{\TP@blockbodyverticalshift}\large\color{blockbodyfgcolor}\TP@blockbodyfont#3\par\normalsize}% +\endpgfinterruptpicture% +}% +\setlength{\TP@blockbodyheight}{\ht\TP@blockbodybox + \dp\TP@blockbodybox +2\TP@blockbodyinnersep} + +\node[minimum width=\TP@blocktitlewidth, minimum height=\TP@blocktitleheight, anchor=center] (blocktitle)% +at (\TP@blockcenter+\TP@blocktitleoffsetx, {\TP@blocktop-0.5\TP@blocktitleheight+\TP@blocktitleoffsety}){}; +\ifBlockHasTitle +\node[minimum width=\TP@blockbodywidth, minimum height=\TP@blockbodyheight, anchor=center] (blockbody)% +at (\TP@blockcenter+\TP@blockbodyoffsetx, {\TP@blocktop-\TP@blocktitleheight-0.5\TP@blockbodyheight+\TP@blockbodyoffsety}){}; +\else +\node[minimum width=\TP@blockbodywidth, minimum height=\TP@blockbodyheight, anchor=center] (blockbody)% +at (\TP@blockcenter+\TP@blockbodyoffsetx, {\TP@blocktop-\TP@blocktitleheight-0.5\TP@blockbodyheight}){}; +\fi + +\TP@blockstyle + +\ifBlockHasTitle +\node[text width=\TP@blocktitlewidth-2\TP@blocktitleinnersep, inner sep=\TP@blocktitleinnersep, anchor=center]% +at (blocktitle){\box\TP@blocktitlebox}; +\fi +\node[text width=\TP@blockbodywidth-2\TP@blockbodyinnersep, inner sep=\TP@blockbodyinnersep, anchor=center]% +at (blockbody){\box\TP@blockbodybox}; + +\draw let \p1 = (blockbody.south) in node { +\setlength{\TP@blocktop}{\y1-\TP@blockverticalspace} +\global\TP@blocktop=\TP@blocktop +}; +\ifTP@subcolumnEnvironment +\setlength{\TP@subcolbottom}{\minof{\TP@subcolbottom}{\TP@blocktop}} +\global\TP@subcolbottom=\TP@subcolbottom +\else +\ifTP@columnEnvironment +\setlength{\TP@colbottom}{\minof{\TP@colbottom}{\TP@blocktop}} +\global\TP@colbottom=\TP@colbottom +\fi +\fi +} + + % --------------------------------------- % + % Innerblock styles +\gdef\defineinnerblockstyle#1#2#3{ +\expandafter\gdef\csname TP@innerblockstyle#1Defaultvalues\endcsname{\gpresetkeys{innerblock}{#2}{}} +\expandafter\gdef\csname TP@innerblockstyle#1\endcsname{#3} +} + +\define@key{innerblock}{titlewidth}{\setlength{\TP@innerblocktitlewidth}{#1}} +\define@key{innerblock}{bodywidth}{\setlength{\TP@innerblockbodywidth}{#1}} +\define@key{innerblock}{titlewidthscale}{\setlength{\TP@innerblocktitlewidth}{#1\TP@innerblocktitlewidth}} +\define@key{innerblock}{bodywidthscale}{\setlength{\TP@innerblockbodywidth}{#1\TP@innerblockbodywidth}} +\define@boolkey{innerblock}{titleleft}[true]{\ifKV@innerblock@titleleft \gdef\TP@innerblocktitleAlignment{\raggedright} \fi} +\define@boolkey{innerblock}{titlecenter}[true]{\ifKV@innerblock@titlecenter \gdef\TP@innerblocktitleAlignment{\centering} \fi} +\define@boolkey{innerblock}{titleright}[true]{\ifKV@innerblock@titleright \gdef\TP@innerblocktitleAlignment{\raggedleft} \fi} +\define@key{innerblock}{titleoffsetx}{\TP@innerblocktitleoffsetx=#1} +\define@key{innerblock}{titleoffsety}{\TP@innerblocktitleoffsety=#1} +\define@key{innerblock}{bodyoffsetx}{\TP@innerblockbodyoffsetx=#1} +\define@key{innerblock}{bodyoffsety}{\TP@innerblockbodyoffsety=#1} +\define@key{innerblock}{bodyverticalshift}{\TP@innerblockbodyverticalshift=#1} +\define@key{innerblock}{roundedcorners}{\gdef\innerblockroundedcorners{#1}} +\define@key{innerblock}{linewidth}{\innerblocklinewidth=#1} +\define@key{innerblock}{titleinnersep}{\TP@innerblocktitleinnersep=#1 \innerblocktitleinnersep=#1} +\define@key{innerblock}{bodyinnersep}{\TP@innerblockbodyinnersep=#1 \innerblockbodyinnersep=#1} +\define@key{innerblock}{titlebgcolor}{\definecolor{innerblocktitlebgcolor}{named}{#1}} +\define@key{innerblock}{titlefgcolor}{\definecolor{innerblocktitlefgcolor}{named}{#1}} +\define@key{innerblock}{bodybgcolor}{\definecolor{innerblockbodybgcolor}{named}{#1}} +\define@key{innerblock}{bodyfgcolor}{\definecolor{innerblockbodyfgcolor}{named}{#1}} + +\newcommand\useinnerblockstyle[2][]{ +\ifcsname TP@innerblockstyle#2\endcsname +\csname TP@innerblockstyle#2Defaultvalues\endcsname\gpresetkeys{innerblock}{#1}{} % call macro +\gdef\TP@innerblockstyle{\csname TP@innerblockstyle#2\endcsname} % save macro +\else +\PackageWarning{tikzposter}{Unknown innerblockstyle `#2'.} +\fi +} + + % --------------------------------------- % + % Innerblock +\newcommand\innerblock[3][]{ % #1 keys #2 title #3 text +\definecolor{innerblocktitlebgcolorTemp}{named}{innerblocktitlebgcolor} +\definecolor{innerblocktitlefgcolorTemp}{named}{innerblocktitlefgcolor} +\definecolor{innerblockbodybgcolorTemp}{named}{innerblockbodybgcolor} +\definecolor{innerblockbodyfgcolorTemp}{named}{innerblockbodyfgcolor} +\setlength{\TP@innerblocktitlewidth}{\linewidth} +\setlength{\TP@innerblockbodywidth}{\linewidth} +\setkeys{innerblock}{#1} + +\begin{tikzpicture} + +\pgfmathsetlength{\TP@innerblockcenter}{max(\TP@innerblocktitlewidth,\TP@innerblockbodywidth)/2} + +\ifstrempty{#2}{ +\InnerblockHasTitlefalse +\setlength{\TP@innerblocktitleheight}{0pt} +}{ +\InnerblockHasTitletrue +\setbox\TP@innerblocktitlebox=\hbox{% +\pgfinterruptpicture% +\parbox{\TP@innerblocktitlewidth-2\TP@innerblocktitleinnersep}{% +\bfseries\color{innerblocktitlefgcolor}\TP@innerblocktitleAlignment#2\par\normalsize}% +\endpgfinterruptpicture% +} +\setlength{\TP@innerblocktitleheight}{\ht\TP@innerblocktitlebox + \dp\TP@innerblocktitlebox +2\TP@innerblocktitleinnersep} +} + +\setbox\TP@innerblockbodybox=\hbox{ +\pgfinterruptpicture% +\parbox{\TP@innerblockbodywidth-2\TP@innerblockbodyinnersep-\TP@innerblockbodyoffsetx}{% +\vspace*{\TP@innerblockbodyverticalshift}% +\color{innerblockbodyfgcolor}#3\par\normalsize}% +\endpgfinterruptpicture% +}% +\setlength{\TP@innerblockbodyheight}{\ht\TP@innerblockbodybox + \dp\TP@innerblockbodybox +2\TP@innerblockbodyinnersep} + +\node[minimum width=\TP@innerblocktitlewidth, minimum height=\TP@innerblocktitleheight, anchor=center] (innerblocktitle) +at (\TP@innerblockcenter+\TP@innerblocktitleoffsetx, {-0.5\TP@innerblocktitleheight+\TP@innerblocktitleoffsety}) {};% +\ifInnerblockHasTitle +\node[minimum width=\TP@innerblockbodywidth, minimum height=\TP@innerblockbodyheight, anchor=center] (innerblockbody) +at (\TP@innerblockcenter+\TP@innerblockbodyoffsetx, {-\TP@innerblocktitleheight-0.5\TP@innerblockbodyheight+\TP@innerblockbodyoffsety}) {};% +\else + \node[minimum width=\TP@innerblockbodywidth, minimum height=\TP@innerblockbodyheight, anchor=center] (innerblockbody) +at (\TP@innerblockcenter+\TP@innerblockbodyoffsetx, {-\TP@innerblocktitleheight-0.5\TP@innerblockbodyheight}) {};% +\fi + +\TP@innerblockstyle + +\ifInnerblockHasTitle +\node[text width=\TP@innerblocktitlewidth-2\TP@innerblocktitleinnersep, inner sep=\TP@innerblocktitleinnersep, anchor= center] +at (innerblocktitle) {\box\TP@innerblocktitlebox};% +\fi +\node[text width=\TP@innerblockbodywidth-2\TP@innerblockbodyinnersep, inner sep=\TP@innerblockbodyinnersep, anchor= center] +at (innerblockbody) {\box\TP@innerblockbodybox};% +\end{tikzpicture} + +\definecolor{innerblocktitlebgcolor}{named}{innerblocktitlebgcolorTemp} +\definecolor{innerblocktitlefgcolor}{named}{innerblocktitlefgcolorTemp} +\definecolor{innerblockbodybgcolor}{named}{innerblockbodybgcolorTemp} +\definecolor{innerblockbodyfgcolor}{named}{innerblockbodyfgcolorTemp} +} + + % --------------------------------------- % + % Coloredbox +\define@key{coloredbox}{width}{\setlength{\TP@coloredboxwidth}{#1}} +\define@key{coloredbox}{roundedcorners}{\gdef\TP@coloredboxroundedcorners{#1}} +\define@key{coloredbox}{linewidth}{\TP@coloredboxlinewidth=#1} +\define@key{coloredbox}{innersep}{\TP@coloredboxinnersep=#1} +\define@key{coloredbox}{bgcolor}{\definecolor{coloredboxbgcolorTemp}{named}{#1}} +\define@key{coloredbox}{fgcolor}{\definecolor{coloredboxfgcolorTemp}{named}{#1}} +\define@key{coloredbox}{framecolor}{\definecolor{coloredboxframecolorTemp}{named}{#1}} + +\newcommand\coloredbox[2][]{ % #1 keys #2 text +\setlength{\TP@coloredboxwidth}{\TP@blocktitlewidth-4\TP@blocktitleinnersep} +\setkeys{coloredbox}{% +width={\linewidth}, roundedcorners=15, linewidth=3.5pt, innersep=10pt, +bgcolor=notebgcolor, fgcolor=notefgcolor, framecolor=notebgcolor, #1} + +\begin{tikzpicture} +\setbox\TP@coloredbox=\hbox{ +\pgfinterruptpicture% +\parbox{\TP@coloredboxwidth-2\TP@coloredboxinnersep}{% +\color{coloredboxfgcolorTemp}#2\par\normalsize}% +\endpgfinterruptpicture% +}% +\setlength{\TP@coloredboxheight}{\ht\TP@coloredbox + \dp\TP@coloredbox +2\TP@coloredboxinnersep} + +\node[minimum width=\TP@coloredboxwidth, minimum height=\TP@coloredboxheight, anchor=center] (coloredbox) +at (0.5\TP@coloredboxwidth, -0.5\TP@coloredboxheight) {};% + +\begin{scope}[line width=\TP@coloredboxlinewidth, rounded corners=\TP@coloredboxroundedcorners] +\draw[color=coloredboxframecolorTemp, fill=coloredboxbgcolorTemp] (coloredbox.south west) rectangle (coloredbox.north east); +\end{scope} + +\node[text width=\TP@coloredboxwidth-2\TP@coloredboxinnersep, inner sep=\TP@coloredboxinnersep, anchor= center] +at (coloredbox) {\box\TP@coloredbox};% +\end{tikzpicture} + +\definecolor{coloredboxbgcolor}{named}{coloredboxbgcolorTemp} +\definecolor{coloredboxfgcolor}{named}{coloredboxfgcolorTemp} +} + + % --------------------------------------- % + % Note styles +\gdef\definenotestyle#1#2#3{ +\expandafter\gdef\csname TP@notestyle#1Defaultvalues\endcsname{\gpresetkeys{note}{#2}{}} +\expandafter\gdef\csname TP@notestyle#1\endcsname{#3} +} + +\define@key{note}{targetoffsetx}{\TP@notetargetoffsetx=#1} +\define@key{note}{targetoffsety}{\TP@notetargetoffsety=#1} +\define@key{note}{angle}{\def\TP@noteangle{#1}} +\define@key{note}{radius}{\TP@noteradius=#1} +\define@key{note}{width}{\TP@notewidth=#1} +\define@boolkey{note}{connection}[true]{\NoteHasConnectiontrue \ifKV@note@connection \NoteHasConnectiontrue \else \NoteHasConnectionfalse \fi} +\define@key{note}{rotate}{\gdef\noterotate{#1}} +\define@key{note}{roundedcorners}{\gdef\noteroundedcorners{#1}} +\define@key{note}{linewidth}{\notelinewidth=#1} +\define@key{note}{innersep}{\TP@noteinnersep=#1 \noteinnersep=#1} +\newcommand\usenotestyle[2][]{ +\ifcsname TP@notestyle#2\endcsname +\csname TP@notestyle#2Defaultvalues\endcsname\gpresetkeys{note}{#1}{} % call macro +\gdef\TP@notestyle{\csname TP@notestyle#2\endcsname} % save macro +\else +\PackageWarning{tikzposter}{Unknown notestyle `#2'.} +\fi +} + + % --------------------------------------- % + % Note +\newcommand\note[2][]{ % #1 keys #2 text +\normalsize +\setkeys{note}{#1} + +\setbox\TP@notebox=\hbox{% +\pgfinterruptpicture% +\parbox{\TP@notewidth-2\TP@noteinnersep}{\color{notefgcolor}#2\par\normalsize}% +\endpgfinterruptpicture% +}% +\setlength{\TP@noteheight}{\ht\TP@notebox + \dp\TP@notebox +2\TP@noteinnersep} +\pgfmathsetlength{\TP@noteheight}{max(\TP@noteheight,80pt)} + +\node (notetarget) at ($(blockbody)+(\TP@notetargetoffsetx,\TP@notetargetoffsety)$){}; +\node[minimum width=\TP@notewidth, minimum height=\TP@noteheight, anchor=center,rotate=\noterotate] (notecenter) +at ($(notetarget)+({\TP@noteradius*cos(\TP@noteangle)},{\TP@noteradius*sin(\TP@noteangle)})$){};% + +\begin{pgfonlayer}{notelayer} +\TP@notestyle +\node[text width=\TP@notewidth-2\TP@noteinnersep, inner sep=\TP@noteinnersep, anchor=center,rotate=\noterotate]% +at (notecenter){\box\TP@notebox}; +\end{pgfonlayer} +} + + % --------------------------------------- % + % Color palette +\gdef\definecolorpalette#1#2{\expandafter\gdef\csname TP@colorpalette#1\endcsname{#2}} + +\gdef\usecolorpalette#1{ +\ifcsname TP@colorpalette#1\endcsname + \csname TP@colorpalette#1\endcsname % call macro +\else +\PackageWarning{tikzposter}{Unknown color palette `#1'.} +\fi +} + + % --------------------------------------- % + % Color style +\gdef\definecolorstyle#1#2#3{ +\expandafter\gdef\csname TP@colorstyle#1Defaultvalues\endcsname{#2} +\expandafter\gdef\csname TP@colorstyle#1\endcsname{#3} +} + +\define@key{colors}{colorOne}{\colorlet{colorOne}{#1}} +\define@key{colors}{colorTwo}{\colorlet{colorTwo}{#1}} +\define@key{colors}{colorThree}{\colorlet{colorThree}{#1}} +\define@key{colors}{colorPalette}{\usecolorpalette{#1}} + +\newcommand\usecolorstyle[2][]{ % #1 keys #2 macroname +\ifcsname TP@colorstyle#2\endcsname + \csname TP@colorstyle#2Defaultvalues\endcsname % call macro + \setkeys{colors}{#1} % set keys + \csname TP@colorstyle#2\endcsname % call macro +\else +\PackageWarning{tikzposter}{Unknown color style `#2'.} +\fi +} + + % --------------------------------------- % + % Layouttheme +\gdef\definelayouttheme#1#2{\expandafter\gdef\csname TP@layouttheme#1\endcsname{#2}} + +\gdef\usetheme#1{ +\ifcsname TP@layouttheme#1\endcsname + \csname TP@layouttheme#1\endcsname % call macro +\else +\PackageWarning{tikzposter}{Unknown layouttheme `#1'.} +\fi +} + + % Input Style and Theme Files +\input{tikzposterColorpalettes} +\input{tikzposterColorstyles} +\input{tikzposterBackgroundstyles} +\input{tikzposterTitlestyles} +\input{tikzposterBlockstyles} +\input{tikzposterInnerblockstyles} +\input{tikzposterNotestyles} +\input{tikzposterLayoutthemes} + + % Set Default theme +\usetheme{Default} + + % --------------------------------------- % + % Columns environment +\newenvironment{columns}{ +\TP@columnEnvironmenttrue +\setlength{\TP@colcenter}{-0.5\TP@visibletextwidth-\TP@colspace-0.5\blocklinewidth} +\global\TP@colcenter=\TP@colcenter +\global\TP@coltop=\TP@blocktop +\global\TP@colbottom=\TP@blocktop +\colwidth=0pt +}{ +\TP@columnEnvironmentfalse +\global\TP@blocktop=\TP@colbottom +} + + % Column +\gdef\column#1{ % #1: relative width +\ifTP@columnEnvironment +\normalsize +\setlength{\TP@blocktop}{\TP@coltop} +\setlength{\TP@colcenter}{\TP@colcenter+0.5\colwidth+\TP@colspace} +\setlength{\colwidth}{#1\TP@visibletextwidth+#1\TP@colspace-\TP@colspace-\blocklinewidth} +\setlength{\TP@colcenter}{\TP@colcenter+0.5\colwidth+\blocklinewidth} +\fi +} + + % --------------------------------------- % + % Subcolumns environment +\newenvironment{subcolumns}{ +\ifTP@columnEnvironment +\TP@subcolumnEnvironmenttrue +\setlength{\TP@subcolcenter}{\TP@colcenter-0.5\colwidth-\TP@blockbodyinnersep-\TP@subcolspace-\TP@blockbodyinnersep} +\global\TP@subcolcenter=\TP@subcolcenter +\global\TP@subcoltop=\TP@blocktop +\global\TP@subcolbottom=\TP@blocktop +\subcolwidth=0pt +\fi +}{ +\TP@subcolumnEnvironmentfalse +\global\TP@blocktop=\TP@subcolbottom +} + + % Subcolumn +\gdef\subcolumn#1{ % #1: relative width +\ifTP@subcolumnEnvironment +\normalsize +\setlength{\TP@blocktop}{\TP@subcoltop} +\setlength{\TP@subcolcenter}{\TP@subcolcenter+0.5\subcolwidth+\TP@blockbodyinnersep+\TP@subcolspace+\TP@blockbodyinnersep} +\setlength{\subcolwidth}{#1\colwidth+#1\TP@blockbodyinnersep+#1\TP@blockbodyinnersep ++#1\TP@subcolspace-\TP@subcolspace-2\TP@blockbodyinnersep} +\setlength{\TP@subcolcenter}{\TP@subcolcenter+0.5\subcolwidth} +\fi +} + + % --------------------------------------- % + % Affection +\gdef\tikzposterlatexaffectionproofon{\TP@showlatexaffectiontrue} +\gdef\tikzposterlatexaffectionproofoff{\TP@showlatexaffectionfalse} +\TP@showlatexaffectiontrue + + % --------------------------------------- % + % Document environment +\AfterEndPreamble{% +\settototalheight{\titlegraphicheight}{\hbox{\@titlegraphic}} +\TP@titlegraphicToptrue +\noindent% +\begin{tikzpicture} +\coordinate (topright) at (0.5\textwidth, 0.5\textheight); +\coordinate (bottomleft) at (-0.5\textwidth, -0.5\textheight); +\clip (bottomleft) rectangle (topright); + +\begin{pgfonlayer}{backgroundlayer} +\clip (bottomleft) rectangle (topright); +\TP@backgroundstyle +\ifTP@showlatexaffection +\node[inner sep=4pt, anchor=south east, fill=white, draw=none, rounded corners=5, fill opacity=0.3, text opacity=1] +at (0.5\textwidth-7pt, -0.5\textheight+7pt){\footnotesize {\bfseries\textrm\LaTeX}~\textrm{Ti\emph{k}Z}\bfseries\textrm{poster}}; +\fi +\end{pgfonlayer} +} + +\AtEndDocument{% +\end{tikzpicture} +} + + % --------------------------------------- % + % Caption +\newenvironment{tikzfigure}[1][]{ +\def \rememberparameter{#1} +\addvspace{\medskipamount} +\begin{center} +}{ +\ifx\rememberparameter\@empty + % Nothing +\else +\\[10pt] +\captionof{figure}{\rememberparameter} +\fi +\end{center} +\addvspace{\medskipamount} +} +%% + + + +\endinput +%% +%% End of file `tikzposter.cls'. diff --git a/tikzposter.pdf b/tikzposter.pdf new file mode 100644 index 0000000..d2db703 Binary files /dev/null and b/tikzposter.pdf differ diff --git a/tikzposterBackgroundstyles.tex b/tikzposterBackgroundstyles.tex new file mode 100644 index 0000000..6415a65 --- /dev/null +++ b/tikzposterBackgroundstyles.tex @@ -0,0 +1,82 @@ +%% +%% This is file `tikzposterBackgroundstyles.tex', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% tikzposter.dtx (with options: `tikzposterBackgroundstyles.tex') +%% +%% This is a generated file. +%% +%% Copyright (C) 2014 by Pascal Richter, Elena Botoeva, Richard Barnard, and Dirk Surmann +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 2.1 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 2.1 or later is part of all distributions of +%% LaTeX version 2014/10/15 or later. +%% + + + + + + + + % Parameters + % \textwidth - length + % \textheight - length + % \titlegraphicheight - length + % \titletotopverticalspace - length + % \titleinnersep - length + % backgroundcolor - color + % topright - coordinate + % bottomleft - coordinate +\definebackgroundstyle{Default}{ +\fill[inner sep=0pt, line width=0pt, color=backgroundcolor]% +(bottomleft) rectangle (topright); +} + +\definebackgroundstyle{Rays}{ +\draw[line width=0pt, top color=backgroundcolor!70, bottom +color=backgroundcolor!70!black] (bottomleft) rectangle (topright); +\begin{scope} +\foreach \a in {10,20,...,80}{% +\draw[backgroundcolor, line width=0.15cm](bottomleft) -- +($(bottomleft)!1!(bottomleft)+(\a:120)$);% +} +\foreach \i in {1,2,...,50}{% +\begin{scope}[shift={($(rand*60,rand*70)$)}] +\draw[backgroundcolor!50!, line width=0.1cm] (0,0) circle (4); +\end{scope} +} +\end{scope} +} + +\definebackgroundstyle{VerticalGradation}{ +\draw[line width=0pt, bottom color=backgroundcolor, top + color=backgroundcolor!60!white] (bottomleft) rectangle (topright); +} + +\definebackgroundstyle{BottomVerticalGradation}{ +\draw[draw=none, line width=0pt, bottom color=titlebgcolor, top + color=framecolor] (bottomleft) rectangle ($(bottomleft)+(\textwidth,3)$); +} + +\definebackgroundstyle{Empty}{ +} + +\definebackgroundstyle{Backgroundgraphic}{ +\node(0,0){\TP@backgroundgraphic}; +} + + + + +\endinput +%% +%% End of file `tikzposterBackgroundstyles.tex'. diff --git a/tikzposterBlockstyles.tex b/tikzposterBlockstyles.tex new file mode 100644 index 0000000..46d11cb --- /dev/null +++ b/tikzposterBlockstyles.tex @@ -0,0 +1,223 @@ +%% +%% This is file `tikzposterBlockstyles.tex', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% tikzposter.dtx (with options: `tikzposterBlockstyles.tex') +%% +%% This is a generated file. +%% +%% Copyright (C) 2014 by Pascal Richter, Elena Botoeva, Richard Barnard, and Dirk Surmann +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 2.1 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 2.1 or later is part of all distributions of +%% LaTeX version 2014/10/15 or later. +%% + + + + + + + + % Options: + % titlewidthscale + % bodywidthscale + % titlecenter, titleleft, titleright + % titleoffsetx + % titleoffsety + % bodyoffsetx + % bodyoffsety + % bodyverticalshift + % roundedcorners + % linewidth + % titleinnersep + % bodyinnersep + + % Parameter: + % \ifBlockHasTitle - boolean + % blocktitle - coordinate + % blockbody - coordinate + % \blockroundedcorners - number + % \blocklinewidth - length + % \blockbodyinnersep - length + % \blocktitleinnersep - length + % blockbodybgcolor - color + % blocktitlebgcolor - color + % framecolor - color + + \defineblockstyle{Default}{ +titlewidthscale=1, bodywidthscale=1, titlecenter, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=0pt, roundedcorners=30, linewidth=0.4cm, +titleinnersep=1cm, bodyinnersep=1cm +}{ +\begin{scope}[line width=\blocklinewidth, rounded corners=\blockroundedcorners] +\ifBlockHasTitle % + \draw[color=blocktitlebgcolor, fill=blocktitlebgcolor] (blockbody.south west) rectangle (blocktitle.north east); + \draw[color=blocktitlebgcolor, fill=blockbodybgcolor] (blockbody.south west) rectangle (blockbody.north east); +\else + \draw[color=blocktitlebgcolor, fill=blockbodybgcolor] (blockbody.south west) rectangle (blockbody.north east); +\fi +\end{scope} +} + + \defineblockstyle{Basic}{ +titlewidthscale=0.8, bodywidthscale=1, titlecenter, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=15mm, +bodyverticalshift=15mm, roundedcorners=22, linewidth=5pt, +titleinnersep=8mm, bodyinnersep=8mm +}{ +\draw[rounded corners=\blockroundedcorners, inner sep=\blockbodyinnersep, line width=\blocklinewidth, color=framecolor, fill=blockbodybgcolor] +(blockbody.south west) rectangle (blockbody.north east); % +\ifBlockHasTitle% +\draw[rounded corners=\blockroundedcorners, inner sep=\blocktitleinnersep, line width=\blocklinewidth, color=framecolor, fill=blocktitlebgcolor] + (blocktitle.south west) rectangle (blocktitle.north east); % +\fi% +} + +\defineblockstyle{Minimal}{ +titlewidthscale=1, bodywidthscale=1, titleleft, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=0pt, roundedcorners=0, linewidth=0.2cm, +titleinnersep=1cm, bodyinnersep=1cm +}{ +\begin{scope}[line width=\blocklinewidth, rounded corners=\blockroundedcorners] + \ifBlockHasTitle % + \draw[draw=none]%, fill=blockbodybgcolor] + (blockbody.south west) rectangle (blocktitle.north east); + \draw[color=blocktitlebgcolor, loosely dashed] + (blocktitle.south west) -- (blocktitle.south east);% + \else + \draw[draw=none]%, fill=blockbodybgcolor] + (blockbody.south west) rectangle (blockbody.north east); +\fi +\end{scope} +} + +\defineblockstyle{Envelope}{ +titlewidthscale=1, bodywidthscale=1, titlecenter, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=0pt, roundedcorners=20, linewidth=1.6pt, +titleinnersep=1cm, bodyinnersep=1cm +}{ +\begin{scope}[rounded corners=\blockroundedcorners, line width=\blocklinewidth, + drop shadow={shadow xshift=0.3cm, shadow yshift=-0.3cm, opacity=0.3} ] +\ifBlockHasTitle + % the big rectangle + \draw[color=blocktitlebgcolor, fill=blockbodybgcolor, drop shadow] + (blockbody.south west) rectangle (blocktitle.north east);% + \begin{scope} + \clip (blocktitle.south west) rectangle (blocktitle.north east); + % fading on top + \fill[rounded corners=0, path fading=south, fill=blocktitlebgcolor, opacity=.4] + ($(blocktitle.south west)-(0.1,0)$) rectangle ($(blocktitle.north east)+(0.1,0)$); + % the trapezium + \draw[draw=none, bottom color=blocktitlebgcolor, top + color=blocktitlebgcolor!85!] % + ($(blocktitle.north west)+(0.25,0)$) -- ($(blocktitle.north west)+(0.75,0)$) -- % + ($(blocktitle.south west)+(2.5,0)$) -- ($(blocktitle.south east)-(2.5,0)$) -- % + ($(blocktitle.north east)-(0.75,0)$) -- ($(blocktitle.north east)-(0.25,0)$) -- cycle; + \end{scope} +\else + % No title + \draw[color=blocktitlebgcolor, fill=blockbodybgcolor] + (blockbody.south west) rectangle (blockbody.north east); +\fi +\end{scope} +} + +\defineblockstyle{Corner}{ +titlewidthscale=1, bodywidthscale=1, titleleft, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=0pt, roundedcorners=20, linewidth=1.2pt, +titleinnersep=1cm, bodyinnersep=1cm +}{ + % the shadow above the corner + \begin{scope} +\clip (blockbody.south west) rectangle (blocktitle.north east); +\begin{scope}[transform canvas={xshift=-1cm, yshift=-0.8cm, rotate +around={-20:($(blocktitle.north east)-(10,0)$)}}] + \fill[color=gray, path fading=north, opacity=0.8]% + ($(blocktitle.north east)-(10,1)$) rectangle ($(blocktitle.north east)+(2,2.3)$); +\end{scope} + \end{scope} + % + % the border + \def \border{% +[rounded corners=30] (blockbody.south west) -- (blocktitle.north west) % +[rounded corners=30] -- ($(blocktitle.north east)-(9.4,0)$) +[rounded corners=30] -- ($(blocktitle.north east)-(0,3.4)$) +[rounded corners=30] |- (blockbody.south west) -- cycle + } + \draw[line width=\blocklinewidth, color=blocktitlebgcolor, fill=blockbodybgcolor, + % drop shadow={shadow xshift=0.3cm, shadow yshift=-0.3cm, opacity=0.3} + ] \border; + % + % the corner + \begin{scope} +\def \corner{ ($(blocktitle.north east)-(0,6)$) -- ($(blocktitle.north east)-(0,4.5)$) .. % + controls ($(blocktitle.north east)-(-0,2.7)$) and ($(blocktitle.north east)-(2.8,2.2)$) + .. ($(blocktitle.north east)-(3.8,4.6)$) % + .. controls ($(blocktitle.north east)-(8.6,0)$) .. ($(blocktitle.north east)-(11.4,0)$) % + [rounded corners=30] -- ($(blocktitle.north east)-(9.4,0)$) % + [rounded corners=30] -- ($(blocktitle.north east)-(0,3.4)$) % + [rounded corners=0] -- ($(blocktitle.north east)-(0,6)$)} +\draw[blocktitlebgcolor] \corner; +\clip \corner; +\begin{scope}[transform canvas={xshift=-1cm, yshift=-1.3cm, rotate +around={-23:($(blocktitle.north east)-(10,0)$)}}] + \fill[color=blocktitlebgcolor!90] ($(blocktitle.north east) - (10,2)$) + rectangle ($(blocktitle.north east) + (2,3.6)$); % + \fill[color=blocktitlebgcolor , path fading=south, opacity=1] + ($(blocktitle.north east) - (10,-1.2)$) rectangle ($(blocktitle.north east) + (2,1.6)$); % + \fill[color=blocktitlebgcolor , path fading=north, opacity=1] + ($(blocktitle.north east) - (10,-1.6)$) rectangle ($(blocktitle.north east) + (2,2.1)$); +\end{scope} + \end{scope}% +} + +\defineblockstyle{Slide}{ +titlewidthscale=1, bodywidthscale=1, titleleft, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=0pt, roundedcorners=0, linewidth=0pt, titleinnersep=1cm, +bodyinnersep=1cm +}{ +\ifBlockHasTitle% +\draw[draw=none, left color=blocktitlebgcolor, right color=blockbodybgcolor] + (blocktitle.south west) rectangle (blocktitle.north east); +\fi% +\draw[draw=none, fill=blockbodybgcolor] % +(blockbody.north west) [rounded corners=30] -- (blockbody.south west) -- +(blockbody.south east) [rounded corners=0]-- (blockbody.north east) -- cycle; +} + +\defineblockstyle{TornOut}{ +titlewidthscale=1, bodywidthscale=1, titlecenter, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=-1.2cm, roundedcorners=0, linewidth=1.2pt, +titleinnersep=1cm, bodyinnersep=1cm +}{ +\ifBlockHasTitle% +\coordinate (topright) at (blocktitle.north east); +\else +\coordinate (topright) at (blockbody.north east); +\fi% +\draw[color=blocktitlebgcolor, fill=blockbodybgcolor,% +line width=\blocklinewidth, drop shadow={shadow xshift=0.2cm, shadow yshift=-0.2cm,opacity=0.3}, % +decorate, decoration={random steps,segment length=1.5cm,amplitude=0.15cm} +] (blockbody.south west) rectangle (topright);% +} + + + +\endinput +%% +%% End of file `tikzposterBlockstyles.tex'. diff --git a/tikzposterColorpalettes.tex b/tikzposterColorpalettes.tex new file mode 100644 index 0000000..b6f27f3 --- /dev/null +++ b/tikzposterColorpalettes.tex @@ -0,0 +1,64 @@ +%% +%% This is file `tikzposterColorpalettes.tex', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% tikzposter.dtx (with options: `tikzposterColorpalettes.tex') +%% +%% This is a generated file. +%% +%% Copyright (C) 2014 by Pascal Richter, Elena Botoeva, Richard Barnard, and Dirk Surmann +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 2.1 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 2.1 or later is part of all distributions of +%% LaTeX version 2014/10/15 or later. +%% + + + + + + + + + + +\definecolorpalette{Default}{ +\definecolor{colorOne}{HTML}{DDDDDD} +\definecolor{colorTwo}{HTML}{0066A8} +\definecolor{colorThree}{HTML}{FCF0AD} +} + +\definecolorpalette{BlueGrayOrange}{ +\definecolor{colorOne}{HTML}{116699} +\definecolor{colorTwo}{HTML}{CCCCCC} +\definecolor{colorThree}{HTML}{CC6633} +} + +\definecolorpalette{GreenGrayViolet}{ +\definecolor{colorOne}{HTML}{A2E2C7} +\definecolor{colorTwo}{HTML}{56555A} +\definecolor{colorThree}{HTML}{C9AECF} +} + +\definecolorpalette{PurpleGrayBlue}{ +\definecolor{colorOne}{HTML}{AE0D45} +\definecolor{colorTwo}{HTML}{7F8897} +\definecolor{colorThree}{HTML}{006C9E} +} + +\definecolorpalette{BrownBlueOrange}{ +\definecolor{colorOne}{HTML}{8C7269} +\definecolor{colorTwo}{HTML}{A2C4D9} +\definecolor{colorThree}{HTML}{E89261} +} +\endinput +%% +%% End of file `tikzposterColorpalettes.tex'. diff --git a/tikzposterColorstyles.tex b/tikzposterColorstyles.tex new file mode 100644 index 0000000..945c70a --- /dev/null +++ b/tikzposterColorstyles.tex @@ -0,0 +1,210 @@ +%% +%% This is file `tikzposterColorstyles.tex', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% tikzposter.dtx (with options: `tikzposterColorstyles.tex') +%% +%% This is a generated file. +%% +%% Copyright (C) 2014 by Pascal Richter, Elena Botoeva, Richard Barnard, and Dirk Surmann +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 2.1 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 2.1 or later is part of all distributions of +%% LaTeX version 2014/10/15 or later. +%% + + + + + + + +\definecolorstyle{Default}{ +\definecolor{colorOne}{HTML}{DDDDDD} +\definecolor{colorTwo}{HTML}{0066A8} +\definecolor{colorThree}{HTML}{FCE565}%FCF0AD} +}{ +\colorlet{backgroundcolor}{colorOne} +\colorlet{framecolor}{colorTwo} +\colorlet{titlefgcolor}{black} +\colorlet{titlebgcolor}{white} +\colorlet{blocktitlebgcolor}{colorTwo} +\colorlet{blocktitlefgcolor}{white} +\colorlet{blockbodybgcolor}{white} +\colorlet{blockbodyfgcolor}{black} +\colorlet{innerblocktitlebgcolor}{colorThree} +\colorlet{innerblocktitlefgcolor}{black} +\colorlet{innerblockbodybgcolor}{white} +\colorlet{innerblockbodyfgcolor}{black} +\colorlet{notefgcolor}{black} +\colorlet{notebgcolor}{colorThree!70!white} +\colorlet{notefrcolor}{colorThree} + } + +\definecolorstyle{Australia}{ +\definecolor{colorOne}{HTML}{A2E2C7} +\definecolor{colorTwo}{HTML}{56555A} +\definecolor{colorThree}{HTML}{C9AECF} +}{ +\colorlet{backgroundcolor}{colorOne} +\colorlet{framecolor}{colorOne!50!colorTwo} +\colorlet{titlefgcolor}{black} +\colorlet{titlebgcolor}{white} +\colorlet{blocktitlebgcolor}{colorTwo} +\colorlet{blocktitlefgcolor}{white} +\colorlet{blockbodybgcolor}{white} +\colorlet{blockbodyfgcolor}{black} +\colorlet{innerblocktitlebgcolor}{colorThree} +\colorlet{innerblocktitlefgcolor}{black} +\colorlet{innerblockbodybgcolor}{white} +\colorlet{innerblockbodyfgcolor}{black} +\colorlet{notefgcolor}{black} +\colorlet{notebgcolor}{colorThree} +\colorlet{notefrcolor}{colorThree} + } + +\definecolorstyle{Britain}{ +\definecolor{colorOne}{HTML}{116699} +\definecolor{colorTwo}{HTML}{CCCCCC} +\definecolor{colorThree}{HTML}{CC6633} +}{ +\colorlet{backgroundcolor}{colorOne} +\colorlet{framecolor}{colorTwo} +\colorlet{titlefgcolor}{black} +\colorlet{titlebgcolor}{white} +\colorlet{blocktitlebgcolor}{colorTwo} +\colorlet{blocktitlefgcolor}{colorOne} +\colorlet{blockbodybgcolor}{white} +\colorlet{blockbodyfgcolor}{black} +\colorlet{innerblocktitlebgcolor}{colorThree} +\colorlet{innerblocktitlefgcolor}{white} +\colorlet{innerblockbodybgcolor}{white} +\colorlet{innerblockbodyfgcolor}{black} +\colorlet{notefgcolor}{black} +\colorlet{notebgcolor}{colorThree!40!white} +\colorlet{notefrcolor}{colorThree!60!white} + } + +\definecolorstyle{Sweden}{ +\definecolor{colorOne}{HTML}{116699} +\definecolor{colorTwo}{HTML}{CCCCCC} +\definecolor{colorThree}{HTML}{CC6633} +}{ +\colorlet{backgroundcolor}{colorOne!40!white} +\colorlet{framecolor}{colorTwo} +\colorlet{titlefgcolor}{black} +\colorlet{titlebgcolor}{white} +\colorlet{blocktitlebgcolor}{colorTwo!70!black} +\colorlet{blocktitlefgcolor}{colorOne} +\colorlet{blockbodybgcolor}{white!90!colorTwo} +\colorlet{blockbodyfgcolor}{black} +\colorlet{innerblocktitlebgcolor}{colorThree} +\colorlet{innerblocktitlefgcolor}{white} +\colorlet{innerblockbodybgcolor}{white} +\colorlet{innerblockbodyfgcolor}{black} +\colorlet{notefgcolor}{black} +\colorlet{notebgcolor}{colorThree!50!white} +\colorlet{notefrcolor}{colorThree!50!white} + } + +\definecolorstyle{Spain}{ +\definecolor{colorOne}{HTML}{116699} +\definecolor{colorTwo}{HTML}{CCCCCC} +\definecolor{colorThree}{HTML}{CC6633} +}{ +\colorlet{backgroundcolor}{colorOne!55!white} +\colorlet{framecolor}{colorTwo} +\colorlet{titlefgcolor}{white} +\colorlet{titlebgcolor}{colorOne} +\colorlet{blocktitlebgcolor}{colorOne!80!black} +\colorlet{blocktitlefgcolor}{white} +\colorlet{blockbodybgcolor}{white} +\colorlet{blockbodyfgcolor}{black} +\colorlet{innerblocktitlebgcolor}{colorThree} +\colorlet{innerblocktitlefgcolor}{white} +\colorlet{innerblockbodybgcolor}{white} +\colorlet{innerblockbodyfgcolor}{black} +\colorlet{notefgcolor}{black} +\colorlet{notebgcolor}{colorThree!50!white} +\colorlet{notefrcolor}{colorThree} + } + +\definecolorstyle{Russia}{ +\definecolor{colorOne}{HTML}{116699} +\definecolor{colorTwo}{HTML}{CCCCCC} +\definecolor{colorThree}{HTML}{CC6633} +}{ +\colorlet{backgroundcolor}{white} +\colorlet{framecolor}{colorOne!50!colorThree!30!} +\colorlet{titlefgcolor}{white} +\colorlet{titlebgcolor}{colorOne!70!black} +\colorlet{blocktitlebgcolor}{colorThree!80!colorTwo!80!black} +\colorlet{blocktitlefgcolor}{white} +\colorlet{blockbodybgcolor}{colorTwo!40} +\colorlet{blockbodyfgcolor}{black} +\colorlet{innerblocktitlebgcolor}{colorTwo!40} +\colorlet{innerblocktitlefgcolor}{black} +\colorlet{innerblockbodybgcolor}{colorTwo} +\colorlet{innerblockbodyfgcolor}{black} +\colorlet{notefgcolor}{black} +\colorlet{notebgcolor}{colorTwo} +\colorlet{notefrcolor}{colorTwo} + } + +\definecolorstyle{Denmark}{ +\definecolor{colorOne}{HTML}{AE0D45} +\definecolor{colorTwo}{HTML}{7F8897} +\definecolor{colorThree}{HTML}{006C9E} +}{ +\colorlet{backgroundcolor}{white} +\colorlet{framecolor}{white} +\colorlet{titlebgcolor}{colorOne} +\colorlet{titlefgcolor}{white} +\colorlet{blocktitlebgcolor}{colorTwo} +\colorlet{blocktitlefgcolor}{colorOne} +\colorlet{blockbodybgcolor}{white} +\colorlet{blockbodyfgcolor}{black} +\colorlet{innerblocktitlebgcolor}{colorThree} +\colorlet{innerblocktitlefgcolor}{white} +\colorlet{innerblockbodybgcolor}{white} +\colorlet{innerblockbodyfgcolor}{black} +\colorlet{notefgcolor}{black} +\colorlet{notebgcolor}{colorTwo!50!white} +\colorlet{notefrcolor}{colorTwo!50!white} + } + +\definecolorstyle{Germany}{ +\definecolor{colorOne}{HTML}{8C7269} +\definecolor{colorTwo}{HTML}{E89261} +\definecolor{colorThree}{HTML}{A2C4D9} +}{ +\colorlet{backgroundcolor}{colorTwo} +\colorlet{framecolor}{colorThree} +\colorlet{titlebgcolor}{colorOne} +\colorlet{titlefgcolor}{white} +\colorlet{blocktitlebgcolor}{white} +\colorlet{blocktitlefgcolor}{colorOne} +\colorlet{blockbodybgcolor}{white} +\colorlet{blockbodyfgcolor}{black} +\colorlet{innerblocktitlebgcolor}{white} +\colorlet{innerblocktitlefgcolor}{black} +\colorlet{innerblockbodybgcolor}{colorThree} +\colorlet{innerblockbodyfgcolor}{black} +\colorlet{notefgcolor}{black} +\colorlet{notebgcolor}{colorThree} +\colorlet{notefrcolor}{colorThree} +} + + + +\endinput +%% +%% End of file `tikzposterColorstyles.tex'. diff --git a/tikzposterInnerblockstyles.tex b/tikzposterInnerblockstyles.tex new file mode 100644 index 0000000..23c51f7 --- /dev/null +++ b/tikzposterInnerblockstyles.tex @@ -0,0 +1,272 @@ +%% +%% This is file `tikzposterInnerblockstyles.tex', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% tikzposter.dtx (with options: `tikzposterInnerblockstyles.tex') +%% +%% This is a generated file. +%% +%% Copyright (C) 2014 by Pascal Richter, Elena Botoeva, Richard Barnard, and Dirk Surmann +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 2.1 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 2.1 or later is part of all distributions of +%% LaTeX version 2014/10/15 or later. +%% + + + + + + + + + + + + % Options: + % titlewidth + % bodywidth + % titlewidthscale + % bodywidthscale + % titlecenter, titleleft, titleright + % titleoffsetx + % titleoffsety + % bodyoffsetx + % bodyoffsety + % bodyverticalshift + % roundedcorners + % linewidth + % titleinnersep + % bodyinnersep + + % Parameter: + % \ifInnerblockHasTitle - boolean + % innerblocktitle - coordinate + % innerblockbody - coordinate + % \innerblockroundedcorners - number + % \innerblocklinewidth - length + % \innerblockbodyinnersep - length + % \innerblocktitleinnersep - length + % innerblockbodybgcolor - color + % innerblocktitlebgcolor - color + % framecolor - color + +\defineinnerblockstyle{Default}{ +titlewidthscale=1, bodywidthscale=1, titlecenter, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=0pt, roundedcorners=20, linewidth=4pt, +titleinnersep=10pt, bodyinnersep=12pt +}{ +\begin{scope}[line width=\innerblocklinewidth, rounded + corners=\innerblockroundedcorners, solid] +\ifInnerblockHasTitle % + \draw[color=innerblocktitlebgcolor, fill=innerblocktitlebgcolor] + (innerblockbody.south west) rectangle (innerblocktitle.north east); + \draw[color=innerblocktitlebgcolor, fill=innerblockbodybgcolor] + (innerblockbody.south west) rectangle (innerblockbody.north east); +\else + \draw[color=innerblocktitlebgcolor, fill=innerblockbodybgcolor] + (innerblockbody.south west) rectangle (innerblockbody.north east); +\fi +\end{scope} +} + +\defineinnerblockstyle{Table}{ +titlewidthscale=0.25, bodywidthscale=0.75, titleleft, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=0pt, roundedcorners=15, linewidth=3mm, +titleinnersep=15pt, bodyinnersep=15pt +}{ + % minimum height should be the maximum of \TP@innerblocktitleheight and + % \TP@innerblockbodyheight + \node[minimum width=\TP@innerblocktitlewidth, minimum + height=\TP@innerblockbodyheight, anchor=center] (innerblocktitle) at + (\TP@innerblockcenter-0.5\TP@innerblockbodywidth+\TP@innerblocktitleoffsetx, + {-\TP@innerblocktitleheight-0.5\TP@innerblockbodyheight+\TP@innerblocktitleoffsety}) + {};% + % + \ifInnerblockHasTitle% + \node[minimum width=\TP@innerblockbodywidth, minimum + height=\TP@innerblockbodyheight, anchor=center] (innerblockbody) at + (\TP@innerblockcenter+0.5\TP@innerblocktitlewidth+\TP@innerblockbodyoffsetx, + {-\TP@innerblocktitleheight-0.5\TP@innerblockbodyheight+\TP@innerblockbodyoffsety}) + {};% + % + \else% + \node[minimum width=\TP@innerblockbodywidth, minimum + height=\TP@innerblockbodyheight, anchor=center] (innerblockbody) at + (\TP@innerblockcenter+\TP@innerblockbodyoffsetx, + {-\TP@innerblocktitleheight-0.5\TP@innerblockbodyheight}) {};% + \fi + \begin{scope}[rounded corners=\innerblockroundedcorners, line width=\innerblocklinewidth] +\ifInnerblockHasTitle + % the big rectangle +\draw[color=innerblocktitlebgcolor, fill=innerblockbodybgcolor] +(innerblocktitle.north west) rectangle (innerblockbody.south east);% +\draw[color=innerblocktitlebgcolor] (innerblocktitle.south east) -- +(innerblocktitle.north east); % +\else + % No title + \draw[color=innerblocktitlebgcolor, fill=innerblockbodybgcolor] + (innerblockbody.south west) rectangle (innerblockbody.north east); +\fi +\end{scope} +} + + \defineinnerblockstyle{Basic}{ +titlewidthscale=0.8, bodywidthscale=1, titlecenter, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=6mm, +bodyverticalshift=6mm, roundedcorners=14, linewidth=2pt, +titleinnersep=8pt, bodyinnersep=8pt +}{ +\draw[rounded corners=\innerblockroundedcorners, inner sep=\innerblockbodyinnersep, line width=\innerblocklinewidth, color=framecolor, fill=innerblockbodybgcolor] +(innerblockbody.south west) rectangle (innerblockbody.north east); % +\ifInnerblockHasTitle% +\draw[rounded corners=\innerblockroundedcorners, inner sep=\innerblocktitleinnersep, line width=\innerblocklinewidth, color=framecolor, fill=innerblocktitlebgcolor] + (innerblocktitle.south west) rectangle (innerblocktitle.north east); % +\fi% +} + +\defineinnerblockstyle{Minimal}{ +titlewidthscale=1, bodywidthscale=1, titleleft, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=0pt, roundedcorners=0, linewidth=1.5mm, +titleinnersep=10pt, bodyinnersep=10pt +}{ +\begin{scope}[line width=\innerblocklinewidth, rounded corners=\innerblockroundedcorners] + \ifInnerblockHasTitle % + \draw[draw=none, fill=innerblockbodybgcolor] + (innerblockbody.south west) rectangle (innerblocktitle.north east); + \draw[color=innerblocktitlebgcolor, loosely dashed] + (innerblocktitle.south west) -- (innerblocktitle.south east);% + \else + \draw[draw=none, fill=innerblockbodybgcolor] + (innerblockbody.south west) rectangle (innerblockbody.north east); +\fi +\end{scope} +} + +\defineinnerblockstyle{Envelope}{ +titlewidthscale=1, bodywidthscale=1, titlecenter, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=0pt, roundedcorners=20, linewidth=1.3pt, +titleinnersep=10pt, bodyinnersep=10pt +}{ +\begin{scope}[rounded corners=\innerblockroundedcorners, line width=\innerblocklinewidth, + drop shadow={shadow xshift=0.3cm, shadow yshift=-0.3cm, opacity=0.3} ] +\ifInnerblockHasTitle + % the big rectangle + \draw[color=innerblocktitlebgcolor, fill=innerblockbodybgcolor, drop shadow] + (innerblockbody.south west) rectangle (innerblocktitle.north east);% + \begin{scope} + \clip (innerblocktitle.south west) rectangle (innerblocktitle.north east); + % fading on top + \fill[rounded corners=0, path fading=south, fill=innerblocktitlebgcolor, opacity=.4] + ($(innerblocktitle.south west)-(0.1,0)$) rectangle ($(innerblocktitle.north east)+(0.1,0)$); + % the trapezium + \draw[draw=none, bottom color=innerblocktitlebgcolor, top + color=innerblocktitlebgcolor!85!] % + ($(innerblocktitle.north west)+(0.25,0)$) -- ($(innerblocktitle.north west)+(0.75,0)$) -- % + ($(innerblocktitle.south west)+(2.5,0)$) -- ($(innerblocktitle.south east)-(2.5,0)$) -- % + ($(innerblocktitle.north east)-(0.75,0)$) -- ($(innerblocktitle.north east)-(0.25,0)$) -- cycle; + \end{scope} +\else + % No title + \draw[color=innerblocktitlebgcolor, fill=innerblockbodybgcolor] + (innerblockbody.south west) rectangle (innerblockbody.north east); +\fi +\end{scope} +} + +\defineinnerblockstyle{Corner}{ +titlewidthscale=1, bodywidthscale=1, titleleft, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=0pt, roundedcorners=8, linewidth=1pt, +titleinnersep=10pt, bodyinnersep=10pt +}{ + % the shadow above the corner + \begin{scope} +\clip (innerblockbody.south west) rectangle (innerblocktitle.north east); +\begin{scope}[transform canvas={xshift=-1cm, yshift=-0.8cm, rotate +around={-20:($(innerblocktitle.north east)-(10,0)$)}}] + \fill[color=gray, path fading=north, opacity=0.8]% + ($(innerblocktitle.north east)-(10,1)$) rectangle ($(innerblocktitle.north east)+(2,2.3)$); +\end{scope} + \end{scope} + % + % the border + \def \border{% +[rounded corners=30] (innerblockbody.south west) -- (innerblocktitle.north west) % +[rounded corners=30] -- ($(innerblocktitle.north east)-(9.4,0)$) +[rounded corners=30] -- ($(innerblocktitle.north east)-(0,3.4)$) +[rounded corners=30] |- (innerblockbody.south west) -- cycle + } + \draw[line width=\innerblocklinewidth, color=innerblocktitlebgcolor, fill=innerblockbodybgcolor, + % drop shadow={shadow xshift=0.3cm, shadow yshift=-0.3cm, opacity=0.3} + ] \border; + % + % the corner + \begin{scope} +\def \corner{ ($(innerblocktitle.north east)-(0,6)$) -- ($(innerblocktitle.north east)-(0,4.5)$) .. % + controls ($(innerblocktitle.north east)-(-0,2.7)$) and ($(innerblocktitle.north east)-(2.8,2.2)$) + .. ($(innerblocktitle.north east)-(3.8,4.6)$) % + .. controls ($(innerblocktitle.north east)-(8.6,0)$) .. ($(innerblocktitle.north east)-(11.4,0)$) % + [rounded corners=30] -- ($(innerblocktitle.north east)-(9.4,0)$) % + [rounded corners=30] -- ($(innerblocktitle.north east)-(0,3.4)$) % + [rounded corners=0] -- ($(innerblocktitle.north east)-(0,6)$)} +\draw[innerblocktitlebgcolor] \corner; +\clip \corner; +\begin{scope}[transform canvas={xshift=-1cm, yshift=-1.3cm, rotate +around={-23:($(innerblocktitle.north east)-(10,0)$)}}] + \fill[color=innerblocktitlebgcolor!90] ($(innerblocktitle.north east) - (10,2)$) + rectangle ($(innerblocktitle.north east) + (2,3.6)$); % + \fill[color=innerblocktitlebgcolor , path fading=south, opacity=1] + ($(innerblocktitle.north east) - (10,-1.2)$) rectangle ($(innerblocktitle.north east) + (2,1.6)$); % + \fill[color=innerblocktitlebgcolor , path fading=north, opacity=1] + ($(innerblocktitle.north east) - (10,-1.6)$) rectangle ($(innerblocktitle.north east) + (2,2.1)$); +\end{scope} + \end{scope}% +} + +\defineinnerblockstyle{Slide}{ +titlewidthscale=1, bodywidthscale=1, titleleft, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=0pt, roundedcorners=0, linewidth=0pt, +titleinnersep=10pt, bodyinnersep=10pt +}{ +\ifInnerblockHasTitle% +\draw[draw=none, left color=innerblocktitlebgcolor, right color=innerblockbodybgcolor] + (innerblocktitle.south west) rectangle (innerblocktitle.north east); +\fi% +\draw[draw=none, fill=innerblockbodybgcolor] % +(innerblockbody.north west) [rounded corners=30] -- (innerblockbody.south west) -- +(innerblockbody.south east) [rounded corners=0]-- (innerblockbody.north east) -- cycle; +} + +\defineinnerblockstyle{TornOut}{ +titlewidthscale=1, bodywidthscale=1, titlecenter, +titleoffsetx=0pt, titleoffsety=0pt, bodyoffsetx=0pt, bodyoffsety=0pt, +bodyverticalshift=-1.2cm, roundedcorners=0, linewidth=1pt, +titleinnersep=10pt, bodyinnersep=10pt +}{ +\ifInnerblockHasTitle% +\coordinate (topright) at (innerblocktitle.north east); +\else +\coordinate (topright) at (innerblockbody.north east); +\fi% +\draw[color=innerblocktitlebgcolor, fill=innerblockbodybgcolor,% +line width=\innerblocklinewidth, drop shadow={shadow xshift=0.2cm, shadow yshift=-0.2cm,opacity=0.3}, % +decorate, decoration={random steps,segment length=1.5cm,amplitude=0.15cm} +] (innerblockbody.south west) rectangle (topright);% +} +\endinput +%% +%% End of file `tikzposterInnerblockstyles.tex'. diff --git a/tikzposterLayoutthemes.tex b/tikzposterLayoutthemes.tex new file mode 100644 index 0000000..9524f95 --- /dev/null +++ b/tikzposterLayoutthemes.tex @@ -0,0 +1,117 @@ +%% +%% This is file `tikzposterLayoutthemes.tex', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% tikzposter.dtx (with options: `tikzposterLayoutthemes.tex') +%% +%% This is a generated file. +%% +%% Copyright (C) 2014 by Pascal Richter, Elena Botoeva, Richard Barnard, and Dirk Surmann +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 2.1 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 2.1 or later is part of all distributions of +%% LaTeX version 2014/10/15 or later. +%% + + + + + + + + +\definelayouttheme{Default}{ +\usecolorstyle{Default} +\usebackgroundstyle{Default} +\usetitlestyle{Default} +\useblockstyle{Default} +\useinnerblockstyle{Default} +\usenotestyle{Default} +} + +\definelayouttheme{Rays}{ +\usecolorstyle[colorPalette=BlueGrayOrange]{Britain} +\usebackgroundstyle{Rays} +\usetitlestyle{Default} +\useblockstyle{Default} +\useinnerblockstyle{Default} +\usenotestyle{Corner} +} + +\definelayouttheme{Basic}{ +\usecolorstyle[colorPalette=GreenGrayViolet]{Australia} +\usebackgroundstyle{Default} +\usetitlestyle{Basic} +\useblockstyle{Basic} +\useinnerblockstyle{Default} +\usenotestyle{Default} +} + +\definelayouttheme{Simple}{ +\usecolorstyle[colorPalette=PurpleGrayBlue]{Denmark} +\usebackgroundstyle{Default} +\usetitlestyle{Default} +\useblockstyle{Minimal} +\useinnerblockstyle{Default} +\usenotestyle{Default} +} + +\definelayouttheme{Envelope}{ +\usecolorstyle[colorPalette=BlueGrayOrange]{Spain} +\usebackgroundstyle{VerticalGradation} +\usetitlestyle{Envelope} +\useblockstyle{Envelope} +\useinnerblockstyle{Default} +\usenotestyle{VerticalShading} + } + +\definelayouttheme{Wave}{ +\usecolorstyle[colorPalette=BlueGrayOrange]{Spain} +\colorlet{blocktitlefgcolor}{colorOne} +\usebackgroundstyle{VerticalGradation} +\usetitlestyle{Wave} +\useblockstyle{Corner} +\useinnerblockstyle{Default} +\usenotestyle{VerticalShading} + } + +\definelayouttheme{Board}{ +\usecolorstyle[colorPalette=BlueGrayOrange]{Sweden} +\usebackgroundstyle{VerticalGradation} +\usetitlestyle{Empty} +\useblockstyle{TornOut} +\useinnerblockstyle{Default} +\usenotestyle{Sticky} +} + +\definelayouttheme{Autumn}{ +\usecolorstyle[colorPalette=BrownBlueOrange]{Germany} +\usebackgroundstyle{Default} +\usetitlestyle{Filled} +\useblockstyle{Slide} +\useinnerblockstyle{Table} +\usenotestyle{Default} +} + +\definelayouttheme{Desert}{ +\usecolorstyle[colorPalette=GrayOrangeBlue]{Russia} +\usebackgroundstyle{BottomVerticalGradation} +\usetitlestyle{VerticalShading} +\useblockstyle{Slide} +\useinnerblockstyle{Table} +\usenotestyle{Default} +} + + + +\endinput +%% +%% End of file `tikzposterLayoutthemes.tex'. diff --git a/tikzposterNotestyles.tex b/tikzposterNotestyles.tex new file mode 100644 index 0000000..f152482 --- /dev/null +++ b/tikzposterNotestyles.tex @@ -0,0 +1,213 @@ +%% +%% This is file `tikzposterNotestyles.tex', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% tikzposter.dtx (with options: `tikzposterNotestyles.tex') +%% +%% This is a generated file. +%% +%% Copyright (C) 2014 by Pascal Richter, Elena Botoeva, Richard Barnard, and Dirk Surmann +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 2.1 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 2.1 or later is part of all distributions of +%% LaTeX version 2014/10/15 or later. +%% + + + + + + + + + % Options: + % targetoffsetx + % targetoffsety + % angle + % radius + % width + % connection + % rotate + % roundedcorners + % linewidth + % innersep + + % Parameter: + % \ifNoteHasConnection - boolean + % notecenter - coordinate + % notetarget - coordinate + % \noterotate - number + % \noteroundedcorners - number + % \notelinewidth - length + % \noteinnersep - length + % notebgcolor - color + % notefgcolor - color + % notefrcolor - color + +\definenotestyle{Default}{ +targetoffsetx=0pt, targetoffsety=0pt, angle=0, radius=8cm, width=8cm, +connection=false, rotate=0, roundedcorners=20, linewidth=0pt, innersep=1cm +}{ +\ifNoteHasConnection %% callout note +\draw[color=notefrcolor, fill=notebgcolor]% + (notetarget) -- ($(notetarget)!1!4:(notecenter.center)$) -- + ($(notetarget)!1!-4:(notecenter.center)$) --cycle; % + % +\fi +\draw[color=notefrcolor, fill=notebgcolor, rounded +corners=\noteroundedcorners] (notecenter.south west) -- (notecenter.north +west) -- (notecenter.north east) -- (notecenter.south east) -- cycle; +} + + \definenotestyle{Corner}{ +targetoffsetx=0pt, targetoffsety=0pt, angle=0, radius=8cm, width=12cm, +connection=false, rotate=0, roundedcorners=20, linewidth=0pt, innersep=1cm +}{ +\ifNoteHasConnection % callout note + \draw[color=notebgcolor, fill=notebgcolor, drop shadow={shadow +xshift=0.2cm, shadow yshift=-0.2cm, opacity=0.3}] % +(notetarget) -- ($(notetarget)!1!4:(notecenter.center)$) -- + ($(notetarget)!1!-4:(notecenter.center)$) --cycle; % +\fi +\def \border{% +[rounded corners=0] (notecenter.south west) -- (notecenter.north west) % +[rounded corners=\noteroundedcorners] -- ($(notecenter.north +east)-(\noterotate:4.7)$) % +[rounded corners=\noteroundedcorners] -- ($(notecenter.north +east)+(-90+\noterotate:1.7)$) % +[rounded corners=0] -- (notecenter.south east) -- (notecenter.south +west) -- cycle% + } +\fill[color=notebgcolor] \border; +\coordinate (x) at (\noterotate:1); +\coordinate (y) at (\noterotate-90:1); +\fill[color=gray,opacity=0.3] ($(notecenter.north east)+3*(y)$) -- +($(notecenter.north east)+2.5*(y)$) .. % +controls ($(notecenter.north east)+1.25*(y)$) and ($(notecenter.north +east)-1.5*(x)+1.25*(y)$) .. % +($(notecenter.north east)-1.9*(x)+2.5*(y)$) .. % +controls ($(notecenter.north east)-4.5*(x)$) .. % +($(notecenter.north east)-5.7*(x)$) % +[rounded corners=\noteroundedcorners] -- ($(notecenter.north east)-4.7*(x)$) % +[rounded corners=\noteroundedcorners] -- ($(notecenter.north east)+1.7*(y)$) % +[rounded corners=0] -- ($(notecenter.north east)+3*(y)$); +\fill[color=notefrcolor] % +($(notecenter.north east)+3*(y)$) -- ($(notecenter.north east)+2.5*(y)$) .. % +controls ($(notecenter.north east)+1.25*(y)$) and ($(notecenter.north +east)-1.5*(x)+1.25*(y)$) .. % +($(notecenter.north east)-1.9*(x)+2.3*(y)$) .. % +controls ($(notecenter.north east)-4.5*(x)$) .. % +($(notecenter.north east)-5.7*(x)$) % +[rounded corners=\noteroundedcorners] -- ($(notecenter.north east)-4.7*(x)$) % +[rounded corners=\noteroundedcorners] -- ($(notecenter.north east)+1.7*(y)$) % +[rounded corners=0] -- ($(notecenter.north east)+3*(y)$); +} + + \definenotestyle{VerticalShading}{ +targetoffsetx=0pt, targetoffsety=0pt, angle=0, radius=8cm, width=8cm, +connection=false, rotate=0, roundedcorners=20, linewidth=1pt, innersep=1cm +}{ +\ifNoteHasConnection % callout note + % the shadow + \begin{scope}[opacity=0.3] +\begin{pgftransparencygroup} + \coordinate (shadowshift) at (0.2cm,-0.2cm); \fill% + ($(notetarget)+(shadowshift)$) -- + ($(notetarget)!1!4:(notecenter.center)+(shadowshift)$) -- + ($(notetarget)!1!-4:(notecenter.center)+(shadowshift)$) --cycle; % + \fill[rounded corners=\noteroundedcorners] % + ($(notecenter.south west)+(shadowshift)$) -- ($(notecenter.north + west)+(shadowshift)$) -- ($(notecenter.north east)+(shadowshift)$) + -- ($(notecenter.south east)+(shadowshift)$) -- cycle; +\end{pgftransparencygroup} + \end{scope} + %% the main drawing + % + %% the border + \draw[color=notefrcolor, line width=\notelinewidth*2]% + (notetarget) -- ($(notetarget)!1!4:(notecenter.center)$) -- + ($(notetarget)!1!-4:(notecenter.center)$) -- cycle;% + \draw[color=notefrcolor, line width=\notelinewidth*2, rounded + corners=\noteroundedcorners]% + (notecenter.south west) -- (notecenter.north west) -- + (notecenter.north east) -- (notecenter.south east) -- cycle; % + % + %% the filling (vertical shading), shared between the note and the connection + \begin{scope} +\node[fit=(notetarget)(notecenter.south west)(notecenter.south east) +(notecenter.north east) (notecenter.north west), inner sep=+0pt] +(box) {};% +\clip (notetarget) -- ($(notetarget)!1!4:(notecenter.center)$) -- +($(notetarget)!1!-4:(notecenter.center)$) -- cycle% +[rounded corners=\noteroundedcorners] (notecenter.south west) -- +(notecenter.north west) -- (notecenter.north east) -- +(notecenter.south east) -- cycle; +\draw[draw=none, color=notefrcolor, top color=notebgcolor!60, bottom +color=notebgcolor] % +(box.south west) rectangle (box.north east); + \end{scope} + % +\else % the simple note +\begin{scope}[drop shadow={shadow xshift=0.2cm, shadow yshift=-0.2cm, + opacity=0.3}] + \draw[line width=\notelinewidth, rounded corners=\noteroundedcorners, + color=notefrcolor, top color=notebgcolor!60, bottom color=notebgcolor, + drop shadow] % + (notecenter.south west) -- (notecenter.north west) -- (notecenter.north + east) -- (notecenter.south east) -- cycle; +\end{scope} +\fi +} + + \definenotestyle{Sticky}{ +targetoffsetx=0pt, targetoffsety=0pt, angle=0, radius=8cm, width=8cm, +connection=false, rotate=0, roundedcorners=0, linewidth=0pt, innersep=1cm +}{ +\ifNoteHasConnection %% callout note +\draw[color=notefrcolor, fill=notebgcolor, drop shadow={shadow +xshift=0.2cm, shadow yshift=-0.2cm, opacity=0.3}] % + (notetarget) -- ($(notetarget)!1!4:(notecenter.center)$) -- + ($(notetarget)!1!-4:(notecenter.center)$) --cycle; % +\fi +\draw[draw=none, fill=gray, opacity=0.3] +($(notecenter.north east)+(-0.5,0)$) [rounded corners=40]--% +(notecenter.north west) [rounded corners=0] -- % +($(notecenter.south west)$) .. % +controls ($0.2*(notecenter.south west) + 0.8*(notecenter.south east)$) .. % +($(notecenter.south east)+(-0.2,0.3)$) .. % +controls ($0.75*(notecenter.south east) + 0.25*(notecenter.north east) - (0.5,0)$) .. % +($(notecenter.north east)+(-0.5,0)$); +\def \border{% +($(notecenter.north east)+(-0.5,0)$) [rounded corners=40]--% +(notecenter.north west) [rounded corners=0] -- % +($(notecenter.south west)$) .. % +controls ($0.2*(notecenter.south west) + 0.8*(notecenter.south east)$) .. % +($(notecenter.south east)+(0,0.7)$) .. % +controls ($0.75*(notecenter.south east) +0.25*(notecenter.north east) -(0.5,0)$) .. % +($(notecenter.north east)+(-0.5,0)$)% +}% +\draw[color=notefrcolor, fill=notebgcolor] +\border; +\begin{scope} +\clip \border; % +\begin{scope}[transform canvas={rotate +around={\noterotate+15:(notecenter.north west)}}] +\fill[notebgcolor!60!black, path fading=south, opacity=0.6]% +(notecenter.north west) -- +(-3,0) |- ($(notecenter.north west) + (0,-1.2)$) +-- ($(notecenter.north west) + (4,-1.2)$) |- ($(notecenter.north west)$); +\end{scope} +\end{scope} +} + + +\endinput +%% +%% End of file `tikzposterNotestyles.tex'. diff --git a/tikzposterTitlestyles.tex b/tikzposterTitlestyles.tex new file mode 100644 index 0000000..3296795 --- /dev/null +++ b/tikzposterTitlestyles.tex @@ -0,0 +1,169 @@ +%% +%% This is file `tikzposterTitlestyles.tex', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% tikzposter.dtx (with options: `tikzposterTitlestyles.tex') +%% +%% This is a generated file. +%% +%% Copyright (C) 2014 by Pascal Richter, Elena Botoeva, Richard Barnard, and Dirk Surmann +%% +%% This file may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either +%% version 2.1 of this license or (at your option) any later +%% version. The latest version of this license is in: +%% +%% http://www.latex-project.org/lppl.txt +%% +%% and version 2.1 or later is part of all distributions of +%% LaTeX version 2014/10/15 or later. +%% + + + + + + + + + + + % width + % roundedcorners + % linewidth + % innersep + % titletotopverticalspace + % titletoblockverticalspace + % titlegraphictotitledistance + % titletextscale + + % Parameter: + % \textwidth - length + % \textheight - length + % \titlewidth - length + % \titlegraphicheight - length + % \titlelinewidth - length + % \titleinnersep - length + % \titleposleft, \titleposright, \titleposbottom, \titlepostop - length + % \titletotopverticalspace - length + % titlebgcolor - color + +\definetitlestyle{Default}{ +width=600mm, roundedcorners=30, linewidth=0.4cm, innersep=1cm, +titletotopverticalspace=15mm, titletoblockverticalspace=20mm, +titlegraphictotitledistance=10pt, titletextscale=1 +}{ +\begin{scope}[line width=\titlelinewidth, rounded corners=\titleroundedcorners] +\draw[color=framecolor, fill=titlebgcolor]% +(\titleposleft,\titleposbottom) rectangle (\titleposright,\titlepostop); +\end{scope} +} + +\definetitlestyle{Basic}{ +width=770mm, roundedcorners=0, linewidth=0pt, innersep=10pt, +titletotopverticalspace=20mm, titletoblockverticalspace=20mm, +titlegraphictotitledistance=25mm, titletextscale=1 +}{ +\coordinate (topright) at (0.5\textwidth-0.5\titlelinewidth, 0.5\textheight-0.5\titlelinewidth); +\coordinate (bottomleft) at (-0.5\textwidth+0.5\titlelinewidth, 0.5\textheight-\titlegraphicheight-0.5\titlelinewidth-2\titletotopverticalspace-2\titleinnersep); +\draw[line width=\titlelinewidth, inner sep=\titleinnersep, fill=titlebgcolor] (bottomleft) rectangle (topright); +} + +\definetitlestyle{Envelope}{ +width=\paperwidth, roundedcorners=0, linewidth=0pt, innersep=1.5cm, +titletotopverticalspace=0mm, titletoblockverticalspace=20mm, +titlegraphictotitledistance=10pt, titletextscale=1 +}{ +\coordinate (topleft) at (\titleposleft,\titlepostop); +\coordinate (topright) at (\titleposright,\titlepostop); +\coordinate (lefttoright) at (\titlewidth,0); +\coordinate (head) at (0,\titlepostop-\titleposbottom); +\draw[draw=none, bottom color=titlebgcolor!90!black, % +top color=titlebgcolor!90] % +(topleft) -- ($(topleft)-0.2*(head)$) .. controls ($(topleft)-(head)+(1,0)$) +.. ($(topleft)-(head)+0.2*(lefttoright)$) -- +($(topleft)-(head)+0.8*(lefttoright)$) .. controls ($(topright)-(head)-(1,0)$) +.. % +($(topright)-0.2*(head)$) -- (topright) -- cycle; +\draw[draw=none, right color=titlefgcolor, left color=titlebgcolor] +($(topleft)-(head)+0.8*(lefttoright)$) .. controls +($(topleft)-(head)+0.92*(lefttoright)+(0,0.7)$) and % +($(topright)- 0.13*(lefttoright)$) .. % +(topright) .. controls % +($(topright)- 0.11*(lefttoright)$) and% +($(topleft)-(head)+0.95*(lefttoright)$) .. % +($(topleft)-(head)+0.82*(lefttoright)$); +\draw[draw=none, right color=titlefgcolor, left color=titlebgcolor] +($(topleft)-(head)+0.83*(lefttoright)$) .. controls +($(topleft)-(head)+0.97*(lefttoright)+(0,0.2)$) and % +($(topright)- 0.08*(lefttoright)$) .. % +(topright) .. controls % +($(topright)- 0.06*(lefttoright)$) and % +($(topleft)-(head)+0.99*(lefttoright)$) .. % +($(topleft)-(head)+0.85*(lefttoright)$); % +} + +\definetitlestyle{Wave}{ +width=\paperwidth, roundedcorners=0, linewidth=0pt, innersep=1.5cm, +titletotopverticalspace=0mm, titletoblockverticalspace=20mm, +titlegraphictotitledistance=10pt, titletextscale=1 +}{ +\coordinate (topleft) at (\titleposleft,\titlepostop); +\coordinate (topright) at (\titleposright,\titlepostop); +\coordinate (lefttoright) at (\titlewidth,0); +\coordinate (head) at (0,\titlepostop-\titleposbottom); +\draw[draw=none, left color=titlebgcolor!90!black, right color=titlebgcolor!95]% +(topright) -- (topleft) -- % +($(topleft) - (head)-(0,6)$) .. controls % +($(topleft) - (head)-(0,6) + 0.25*(lefttoright) + (0,9)$) and % +($(topright) - (head) - 0.5*(lefttoright) - (-10,16)$) .. % +($(topright) - (head)$) -- cycle; +\draw[draw=none, left color=titlebgcolor, right color=titlefgcolor] % +($(topleft) - (head)-(0,2)$) .. controls % +($(topleft) - (head)-(-6,3) + 0.25*(lefttoright) + (0,10)$) and ($(topright) - +(head) - 0.25*(lefttoright) - (-6,17)$).. % +($(topright) - (head)$) .. controls % +($(topright) - (head) - 0.25*(lefttoright)-(-7,19)$) and % +($(topleft) - (head)-(-9,5) + 0.25*(lefttoright) + (0,10)$) .. % +($(topleft) - (head)-(0,4)$); +\draw[draw=none, left color=titlefgcolor, right color=titlebgcolor!90!black]% +($(topleft) - (head)-(0,2)$) .. controls % +($(topleft) - (head)-(-6,3) + 0.25*(lefttoright) + (0,10)$) and ($(topright) - +(head)+(0,6) - 0.25*(lefttoright) - (-6,20)$)..% +($(topright) - (head)+(0,6)$) -- % +($(topright) - (head)$) .. controls % +($(topright) - (head) - 0.25*(lefttoright) - (-6,17)$) and % +($(topleft) - (head)-(-8,4) + 0.25*(lefttoright) + (0,10)$) .. % +($(topleft) - (head)-(0,2)$); +\setlength{\TP@titletoblockverticalspace}{5\TP@titletoblockverticalspace} +} + +\definetitlestyle{VerticalShading}{ +width=\paperwidth, roundedcorners=0, linewidth=0pt, innersep=1.5cm, +titletotopverticalspace=0mm, titletoblockverticalspace=20mm, +titlegraphictotitledistance=10pt, titletextscale=1 +}{ + \draw[draw=none, bottom color=framecolor, top color=titlebgcolor]% + (\titleposleft,\titleposbottom) rectangle (\titleposright,\titlepostop); % +} + +\definetitlestyle{Filled}{ +width=\paperwidth, roundedcorners=0, linewidth=0pt, innersep=1.5cm, +titletotopverticalspace=0mm, titletoblockverticalspace=20mm, +titlegraphictotitledistance=10pt +}{ + \draw[draw=none, fill=titlebgcolor]% + (\titleposleft,\titleposbottom) rectangle (\titleposright,\titlepostop); % +} + +\definetitlestyle{Empty}{ +width=750mm, roundedcorners=0, linewidth=0pt, innersep=8mm, +titletotopverticalspace=5mm, titletoblockverticalspace=20mm, +titlegraphictotitledistance=10pt +}{} + +\endinput +%% +%% End of file `tikzposterTitlestyles.tex'. diff --git a/uC.png b/uC.png new file mode 100644 index 0000000..aea49d1 Binary files /dev/null and b/uC.png differ