標題想法幫助

標題想法幫助

我是 LaTeX 新手,我已經創建了一些文檔,但我需要您的幫助來創建一個精美的酷標頭。我想創建一個像這樣的標題:

在此輸入影像描述 不要擔心顏色和字體,範例中有。我將使用預設的 Latex 字體。

我不知道該怎麼做,我在網路上發現我應該使用一些包,如 fancyhdr、graphicx...但我從未使用過這個包。有人可以幫我嗎?教學、想法、程式碼將不勝感激!

答案1

這是帶有套件的代碼titleps

\documentclass[11pt,a4paper]{article}

\usepackage[utf8]{inputenc}
\usepackage[top=50mm, headheight=62pt]{geometry}
\usepackage{titleps}
\usepackage{tabularx, booktabs, multirow}
\usepackage{graphicx, adjustbox, microtype}
\usepackage{lipsum}

\newpagestyle{mypagestyle}{%
\sethead{}{\sffamily%
\begin{tabularx}{\linewidth}[b]{@{}l>{\raggedleft\arraybackslash}X@{}}
\smash{\raisebox{-0.6\height}{\includegraphics[scale=0.2]{loupnorstein2}}}& date \\
\cmidrule[2pt]{2-2}
\addlinespace
& \huge \lsstyle BIG TITLE-MAIN TITLE \\
& theme of the paper\\
\addlinespace
\midrule[0.4pt]
\end{tabularx}%
}{}
\setfoot{}{\thepage}{}
}%

\pagestyle{mypagestyle}

\begin{document}

\lipsum

\end{document} 

在此輸入影像描述

答案2

如果 OP 真正是標題而不是標題:

姆韋

\documentclass[twoside]{article}
\usepackage{geometry}
\geometry{headheight=2cm,headsep=2ex}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{lipsum}
\parindent0pt
\fancyhead[CO]{\includegraphics[width=.15\textwidth]{example-image}%
\parbox[b]{.85\textwidth}{\raggedleft\sffamily\small 
date\\\rule[1ex]{.83\textwidth}{1pt}\\
{\huge BIG TITLE-MAIN TITLE}\\theme of the paper}}
\pagestyle{fancy}
\begin{document}
\lipsum[1-10]
\end{document} 

相關內容