Estoy intentando hacer un encabezado para mi documento de tesis. Requiere que el texto esté alineado a la izquierda, pero centrado, así:
He intentado hacerlo con este enfoque:
\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}
Y el resultado es este:
¿Cómo puedo lograr eso?
Respuesta1
Puede colocar el material en una celda centrada de una tabla (y eliminar el espacio entre columnas para @{}
que el texto quede inmediatamente en el margen izquierdo).
He añadido elmarco de exposiciónpaquete para una mejor visualización del diseño.
\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}