标题创意帮助

标题创意帮助

我是 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} 

相关内容