i use itemize in posterbox. And space between items is different. When i add "\vspace*{xcm}, right alignment is changed.
My MWE:
\documentclass{article}
\usepackage{tikz}
\usepackage{tcolorbox}
\tcbuselibrary{poster}
\usetikzlibrary{positioning}
\usepackage{lipsum}
\usepackage{xcolor}
\usepackage{bbding}
\usepackage{pifont}
\newcommand*\cir[1]{\tikz[baseline=(char.base)]{
\node[shape=circle,draw,inner sep=2pt] (char) {#1};}}
\begin{document}
\begin{tcbposter}[
poster = {
columns=1,
rows=2,
spacing=3mm,
height=14cm,
width=12cm,
},
]
\posterbox[
colframe = red,
width=4cm, height= 3cm
]
{column=1}{
\vspace*{-0.3cm}
\begin{itemize}
\item a \hfill \textcolor{blue}{\ding{52}}
\vspace*{0.4cm}
\item b \hfill
\textcolor{red}{\ding{55}}
\vspace*{-0.3cm}
\item c \hfill \textcolor{blue}
{\tiny{\cir{C}}}
\textcolor{red}{\ding{55}}
\end{itemize}
}
\end{tcbposter}
\end{document}
I need your solution for: 1/ right aligment, with different space between items (use vspace or alternativ)
2/ right margin reduced: ex: 2mm


tcbpostersolution. – Apr 15 '19 at 03:43