첫 번째 페이지 헤더

첫 번째 페이지 헤더

다시 한 번 여러분의 소중한 도움이 필요합니다. 특히, 첫 페이지 헤더를 어떻게 만드는지 궁금했습니다. 내가 얻고 싶은 결과는 다음과 같습니다.

여기에 이미지 설명을 입력하세요

사진에서는 워드프로세서를 사용했지만 제목/저자 레이아웃은 표준으로 되어 있어야 합니다. 미리 감사드립니다!

답변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}

관련 정보