标题页底部有线条和左调整的作者姓名

标题页底部有线条和左调整的作者姓名

我有以下设置了标题页的乳胶测试文档。

希望在标题下方有一条粗水平标线。我还希望将作者姓名放在底部,调整到左侧,下方有一条较细的标线。


    
\documentclass[12pt]{book}
    
    
    
    \usepackage{geometry}
     
    \geometry{ paperheight=21cm, paperwidth=21cm, left=8mm, right=8mm, top=21mm, bottom=8mm}
    
    
    
    \begin{document}
    
    
    
    \begin{titlepage}
    
    
      \begin{center}

        \title{Fredholm Integral Transforms}
    
      \end{center}
    
    
      \author{An Author}
    
      \date{\today}
    
\end{titlepage}
    
    
    
    \maketitle
    
    
    hello world
    
    
    
    \end{document}
    

答案1

希望这可以满足您的要求!!

\documentclass[12pt]{book}
    
    \usepackage{geometry}
    \geometry{ paperheight=21cm, paperwidth=21cm, left=8mm, right=8mm, top=21mm, bottom=8mm}

\usepackage{ulem}    
\usepackage{etoolbox}%
    \begin{document}
\apptocmd{\title}{\raggedright}{}{}%
\apptocmd{\author}{\raggedright\vfill}{}{}%    
    \begin{titlepage} 
    
        \title{\uline{Fredholm Integral Transforms}}

      \author{An Author}    
      \date{\today}
\end{titlepage}
    
    \maketitle
    
hello world
    
    \end{document}

相关内容