第一頁標題

第一頁標題

我再次需要你的寶貴幫助。特別是,我想知道如何製作首頁標題。我想獲得的結果是這樣的:

在此輸入影像描述

圖中,我使用了文字處理程序,但標題/作者佈局應該是標準的。先感謝您!

答案1

如果您只想將其放在一頁上,則可以放置一些節點並在其中輸入一些文字。

方框繪製範例:

在此輸入影像描述

沒有盒子的情況下:

在此輸入影像描述

MWE(未繪製方塊)

\documentclass{article}
\usepackage{tikz}

\author{Roald}
\title{Header test}

\begin{document}
\maketitle  
    \tikzstyle{header} = [minimum height=2 cm, minimum width=2 cm, text width=1.5 cm, align=center]
    \begin{tikzpicture}[remember picture, overlay]
        \node[header, below right] at (current page.north west) {Left text. An then some.};

        \node[header, below left] at (current page.north east) {Right text. And then some};
    \end{tikzpicture}   
\end{document}

相關內容