Poster example 2023
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.6 KiB

1 year ago
  1. # Preamble
  2. ```
  3. \documentclass[25pt, a0paper, portrait]{tikzposter}
  4. \usepackage[utf8]{inputenc}
  5. \usepackage{authblk}
  6. \usepackage{graphicx}
  7. \usepackage{hyperref}
  8. \renewcommand\refname{Referencias}
  9. \usetheme{Board}
  10. ```
  11. # Code for large titles:
  12. ```
  13. \makeatletter
  14. \def\title#1{\gdef\@title{\scalebox{\TP@titletextscale}{%
  15. \begin{minipage}[t]{\linewidth}
  16. \centering
  17. \Huge
  18. #1
  19. \par
  20. \vspace{0.5em}
  21. \end{minipage}%
  22. }}}
  23. \makeatother
  24. ```
  25. # Code for several authors:
  26. ```
  27. \makeatletter
  28. \renewcommand\maketitle{\AB@maketitle} % revert \maketitle to its old definition
  29. \renewcommand\AB@affilsepx{\quad\protect\Affilfont} % put affiliations into one line
  30. \makeatother
  31. \renewcommand\Affilfont{\Large} % set font for affiliations
  32. % Frontmatter
  33. \title{Título de mi Trabajo de Investigación para Presentar en un Poster de Divulgación Científica}
  34. % Autores
  35. \author[1]{Homer Jay Simpson}
  36. \author[2]{Gerardo Marx Chávez-Campos}
  37. \author[3]{Jean-Baptiste Joseph Fourier}
  38. \author[3]{Pierre Simon Laplace}
  39. \affil[1]{Twenty Century Fox}
  40. \affil[2]{Posgrado en Ciencias en Ingeniería Electrónica}
  41. \affil[3]{École Normale Supérieure}
  42. ```
  43. # Logos
  44. ```
  45. \titlegraphic{
  46. \includegraphics[width=16cm,height=5cm]{sep-logo}\quad
  47. \includegraphics[width=12cm,height=5cm]{tecnm-logo.png}\quad
  48. \includegraphics[width=6cm,height=5cm]{itm-logo.png}\quad
  49. %\includegraphics[width=5cm,height=5cm]{ibq-logo.png}\quad
  50. \includegraphics[width=14cm,height=5cm]{pcie-logo.png}\quad
  51. %\includegraphics[width=14cm,height=5cm]{ooapas-logo.png}
  52. }
  53. ```
  54. # References
  55. ```
  56. \block{}{
  57. \small %cambiar a \tiny si son muchas referencias
  58. \bibliographystyle{ieeetr}
  59. \bibliography{references.bib}
  60. }
  61. ```