LaTeX에서 빈 공간 자동으로 채우는 방법
Code
If you want to place any equations or images at the bottom of the document, you can use \vfill
. This will fill the empty space vertically. If you want to fill the empty space horizontally, use \hfill
.
\documentclass{article}
\usepackage[a6paper]{geometry}
\begin{document}
aaaaaaaaaa \hfill bbbbbbbbbbbb
\vfill
cccccccccc
\end{document}