我正在嘗試為我的論文文檔製作標題。它要求文字左對齊,但居中,如下所示:
我嘗試用這種方法來做:
\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}