
Estou tentando usar um \vfill
intervalo entre duas xtabular
tabelas separadas, para colocar a segunda no final da página. Claramente estou fazendo algo errado, porque não está funcionando. Alguém pode me dar uma indicação ou um empurrão?
EDITAR Se eu substituir \vfill
por \vspace{2in}
, recebo o espaço extra declarado. No entanto, substituir \vfill
por \vspace{\fill}
não me dá espaço. Eu me pergunto se isso é uma pista.
EDITAR 2
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020 on Slackware) (preloaded format=latex)
restricted \write18 enabled.
entering extended mode
(./foo.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-06-03>
(/usr/share/texmf-dist/tex/latex/base/article.cls
Document Class: article 2019/12/20 v1.4l Standard LaTeX document class
EDITAR 3 Enrolei meu xltabular inferior dentro de um minipage
e funcionou.
==========
\documentclass{article}
\RequirePackage[letterpaper,margin=.5in,nohead]{geometry}
\usepackage{xltabular}
\raggedright
\begin{document}
\fontfamily{pbk}\fontsize{12pt}{16pt}\selectfont
\tt
\begin{xltabular}{\textwidth}{X r r r r}
Game Name & Price & Listing & Commiss & Total \\
\hline
\end{xltabular}
\vfill
\begin{xltabular}{0.75\textwidth}{|X|}
\hline
GIFT CERTIFICATE TO CANTON GAMES FOR KURT RUNCO\\
\hline
\end{xltabular}
\end{document}