我曾见过类似文章这些但它只给了我想要做的一小部分。
答案1
这是一个使用 的简单解决方案tcolorbox
。请阅读手册以了解更多自定义选项(非常详细)。
\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}