
Latex Posters
Generate a professional multi-column research poster from a structured baposter LaTeX template instead of fighting layout from scratch.
Install
npx skills add https://github.com/davila7/claude-code-templates --skill latex-postersWhat is this skill?
- baposter-based a0 portrait template with configurable column grid (default 3 columns)
- Pre-wired packages: graphicx, amsmath, booktabs, multicol, qrcode, hyperref
- Header, background, and border styling hooks with grid debug mode
- Structured poster content blocks below a clear customize section
- Suited to academic, demo-day, and technical showcase posters
Adoption & trust: 542 installs on skills.sh; 27.8k GitHub stars; 2/3 security scanners passed (skills.sh audits).
Recommended Skills
Lark Maillarksuite/cli
Lark Slideslarksuite/cli
Pptxanthropics/skills
Pdfanthropics/skills
Lark Markdownlarksuite/cli
Docxanthropics/skills
Journey fit
Primary fit
Research and conference posters are documentation deliverables produced while building credibility for a product or study—shelved under Build → docs. Docs subphase covers formal written/visual artifacts (guides, papers, posters) that explain what you built or validated.
Common Questions / FAQ
Is Latex Posters safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Latex Posters
% ============================================================================== % Research Poster Template - baposter % ============================================================================== % A structured, professional poster template using baposter % Excellent for multi-column layouts with automatic positioning % ============================================================================== \documentclass[a0paper,portrait,fontscale=0.285]{baposter} % Packages \usepackage{graphicx} \usepackage{amsmath,amssymb} \usepackage{booktabs} \usepackage{multicol} \usepackage{qrcode} \usepackage{hyperref} \usepackage{enumitem} % Set list spacing \setlist{nosep} % ============================================================================== % POSTER CONTENT - CUSTOMIZE BELOW % ============================================================================== \begin{document} \begin{poster}{ % ============================================================================ % POSTER CONFIGURATION % ============================================================================ % Grid and columns grid=false, % Set to true for debugging layout columns=3, % Number of columns colspacing=1.5em, % Space between columns % Background background=plain, % plain, shadetb, shadelr bgColorOne=white, bgColorTwo=white, % Borders borderColor=blue!50!black, linewidth=2pt, % Header headerColorOne=blue!70!black, headerColorTwo=blue!60!black, headerFontColor=white, headerheight=0.12\textheight, headershape=roundedright, % rectangle, rounded, roundedright, roundedleft headershade=plain, % plain, shadetb, shadelr headerborder=closed, % open, closed headerfont=\Large\sf\bf, % Boxes boxColorOne=white, boxColorTwo=blue!10, boxshade=plain, textborder=roundedleft, % none, rectangle, rounded, roundedleft, roundedright % Eye catcher eyecatcher=true } % ============================================================================ % HEADER CONTENT % ============================================================================ % Eye Catcher (Left Logo) { \includegraphics[height=6em]{logo1.pdf} } % Title { \sf\bf Your Research Title: Concise and Descriptive } % Authors { \vspace{0.3em} Author One\textsuperscript{1}, Author Two\textsuperscript{2}, \underline{Presenting Author}\textsuperscript{1}\\[0.3em] {\small \textsuperscript{1}Department, University Name, City, Country\\ \textsuperscript{2}Research Institute Name, City, Country} } % University Logo (Right) { \includegraphics[height=6em]{logo2.pdf} } % ============================================================================== % LEFT COLUMN % ============================================================================== \headerbox{Introduction}{name=intro,column=0,row=0}{ \textbf{Background} Brief context establishing the importance of your research area (1-2 sentences). \vspace{0.3cm} \textbf{Problem Statement} What gap or challenge does your work address? (1-2 sentences) \vspace{0.3cm} \textbf{Objective} Clear statement of your research goal (1 sentence). } \headerbox{Methods}{name=methods,column=0,below=intro}{ \textbf{Study Design} \begin{itemize} \item Experimental approach or study type \item Sample: n = X participants/samples \item Key procedures \end{itemize} \vspace{0.3cm} \textbf{Analysis} \begin{itemize} \item Statistical methods \item Software: R 4.3, Python 3.10 \item Significance: p < 0.05 \end{itemize} \vspace{0.3cm} \begin{center} \includegraphics[width=0.9\linewidth]{methods_flowchart.pdf} \end{center} } % ============================================================================== % MIDDLE COLUMN (SPANS 2 COLUMNS FOR LARGE RESULT) % ==========================================================================