سلام
شما میتوانید از ساختار زیر برای درج متن در وسط سربرگ کمک بگیرید:
\fancyhead[C]{...}
اینکه چرا عنوان در صفحهای مجزا قرار میگیرد از ویژگیهای عنوان هست.
از بستهی geometry
و به صورت زیر برای تنظیمات هندسی صفحه استفاده کردهام. اندازهها را میتوانید به دلخواه تغییر بدید.
\usepackage[top=3cm,left=1cm,right=2.5cm,bottom=2.5cm]{geometry}
کدهای شما به صورت زیر است:
\documentclass[11pt]{article}
\usepackage[top=3cm,left=1cm,right=2.5cm,bottom=2.5cm]{geometry}
\usepackage{fancyhdr,graphicx}
\usepackage{mwe}
\begin{document}
\title{IJFS \LaTeX\ template}
\author{Iranian Journal of Fuzzy Systems}
\vspace*{24pt} % or whatever is needed
%\section*{A section}
\fancypagestyle{fancylogo}{%
\fancyhf{}%
\fancyhead[L]{xxx%
\parbox[t][0pt][t]{.3\textwidth}{%
\large \textsf{%
Address line 1\\[.1cm]%
Address line 2\\[.1cm]%
Address line 3%
}%
}%
}%
\fancyhead[C]{
\parbox[t][-4pt][t]{.45\textwidth}{%
{\centering
{{\LARGE IJFS \LaTeX\ template}}\\[.1cm]%
{Iranian Journal of Fuzzy Systems}\\[.1cm]%
\hspace*{2.5cm}\today
}%
}%
}
\fancyhead[R]{%
\parbox[b][4pt][t]{.25\textwidth}{%
\vspace{-1cm}% adjust as needed
\includegraphics[width=32mm]{1.jpg}%
}%
}%
\fancyfoot[C]{\thepage}%
\renewcommand{\headrulewidth}{0pt}
}
\thispagestyle{fancylogo}
%\maketitle
%\lipsum[1-7]
\end{document}
خروجی شما با نسخههای اولیهی تکلایو 2018 به صورت زیر است:
البته راههای دیگهای مثل درج تصویر هم میتواند راهی برای انجام اینکار باشد.
موفق باشید.
ویرایش دوم با توجه به سوال شما در قسمت نظرات
اگر منظورتان را درست متوجه شده باشم شما باید از ساختار زیر استفاده کنید (حتما در یک گروهبندی):
\documentclass[11pt]{article}
\usepackage[top=3cm,left=1cm,right=2.5cm,bottom=2.5cm]{geometry}
\usepackage{fancyhdr,graphicx}
\usepackage{mwe}
\begin{document}
\title{IJFS \LaTeX\ template}
\author{Iranian Journal of Fuzzy Systems}
\vspace*{24pt} % or whatever is needed
%\section*{A section}
\fancypagestyle{fancylogo}{%
\fancyhf{}%
\fancyhead[L]{xxx%
\parbox[t][0pt][t]{.3\textwidth}{%
\large \textsf{%
Address line 1\\[.1cm]%
Address line 2\\[.1cm]%
Address line 3%
}%
}%
}%
\fancyhead[C]{
\parbox[t][-4pt][t]{.45\textwidth}{%
{\centering
{{\LARGE text \LaTeX\ text}}\\[.1cm]%
{Iranian Journal of Fuzzy Systems}\\[.1cm]%
\hspace*{2.7cm} text text text
}%
}%
}
\fancyhead[R]{%
\parbox[b][4pt][t]{.25\textwidth}{%
\vspace{-1cm}% adjust as needed
\includegraphics[width=32mm]{1.jpg}%
}%
}%
\fancyfoot[C]{\thepage}%
\renewcommand{\headrulewidth}{0pt}
}
{\let\newpage\relax\maketitle}
\thispagestyle{fancylogo}
\lipsum[1-9]
\newpage
text
\end{document}
موفق باشید.