I was wondering how to generate this using LaTeX.
I have seen articles like these but it only gives me for only a subset of what I wanted to do.
I was wondering how to generate this using LaTeX.
I have seen articles like these but it only gives me for only a subset of what I wanted to do.
Here's a simple solution using tcolorbox. Please read the manual for further customization options (it's very detailed).
\documentclass{article}
\usepackage[most]{tcolorbox}
\begin{document}
\begin{tcbraster}[raster columns=2,raster after skip=0pt,raster column skip=0pt]
\begin{tcolorbox}[sharp corners,colback=white,colframe=black]
\footnotesize (Nombre, apellidos y firma)\\\normalsize\vskip2\baselineskip
Presidente/a
\end{tcolorbox}
\begin{tcolorbox}[sharp corners,colback=white,colframe=black]
\footnotesize (Nombre, apellidos y firma)\\\normalsize\vskip2\baselineskip
Secretario/a
\end{tcolorbox}
\end{tcbraster}
\begin{tcbraster}[raster columns=3,raster before skip=-1pt,raster column skip=0pt]
\begin{tcolorbox}[sharp corners,colback=white,colframe=black]
\footnotesize (Nombre, apellidos y firma)\\\normalsize\vskip2\baselineskip
Vocal
\end{tcolorbox}
\begin{tcolorbox}[sharp corners,colback=white,colframe=black]
\footnotesize (Nombre, apellidos y firma)\\\normalsize\vskip2\baselineskip
Vocal
\end{tcolorbox}
\begin{tcolorbox}[sharp corners,colback=white,colframe=black]
\footnotesize (Nombre, apellidos y firma)\\\normalsize\vskip2\baselineskip
Vocal
\end{tcolorbox}
\end{tcbraster}
\end{document}