📜  \ hfil-Tex命令(1)

📅  最后修改于: 2023-12-03 15:29:15.199000             🧑  作者: Mango

\hfil-Tex命令

在TeX排版系统中,\hfil是一个常用的命令,它被用来填充空白,使得文本在页面上的对齐更加美观。

语法
\hfil
用法

可以将\hfil命令放在文本之间,也可以放在文本前面或后面。当文本的长度不足以填满一行时,\hfil命令将在两边填充空白,使得文本位于页面中央。

\centerline{\Large\bf This is some text \hfil}

\centerline{\Large\bf This is some text \hfil More Text}

\leftline{\hfil This is some text}

\rightline{This is some text \hfil}
示例

在以下示例中,我们使用\hfil命令填充了空白,使得标题和日期位于页面的左侧和右侧,文章内容位于页面中间。

\documentclass{article}
\usepackage{lipsum}
\usepackage[margin=2cm]{geometry}
\begin{document}
  \begin{center}
    \large\bfseries My Title
  \end{center}
  \begin{flushleft}
    \small\mdseries Date: \today \hfil
  \end{flushleft}
  \lipsum[1-10]
\end{document}

\hfil-Tex命令示例