(Fancyhdr) 텍스트를 중앙에 배치하지만 왼쪽에 정렬하는 방법은 무엇입니까?

(Fancyhdr) 텍스트를 중앙에 배치하지만 왼쪽에 정렬하는 방법은 무엇입니까?

논문 문서의 헤더를 만들려고 합니다. 다음과 같이 텍스트를 왼쪽 정렬하되 가운데 정렬해야 합니다.

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

나는 이 접근 방식으로 그것을 시도했습니다.

\documentclass[12pt]{report}
%other packages
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
% ------- PORTADA ------- 

\title{PORTADA}
\author{}
\date{}

\begin{document}

\maketitle

\fancyhead{}
\fancyfoot{}    
\fancyhead[L]{\centering{Some text

some really long long long long text

other long looong text}}
\fancyhead[R]{Some text

}
\fancyheadoffset[lh]{2cm}

결과는 다음과 같습니다.

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

어떻게 이를 달성할 수 있나요?

답변1

표 형식의 중앙 셀에 자료를 넣을 수 있습니다(그리고 열 사이의 공간을 제거하여 @{}텍스트가 바로 왼쪽 여백에 위치하도록).

나는쇼프레임레이아웃을 더 잘 시각화하기 위한 패키지입니다.

\documentclass[12pt]{report}
%other packages
\usepackage{showframe} % to show the frames of the page

\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}

\fancyhead{}
\fancyfoot{}    
\fancyhead[L]{\begin{tabular}{@{}c} 
Some text \\
some really long long long long text\\ 
other long looong text
\end{tabular}}

\fancyhead[R]{Some text}

% dimensions suggested by the fancyhdr package when theses two lines are commented
\setlength{\headheight}{43.5pt} 
\addtolength{\topmargin}{-2pt}

\usepackage{lipsum} % dummy text

% ------- PORTADA ------- 

\title{PORTADA}
\author{}
\date{}

\begin{document}

\maketitle

\lipsum[1]

\end{document}

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

관련 정보