How to create conference posters by latex (beamer)

latex (beamer)による学会発表用のポスターの作り方

Sfera con Sfera at Trinity College Dublin

学会発表用のスライド作成については,beamerでスライド原稿用pdfを作成する(その1)に始まる一連の記事にまとめたが,ポスター作成については触れていなかったので,今回まとめることにする.

latexを使ってポスターを作成する場合の定番はbeamerを利用したもので,代表例には,beamerposterがある.それ以外にも,latexのポスター作成用のパッケージには,baposter, Gemini, betterposter, tikzposterなどがある.さらに,Inkscapeを使用する方法も報告されている.できるだけこれらの情報を集積してみた.なお,私自身は,標準的なbeamerposterの中に含まれているスタイルファイルを少し改変して用いている.

General remarks

beamerposter

おそらく最もよく使われているパッケージ

References

Installation

texlive (MacTeX)をインストールした時点で入っているので,改めてインストールし直す必要はない.

Usage

スタイルシートの変更

まずスタイルファイルを使用する必要がある.私は,beamerposter packageの中のthemes directoryに入っている beamerthemeI6dv.sty を少し変更して beamerthemeI6dv_test.sty として使用している.変更箇所は以下の通りである.これも覚書として残しておく.

--- beamerthemeI6dv.sty 2019-11-24 14:32:46.000000000 +0900
+++ beamerthemeI6dv_test.sty    2019-11-24 20:55:47.000000000 +0900
@@ -1,4 +1,4 @@
-\ProvidesPackage{beamerthemeI6dv} % this style was created by David Vilar
+\ProvidesPackage{beamerthemeI6dv_test} % this style was created by David Vilar

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\selectcolormodel{cmyk}
@@ -30,7 +30,7 @@

% footline colors and fonts
\setbeamercolor{footline}{fg=white,bg=i6colorschemeHeadline}
-\setbeamerfont{footline}{fg=white, size=\normalsize}
+%\setbeamerfont{footline}{fg=white, size=\normalsize}

% body colors and fonts
\setbeamercolor*{normal text}{fg=black,bg=i6colorscheme3}
@@ -42,7 +42,7 @@

% example environment
\setbeamercolor*{example title}{fg=white,bg=i6colorscheme1}
-\setbeamerfont{example title}{size=\large,series=\bf,bg=i6colorscheme1,fg=white}
+%\setbeamerfont{example title}{size=\large,series=\bf,bg=i6colorscheme1,fg=white}


%\setbeamercolor*{example body}{fg=white,bg=i6colorscheme4}
@@ -88,27 +88,29 @@
\begin{columns}[T]
\begin{column}{.02\paperwidth}
\end{column}
-      \begin{column}{.07\paperwidth}
+      \begin{column}{.1\paperwidth}
\begin{center}
-          %\includegraphics[width=.6\linewidth]{logos/i6-hks44}
+          % \includegraphics[width=.6\linewidth]{logos/i6-hks44}
+          \includegraphics[height=0.7\linewidth]{ISC2017-Logo.pdf}
\end{center}
\vskip1ex
\end{column}
-      \begin{column}{.675\paperwidth}
+      \begin{column}{.6\paperwidth}
\vskip4ex
\raggedleft
\usebeamercolor{title in headline}{\color{fg}\textbf{\LARGE{\inserttitle}}\\[1ex]}
\usebeamercolor{author in headline}{\color{fg}\large{\insertauthor}\\[1ex]}
\usebeamercolor{institute in headline}{\color{fg}\large{\insertinstitute}\\[1ex]}
\end{column}
-      \begin{column}{.25\paperwidth}
+      \begin{column}{.15\paperwidth}
\vskip1cm
\begin{center}
-          \includegraphics[width=.7\linewidth]{/u/figures/deselaers/logos/rwthaachenuniversity-whitegray}
+          % \includegraphics[width=.7\linewidth]{/u/figures/deselaers/logos/rwthaachenuniversity-whitegray}
+          \includegraphics[height=.45\linewidth]{Kobito.jpg}
\end{center}
\vskip1.5cm
\end{column}
-      \begin{column}{.03\paperwidth}
+      \begin{column}{.02\paperwidth}
\end{column}
\end{columns}
\end{beamercolorbox}
@@ -139,7 +141,7 @@
\end{beamercolorbox}

