Skip to main content Skip to navigation

Travelling & Poster

Talks

Talk at the Number Theory Seminar (link)

University of Warwick, Coventry, June 2019

Talk at the Linfoot Number Theory Seminar (link)

University of Bristol, Bristol, March 2019

Attended events

(Organized) Young Researchers in Algebraic Number Theory 2019 (link)

University of Warwick, Coventry, November 2019

Automorphic p-adic L-functions and regulators (link)

Université de Lille, Lille, October 2019.

International Iwasawa Conference 2019 (link)

Université de Bordeaux, Bordeaux, June 2019.

The p-adic Langlands programme and related topics (link)

King's College, London, May 2019.

Young Researchers in Algebraic Number Theory 2018 (link)

University of Sheffield, Sheffield, November 2018

Young Researchers in Mathematics 2018 (link)

University of Southampton, Southampton, July 2018.

The London-Paris Number Theory Seminar (24th meeting) (link)

UCL, London, May 2018

Arizona Winter School 2018 (link)

Southwest Center for Arithmetic Geometry (University of Arizona), Tucson, March 2018.

Recent Developments on the Arithmetic of Special Values of L-functions (link)

EPFL, Lausanne, December 2017.

Special Cycles on Shimura Varieties and Iwasawa Theory (link)

EPFL, Lausanne, August-September 2017

Introductory Workshop on Euler Systems and Special Values of L-functions (link)

EPFL, Lausanne, August 2017

How I made my poster for YRM2018

As I value the sharing of knowledge, I have decided to outline here the method with which I designed the poster I presented at YRM 2018. This a way to make mathematical posters but it is not the only one, probably not even the most popular, but it is the way I chose. I do not claim to be an expert in poster design nor to have mastered the workflow, but I still hope that sharing what I know will help someone else to make a poster without wasting time (the more obscure the information, the higher the risk to reinvent the wheel).

I used only Free Software:

  • Inkscape 0.92.3
  • TeX Live 2017
  • (not essential) I suggest a GNU/Linux distribution, my favourite is Debian

With this combination you can take advantage of Inkscape features for the visual part and have all the text compiled with pdfLaTeX. This means that you have at the same time all the typographical power TeX provides and the help of a vector graphics editor to design the poster.

The workflow is as follow:

  1. open Inkscape and create a new document, setting the size to A0 (or A1);
  2. design your poster as you wish, including both visual items and text. In the final document, the visual items will be exactly as you draw them, so you can freely use all of Inkscape features. The text will be compiled with pdfLaTeX first, and then inserted in the same boxes you are typing it. This means that the positioning may change a bit. Beware of the following:
    • all the text meant to be compiled must be on the same level, and that level should not contain any graphic item;
    • if a box contains too much text that it overflows and becomes "hidden", it will not be compiled and it may throw errors;
    • sometimes, line breaks in the text to be compiled result in errors.
    If you want some text to appear as is (i.e. you do not want it to be compiled), transform it with the option "paths -> from object to path" so it becomes a graphic item. This is useful for example to write the heading, as it will appear as you see it, but of course you cannot include TeX-style maths in these parts.
  3. save the document choosing PDF format. Inkscape then prompts for more option: select "omit text and create a LaTeX file". In this way Inkscape creates two separate files, a PDF with graphics only and a TeX file with the code corresponding to the text and its positioning options;
  4. (now just follow the instructions in the TeX file just created) create a new TeX file with the following body, replacing "filename" with the actual file name:
    \begin{document}
    \begin{figure}
    \centering
    \def\svgwidth{\textwidth}
    \input{filename.pdf_tex}
    \end{figure}
    \end{document}
  5. compile this last with pdfLaTeX and enjoy the output.
Tips & Tricks

Sometimes the final compilation throws an error about pages not found. This is due to the fact that Inkscape may arrange the content on multiple pages when exporting to PDF + TeX, while the pdfLaTeX engine expects everything on a single page. Most of the times the content arranged on pages after the first is useless to the final result, so to fix this error search in the file filename.pdf_tex all the lines containing "page=N" with N greater than 1, and comment them.

Inkscape itself has a plugin which compiles text using the TeX engine and then includes it as an image. This allows the poster maker to do all the work within Inkscape while still typesetting math with (La)TeX. Unfortunately, when I was designing my poster a bug prevented the plugin to work, so I chose the above method. On the other hand, it has the advantage that it keeps the original text, so if you want to change just a little bit you don't have to write everything from scratch (this happens when using the plugin, as images are not editable).