
\vfill
나는 두 개의 별도 테이블 사이에 xtabular
두 번째 테이블을 페이지 맨 아래에 배치하려고 합니다 . 작동하지 않기 때문에 분명히 뭔가 잘못하고 있습니다. 누군가 나에게 조언이나 푸시를 좀 해주실 수 있나요?
편집하다\vfill
을 로 바꾸면 \vspace{2in}
추가 공간이 선언됩니다. 그러나 \vfill
으로 바꾸면 \vspace{\fill}
공간이 없습니다. 그게 단서인지 궁금합니다.
편집 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
편집 3 나는 내 바닥 xltabular를 a 안에 감싸서 minipage
작동했습니다.
==========
\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}