\begin{beamercolorbox}[ht=4ex,leftskip=1cm,rightskip=1cm]{footline}%
-    Lehrstuhl f\"ur Informatik 6 - Computer Science Department - RWTH Aachen University - Aachen, Germany \hfill Mail: \texttt{<surname>@cs.rwth-aachen.de} \hfill WWW: \texttt{http://www-i6.informatik.rwth-aachen.de}
+   Department of HogeFuga, HogeFuga University Graduate School of Medicine, Japan \hfill Mail: \texttt{taipapa@hoge-u.sc.jp} \hfill WWW: \texttt{http://www-hogefuga/TOP.html}
\vskip1ex
\end{beamercolorbox}
  • 好みによって適当に変更すれば良い.
  • LogoをKobito.jpgに入れ替えているが,これはそれぞれの所属組織のものに変更すれば良い.
  • 左側のLogoは学会のもの(ISC2017-Logo.pdf)に変更している.
  • 一番最後はフッターに所属組織,メールアドレス,ウェブサイトなどを入れるための情報であり,そこも適宜置き換えれば良い.

スタイルシートの置き場

私のように,LaTeXをMacTeXでインストールした場合は,上記の変更したスタイルシートは, ~/Library/texmf/tex/latex/beamer/themes/theme/ に置く.これでLaTeXはこのスタイルシートを見つけてくれる.

Poster example

上記スタイルシートを用いて作成すると下図のようなポスターが出来上がる.これは実際の学会発表に使用したものである.ただし,発表者や所属組織やロゴは変更してある.

このポスターのtex fileは以下のようになっている.元々は.どこかからとってきたtex fileを改変しているのだが,オリジナルをどこから持ってきたかは,もはや記憶の彼方である…..(^^;;; (どなたかご指摘いただければ幸いである) 素人が色々弄ってなんとか形にしたものだが,これを上書きしていく事で割と簡単にポスターが作成できるようになった.試行錯誤の跡もそのまま残した状態でアップしておく.念のために書いておくが,このファイルをdocument.texとして保存し,LaTeXをインストールし,texファイルが変更されると,自動的にcompileしてskimでのpdfも自動で更新されるようにする(2018年9月1日追記) に書いたように, latexmk -pvc -pdf -view=none document.tex とすればコンパイルされてpdfが出来上がる.ただし,ファイルの中の画像(pdf)は適当なものと置き換えていただきたい.

  • 9行目: \usetheme{I6dv_test} によりスタイルシートを指定している.
  • 45行目: orientation=landscape で横長, orientation=portrait で縦長になる.実際の大きさは, width=200,height=100 で合わせる(幅 200cm 高さ 100 cmということである).scaleの部分でも調整する.
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
% -*-coding:utf-8-*-
\documentclass[final,t]{beamer}
\mode<presentation>
{
  % \usetheme{Warsaw}
  % \usetheme{Aachen}
  % \usetheme{Oldi6}
  % \usetheme{I6td}
  \usetheme{I6dv_test}
  % \usetheme{I6pd}
  % \usetheme{I6pd2}
}
% additional settings
\setbeamerfont{itemize}{size=\normalsize}
\setbeamerfont{itemize/enumerate body}{size=\normalsize}
\setbeamerfont{itemize/enumerate subbody}{size=\normalsize}

% additional packages
% \usepackage{times}

%% 上記だけではsans serifにならないので,下記を設定 
%% http://www.tug.dk/FontCatalogue/ibmplexsansregular/
%% http://www.tug.dk/FontCatalogue/sansseriffonts.html
% \usepackage[T1]{fontenc}
% \usepackage[usefilenames,% Important for XeLaTeX
% DefaultFeatures={Ligatures=Common}]{plex-otf} %
% \renewcommand*\familydefault{\sfdefault} %% Only if the base font of the document is to be sans serif

%% http://www.tug.dk/FontCatalogue/ibmplexsanstext/
\usepackage[T1]{fontenc}
\usepackage[usefilenames,% Important for XeLaTeX
RMstyle={Text,Semibold},
SSstyle={Text,Semibold},
TTstyle={Text,Semibold},
DefaultFeatures={Ligatures=Common}]{plex-otf} %
\renewcommand*\familydefault{\sfdefault} %% Only if the base font of the document is to be sans serif

\usepackage{amsmath,amsthm, amssymb, latexsym}
\usepackage{exscale}
% \boldmath
\usepackage{booktabs, array}
% \usepackage{rotating} %sideways environment
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage[orientation=landscape,size=custom,width=200,height=100,scale=1.725]{beamerposter}
\listfiles
\graphicspath{{figures/}}

% \usepackage{latexsym}

% Display a grid to help align images
% \beamertemplategridbackground[1cm]

\title{\huge Perioperative Assessment Of Cerebral Perfusion Territories Through Arterial Spin Labeling Magnetic Resonance Imaging In Carotid Stenosis}
\author[taipapa et al.]{taipapa, taimama, taison, taidaughter, other person1,
  other person2, other person3, other person 4, other person 5}
\institute[HogeFuga University]{Department of HogeFuga, HogeFuga Medical Center Japan}
\date[Feb. 23, 2017]{Feb. 17,  2017}

% abbreviations
\usepackage{xspace}
\makeatletter
\DeclareRobustCommand\onedot{\futurelet\@let@token\@onedot}
\def\@onedot{\ifx\@let@token.\else.\null\fi\xspace}
\def\eg{{e.g}\onedot} \def\Eg{{E.g}\onedot}
\def\ie{{i.e}\onedot} \def\Ie{{I.e}\onedot}
\def\cf{{c.f}\onedot} \def\Cf{{C.f}\onedot}
\def\etc{{etc}\onedot}
\def\vs{{vs}\onedot}
\def\wrt{w.r.t\onedot}
\def\dof{d.o.f\onedot}
\def\etal{{et al}\onedot}
\makeatother

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\begin{frame}{}
  \begin{columns}[t]
    \begin{column}{.32\linewidth}

      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
      \vspace*{-2.35cm}
      \begin{block}{Introduction}
        % \begin{columns}[t]
        %   \begin{column}{.75\linewidth}
        \begin{itemize}
          % \item Arterial spin labeling (ASL) is a magnetic resonance
          %   imaging (MRI) technique that uses the protons of arterial
          %   blood water molecules as endogenous tracers to evaluate
          %   CBF noninvasively.
        \item Territorial arterial spin labeling (TASL), a modified
          ASL technique, allows for the independent labeling of
          major individual feeding vessels and, consequently,
          visualization of their perfusion territories.
        \item Perfusion territories can change substantially during
          the perioperative periods of carotid endarterectomy (CEA)
          and carotid artery stenting (CAS). Perioperative changes
          in the perfusion territories of major arteries are
          important because these changes can influence the
          perioperative management of hyperperfusion and other
          conditions.

        \end{itemize}
        \vspace{0.5cm}
        \small{
          $\bigstar$ \textbf{Financial Disclosures:} This study was
          supported, in part, by a Grants-in-Aid for Scientific
          Research (C) KAKENHI Number 15K10302 from the Japan
          Society for the Promotion of Science.
        }
      \end{block}

      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

      \begin{block}{Objective}
        The objective of this study was to use TASL to assess the
        relationships between perioperative changes in the perfusion
        territories of the ICA and the CBF increase after carotid
        revascularization in patients with carotid stenosis.
      \end{block}

      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
      \begin{block}{Subjects and Methods}
        \begin{columns}[t]
          \begin{column}{.5\linewidth}
            \centering
            \includegraphics[width=1\linewidth]{Figures/ISC2017-subjects-left_Kohmura_opt.pdf}\\%[1ex]
          \end{column}
          \begin{column}{.5\linewidth}

            \centering
            \vspace{-44cm}
            \includegraphics[width=0.85\linewidth]{Figures/ISC2017-subjects-right_opt.pdf}\\[1ex]

            \begin{itemize}
            \item TASL images were fused with T1 weighed
              images(T1WI) on the software (Osirix) to match with
              anatomical images. Perfusion volume of each ICA was
              calculated from perfusion area and thickness of
              slices.
            \item Asymmetry Index (AI) was also calculated
              from perfused volume of ICA on each side.
              % \item The patients were divided into 2 groups on the
              %   basis of the preoperative perfusion volume of the
              %   stenotic ICA, that is, \textbf{normal PV} (n = 13)
              %   or \textbf{reduced PV} (n = 19) groups.
              % \item \textbf{Normal PV} was defined as $\geq$ -2SD of the
              %   healthy volunteer group, that is, 312.4 cm3.
              % \item \textbf{Reduced PV} was defined as $\textless$
              %   -2SD.
            \end{itemize}
          \end{column}
        \end{columns}
      \end{block}
    \end{column}

    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

    \begin{column}{.32\linewidth}
      \vspace*{-2.35cm}
      \begin{block}{Results}
        \textbf{General postoperative changes in PV of ICA}\\
        \begin{columns}
          \begin{column}{.4\linewidth}
            \vspace*{-17cm}
            \begin{itemize}
            \item The preoperative perfusion volume (\textbf{PV}) of the
              stenotic ICA in the carotid stenosis group was significantly
              smaller than that in the control group. Revascularization
              increased the PV of the stenotic ICA and equalized the PV of
              the ICAs bilaterally.

            \end{itemize}
          \end{column}

          \begin{column}{.6\linewidth}
            \centering
            \includegraphics[width=1\linewidth]{Figures/Figure-2-WNS.pdf}\\
          \end{column}
        \end{columns}
        \vspace*{-0.5cm}
        \begin{itemize}
        \item The patients were divided into 2 groups on the basis of
          the preoperative PV of the stenotic ICA, that is,
          \textbf{normal PV} (n = 13) or \textbf{reduced PV} (n = 19)
          groups.
        \item \textbf{Normal PV} was defined as $\geq$ -2SD of the
          healthy volunteer group, that is, 312.4 cm3.
        \item \textbf{Reduced PV} was defined as $\textless$ -2SD.
        \end{itemize}

        \vspace{0.5cm}

        \textbf{Differential postoperative changes in PV \& CBF }

        \begin{columns}
          \begin{column}{.4\linewidth}
            \vspace*{-18cm}
            \begin{itemize}
            \item \textbf{A:} The changes in the PV of the stenotic ICA
              before and after CEA or CAS in the normal PV group and the
              reduced PV group. After treatment, the PV increases
              significantly in the two groups, while the postoperative
              increase was much larger in the reduced PV group.
            \end{itemize}
          \end{column}

          \begin{column}{.6\linewidth}
            \includegraphics[width=1\linewidth]{Figures/Figure-3-WNS.pdf}\\
          \end{column}
        \end{columns}

        \begin{itemize}
        \item \textbf{B:} The changes in ipsilateral CBF before and
          after CEA or CAS in the normal PV group and the reduced PV
          group. The postoperative increase in the ipsilateral CBF was
          larger in the reduced PV group than in the normal PV group.
        \end{itemize}

        \vspace{0.5cm}

        \textbf{Relationships between postoperative changes in PV \& CBF}

        \begin{columns}
          \begin{column}{.45\linewidth}
            \vspace*{-24cm}
            \begin{itemize}
            \item \textbf{A:} The rate of PV increase is significantly
              higher in the reduced PV group than in the normal PV
              group.
            \item \textbf{B:} The rate of CBF increase is significantly
              higher in the reduced PV group than in the normal PV
              group.
            \item \alert{Red circles} represent 4 patients whose
              postoperative increase in perfusion volume are less
              than lower quartile, and whose increase in CBF is more
              than upper quartile.
            \end{itemize}
          \end{column}

          \begin{column}{.55\linewidth}
            \vspace*{-1.75cm}
            \includegraphics[width=0.96\linewidth]{Figures/Figure-4-WNS.pdf}\\[2ex]

          \end{column}
        \end{columns}

      \end{block}

    \end{column}

    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

    \begin{column}{.32\linewidth}
      \vspace*{-3cm}
      \begin{block}{}
        \textbf{Differential postoperative ICA flow changes}
        \begin{columns}[t]
          \begin{column}{.6\linewidth}
            \begin{itemize}
            \item The preoperative ICA flow was significantly lower in the
              reduced PV group than in the normal PV group.
            \item After treatment, the perfusion volume increases
              significantly in the two groups, while the postoperative
              increase was much larger in the reduced PV group.

            \end{itemize}
          \end{column}

          \begin{column}{.4\linewidth}

            \vspace*{-4cm}
            \centering
            \includegraphics[width=0.8\linewidth]{Figures/Figure-5-WNS.pdf}\\[2ex]

          \end{column}
        \end{columns}

        \textbf{Illustrative cases}
        \begin{itemize}
        \item \underline{Case 6 (normal PV group)}: PV markedly increased 1 day
          after CEA and was nearly unchanged between 1 and 7 days
          after CEA. ICA flow markedly increased after arterial
          reconstruction during CEA. Regional CBF was stable
          throughout the perioperative period.
        \item \underline{Case 8 (reduced PV group)}: PV 1 day after CEA was not
          significantly different from that before surgery, and then,
          it significantly increased between 1 and 7 days after CEA,
          resulting in equalization of the perfusion volumes of the
          left and right ICAs. ICA flow markedly increased after
          arterial reconstruction during CEA. Regional CBF increased
          significantly at 1 day after CEA (CBF increase $\geq$ 100\%),
          representing typical hyperperfusion. Regional CBF decreased
          significantly at 7 days after CEA compared with the first
          postoperative day and returned to its normal range.
        \end{itemize}

        % \vspace{1cm}
        \centering
        \includegraphics[width=0.8\linewidth]{Figures/UsualCase_legend_v2_opt.pdf}\\

      \end{block}

      \vspace*{-0.95cm}
      \begin{block}{Conclusion}
        \vspace*{-1cm}
        \begin{itemize}
        \item TASL demonstrated that CEA and CAS elicited increases in the
          PV of stenotic ICAs, which resulted in equalization of the
          PV of the left and right ICAs.
        \item Patients with reduced PV tended to increase the PV
          more markedly than patients with PV within normal ranges.
        \item In some patients with a reduced PV, the PV increased
          slightly, while the ICA flow markedly increased, which
          resulted in a large increase in CBF or hyperperfusion.
        \item These findings suggested that an imbalance between
          increases in the PV and ICA flow could play an important
          role in the pathophysiology of hyperperfusion.
        \end{itemize}
        \vspace{-1ex}
      \end{block}

      \vspace*{-0.5cm}
      \begin{block}{References}
        \vspace*{-0.75cm}
        \begin{enumerate}
          \scriptsize{
          \item Uchihashi et al. Clinical application of arterial
            spin-labeling MR imaging in patients with carotid
            stenosis: quantitative comparative study with
            single-photon emission CT. AJNR Am J Neuroradiol 32,
            1545--51, 2011
          \item Hartkamp et al. Mapping of cerebral
            perfusion territories using territorial arterial spin
            labeling: techniques and clinical application. NMR Biomed
            26, 901--12, 2013}
        \end{enumerate}
      \end{block}
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

    \end{column}
  \end{columns}
\end{frame}

\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Local Variables:
%%% mode: latex
%%% TeX-PDF-mode: t
%%% TeX-master: t
%%% End:

Templates

Overleaf beamerposter templates : Overleafにあるbeamposterのテンプレート.膨大な数のテンプレートがあるので,参考になる.

Gemini

texliveには含まれていないbeamerの新しいポスター用テーマ

References

Installation

  • 上記のGitHub siteをcloneするかdownloadすれば良い.
  • beamerposterに依存

Usage

  • GitHub siteに書いてある通り

baposter

texliveには含まれていない.より新し目のパッケージ?

References

  • LaTeX Poster Template ご本家.ポスターの実例が数多く挙げられており,FAQもある.

Installation

上記サイトから baposter.tar.bz2 をdownloadする.

Usage

上記サイトや, The baposter latex poster style を参照

Templates

Overleaf baposter templates : Overleafにあるbaposterのテンプレート.

tikzposter

「科学的ポスターを効率的に作成するLaTeXのクラス」である.

References

Installation

texliveをインストールすれば,一緒に入ってくる.

Usage

上記のガイドを参照.最も簡単な例は以下の通り.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
\documentclass{tikzposter}

\title{Title}
\author{Author}
\institute{Institute}

\begin{document}

\maketitle

\block{Block}{Content}
\end{document}

Templates

Overleaf tikzposter templates : Overleafにあるtikzposterのテンプレート.多数のテンプレートがあるので,参考になる.

betterposter

伝統的な学術ポスターに対する新たなスタイルのポスター.実にユニーク!

要するに中核的なメッセージを簡潔な文章で特大に表示し,方法,結果,考察などは極端に簡潔にし,詳細はQR codeから論文を落として読んでもらうという,とんでもない発想のポスターである.

References

Installation

上記の Better Poster Latex Template に詳細に書いてあるが,repositoryをclone するか,ダウンロードして,パスが通るところに置く.

Usage

上記の Better Poster Latex Template を参考.

Inkscape

これはオマケ.なぜかというと,ダントツでかっこいいから(笑).

Making a Math Conference Poster with Inkscape

これを見ると,羨望の念が...でも,Inkscapeを使えるようにならないと...

Creating a Science Conference Poster with Inkscape

こちらも同じく...

まとめ

今回ポスターについてまとめてみて,改めて思ったのは,一旦自分のスタイルが出来上がると,万年一日のごとく,同じフォーマットで作成してしまい,金太郎飴のようになってしまうという事である.もちろん,内容が一番大事なのだが,如何に伝えるかという点でポスターのフォーマットは重要と思う.そういう意味では,betterposterInkscape によるポスターは非常に刺激的であった.特に,betterposterの手法は比較的模倣がしやすそうなので,次回は是非試みてみたい.

Avatar
taipapa
本人ではありません (^^)

Related

Next
Previous
comments powered by Disqus