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.

183 lines
5.5 KiB

1 year ago
1 year ago
1 year ago
  1. # Introduction
  2. Scientific posters are often used to present research/information at conferences and other forms of meeting where they can facilitate presentation of your research for discussion with colleagues[^1]. This article explains the basics of typesetting a poster in LaTeX.
  3. # Tikzposter
  4. Tikzposter is a document class used to generate scientific posters in PDF format. It uses the TikZ package and provides very flexible layouts.
  5. ## The preamble and the title
  6. The preamble in a tikzposter class has the standard syntax:
  7. ```
  8. \documentclass[25pt, a0paper, portrait]{tikzposter}
  9. \title{Tikz Poster Example}
  10. \author{Overleaf Team}
  11. \date{\today}
  12. \institute{Overleaf Institute}
  13. \usetheme{Board}
  14. \begin{document}
  15. \maketitle
  16. \end{document}
  17. ```
  18. ## The preamble
  19. The first command, \documentclass[...]{tikzposter} declares that this document is a tikzposter. The additional parameters inside the brackets set the font size, the paper size and the orientation; respectively.
  20. The available font sizes are: 12pt, 14pt, 17pt, 20pt and 25pt. The possible paper sizes are: a0paper, a1paper and a2paper. There are some additional options, see the further reading section for a link to the documentation.
  21. The self-descriptive commands title, author, date and institute are used to set the author information.
  22. The command \usetheme{Board} sets the current theme, i.e., changes the colours and the decoration around the text boxes. See the reference guide for screenshots of available themes.
  23. The command \maketitle prints the title on top of the poster.
  24. If you are keen to see a more detailed example you can open
  25. ## The body
  26. The body of the poster is created by means of text blocks. Multi-column placement can be enabled and the width can be explicitly controlled for each column, this provides a lot of flexibility to customize the look of the final output.
  27. ```
  28. \documentclass[25pt, a0paper, portrait]{tikzposter}
  29. \title{Tikz Poster Example}
  30. \author{Overleaf Team}
  31. \date{\today}
  32. \institute{Overleaf Institute}
  33. \usepackage{blindtext}
  34. \usepackage{comment}
  35. \usetheme{Board}
  36. \begin{document}
  37. \maketitle
  38. \block{~}
  39. {
  40. \blindtext
  41. }
  42. \begin{columns}
  43. \column{0.4}
  44. \block{More text}{Text and more text}
  45. \column{0.6}
  46. \block{Something else}{Here, \blindtext \vspace{4cm}}
  47. \note[
  48. targetoffsetx=-9cm,
  49. targetoffsety=-6.5cm,
  50. width=0.5\linewidth
  51. ]
  52. {e-mail \texttt{welcome@overleaf.com}}
  53. \end{columns}
  54. \begin{columns}
  55. \column{0.5}
  56. \block{A figure}
  57. {
  58. \begin{tikzfigure}
  59. \includegraphics[width=0.4\textwidth]{images/overleaf-logo}
  60. \end{tikzfigure}
  61. }
  62. \column{0.5}
  63. \block{Description of the figure}{\blindtext}
  64. \end{columns}
  65. \end{document}
  66. ```
  67. In a tikzposter document the text is organized in blocks, each block is created by the command \block{}{} which takes two parameters, each one inside a pair of braces. The first one is the title of the block and the second one is the actual text to be printed inside the block.
  68. The environment columns enables multi-column text, the command \column{} starts a new column and takes as parameter the relative width of the column, 1 means the whole text area, 0.5 means half the text area and so on.
  69. The command \note[]{} is used to add additional notes that are rendered overlapping the text block. Inside the brackets you can set some additional parameters to control the placement of the note, inside the braces the text of the note must be typed.
  70. ## Note on figure captions and references
  71. As noted within the tikzposter documentation, the standard LATEX figure environment is not compatible with the tikzposter document class. Consequently, the LaTeX mechanism for adding captions and referencing figures must be used within the tikzfigure environment, like this:
  72. ```
  73. \begin{tikzfigure}[Caption of the figure]
  74. \label{fig:fig1}
  75. Figure
  76. \end{tikzfigure}
  77. ```
  78. # My poster Example
  79. # Preamble
  80. ```
  81. \documentclass[25pt, a0paper, portrait]{tikzposter}
  82. \usepackage[utf8]{inputenc}
  83. \usepackage{authblk}
  84. \usepackage{graphicx}
  85. \usepackage{hyperref}
  86. \renewcommand\refname{Referencias}
  87. \usetheme{Board}
  88. ```
  89. # Code for large titles:
  90. ```
  91. \makeatletter
  92. \def\title#1{\gdef\@title{\scalebox{\TP@titletextscale}{%
  93. \begin{minipage}[t]{\linewidth}
  94. \centering
  95. \Huge
  96. #1
  97. \par
  98. \vspace{0.5em}
  99. \end{minipage}%
  100. }}}
  101. \makeatother
  102. ```
  103. # Code for several authors:
  104. ```
  105. \makeatletter
  106. \renewcommand\maketitle{\AB@maketitle} % revert \maketitle to its old definition
  107. \renewcommand\AB@affilsepx{\quad\protect\Affilfont} % put affiliations into one line
  108. \makeatother
  109. \renewcommand\Affilfont{\Large} % set font for affiliations
  110. % Frontmatter
  111. \title{Título de mi Trabajo de Investigación para Presentar en un Poster de Divulgación Científica}
  112. % Autores
  113. \author[1]{Homer Jay Simpson}
  114. \author[2]{Gerardo Marx Chávez-Campos}
  115. \author[3]{Jean-Baptiste Joseph Fourier}
  116. \author[3]{Pierre Simon Laplace}
  117. \affil[1]{Twenty Century Fox}
  118. \affil[2]{Posgrado en Ciencias en Ingeniería Electrónica}
  119. \affil[3]{École Normale Supérieure}
  120. ```
  121. # Logos
  122. ```
  123. \titlegraphic{
  124. \includegraphics[width=16cm,height=5cm]{sep-logo}\quad
  125. \includegraphics[width=12cm,height=5cm]{tecnm-logo.png}\quad
  126. \includegraphics[width=6cm,height=5cm]{itm-logo.png}\quad
  127. %\includegraphics[width=5cm,height=5cm]{ibq-logo.png}\quad
  128. \includegraphics[width=14cm,height=5cm]{pcie-logo.png}\quad
  129. %\includegraphics[width=14cm,height=5cm]{ooapas-logo.png}
  130. }
  131. ```
  132. # References
  133. ```
  134. \block{}{
  135. \small %cambiar a \tiny si son muchas referencias
  136. \bibliographystyle{ieeetr}
  137. \bibliography{references.bib}
  138. }
  139. ```