Browse Source

Add files via upload

master
Gerardo Marx Chávez-Campos 5 years ago
committed by GitHub
parent
commit
a3cac6c36e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
45 changed files with 5859 additions and 0 deletions
  1. BIN
      Green-Energy-icon.png
  2. BIN
      MCIE.png
  3. +475
    -0
      all_settings.py
  4. +70
    -0
      all_settings.tex
  5. BIN
      atom.png
  6. BIN
      chemy.png
  7. +35
    -0
      compile_guides.py
  8. BIN
      helmet.png
  9. BIN
      ielectronica.png
  10. BIN
      iesEmpresa.jpg
  11. BIN
      industry.png
  12. BIN
      logoITM.png
  13. BIN
      movility.png
  14. BIN
      mult.png
  15. +18
    -0
      mytheme.aux
  16. +219
    -0
      mytheme.fdb_latexmk
  17. +447
    -0
      mytheme.fls
  18. +1270
    -0
      mytheme.log
  19. BIN
      mytheme.pdf
  20. BIN
      mytheme.synctex.gz
  21. +263
    -0
      mytheme.tex
  22. BIN
      osci.png
  23. BIN
      pcb.png
  24. BIN
      renew.png
  25. BIN
      renew2.png
  26. BIN
      research.png
  27. BIN
      science.png
  28. BIN
      sepLogo.png
  29. BIN
      signal.png
  30. BIN
      styleguide.pdf
  31. +592
    -0
      styleguide.tex
  32. BIN
      tecnmW.png
  33. +191
    -0
      tikzposter-example.tex
  34. +104
    -0
      tikzposter-template.tex
  35. +825
    -0
      tikzposter.cls
  36. BIN
      tikzposter.pdf
  37. +82
    -0
      tikzposterBackgroundstyles.tex
  38. +223
    -0
      tikzposterBlockstyles.tex
  39. +64
    -0
      tikzposterColorpalettes.tex
  40. +210
    -0
      tikzposterColorstyles.tex
  41. +272
    -0
      tikzposterInnerblockstyles.tex
  42. +117
    -0
      tikzposterLayoutthemes.tex
  43. +213
    -0
      tikzposterNotestyles.tex
  44. +169
    -0
      tikzposterTitlestyles.tex
  45. BIN
      uC.png

BIN
Green-Energy-icon.png View File

Before After
Width: 256  |  Height: 256  |  Size: 8.2 KiB

BIN
MCIE.png View File

Before After
Width: 758  |  Height: 559  |  Size: 405 KiB

+ 475
- 0
all_settings.py View File

@ -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()

+ 70
- 0
all_settings.tex View File

@ -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}

BIN
atom.png View File

Before After
Width: 480  |  Height: 480  |  Size: 158 KiB

BIN
chemy.png View File

Before After
Width: 160  |  Height: 160  |  Size: 7.2 KiB

+ 35
- 0
compile_guides.py View File

@ -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

BIN
helmet.png View File

Before After
Width: 531  |  Height: 408  |  Size: 55 KiB

BIN
ielectronica.png View File

Before After
Width: 363  |  Height: 530  |  Size: 163 KiB

BIN
iesEmpresa.jpg View File

Before After
Width: 1989  |  Height: 525  |  Size: 402 KiB

BIN
industry.png View File

Before After
Width: 512  |  Height: 512  |  Size: 4.0 KiB

BIN
logoITM.png View File

Before After
Width: 700  |  Height: 696  |  Size: 403 KiB

BIN
movility.png View File

Before After
Width: 512  |  Height: 512  |  Size: 26 KiB

BIN
mult.png View File

Before After
Width: 225  |  Height: 225  |  Size: 3.3 KiB

+ 18
- 0
mytheme.aux View File

@ -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]{}

+ 219
- 0
mytheme.fdb_latexmk View File

@ -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"

+ 447
- 0
mytheme.fls View File

@ -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

+ 1270
- 0
mytheme.log
File diff suppressed because it is too large
View File


BIN
mytheme.pdf View File


BIN
mytheme.synctex.gz View File


+ 263
- 0
mytheme.tex View File

@ -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}

BIN
osci.png View File

Before After
Width: 480  |  Height: 480  |  Size: 91 KiB

BIN
pcb.png View File

Before After
Width: 1024  |  Height: 1024  |  Size: 65 KiB

BIN
renew.png View File

Before After
Width: 200  |  Height: 200  |  Size: 4.9 KiB

BIN
renew2.png View File

Before After
Width: 480  |  Height: 480  |  Size: 98 KiB

BIN
research.png View File

Before After
Width: 480  |  Height: 480  |  Size: 105 KiB

BIN
science.png View File

Before After
Width: 512  |  Height: 512  |  Size: 9.9 KiB

BIN
sepLogo.png View File

Before After
Width: 2000  |  Height: 686  |  Size: 274 KiB

BIN
signal.png View File

Before After
Width: 640  |  Height: 470  |  Size: 35 KiB

BIN
styleguide.pdf View File


+ 592
- 0
styleguide.tex View File

@ -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}

BIN
tecnmW.png View File

Before After
Width: 2448  |  Height: 1203  |  Size: 158 KiB

+ 191
- 0
tikzposter-example.tex View File

@ -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'.

+ 104
- 0
tikzposter-template.tex View File

@ -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'.

+ 825
- 0
tikzposter.cls View File

@ -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'.

BIN
tikzposter.pdf View File


+ 82
- 0
tikzposterBackgroundstyles.tex View File

@ -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'.

+ 223
- 0
tikzposterBlockstyles.tex View File

@ -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'.

+ 64
- 0
tikzposterColorpalettes.tex View File

@ -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'.

+ 210
- 0
tikzposterColorstyles.tex View File

@ -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'.

+ 272
- 0
tikzposterInnerblockstyles.tex View File

@ -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'.

+ 117
- 0
tikzposterLayoutthemes.tex View File

@ -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'.

+ 213
- 0
tikzposterNotestyles.tex View File

@ -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'.

+ 169
- 0
tikzposterTitlestyles.tex View File

@ -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'.

BIN
uC.png View File

Before After
Width: 480  |  Height: 480  |  Size: 16 KiB

Loading…
Cancel
Save