我是制作漂亮、“复杂”乳胶封面的新手,我需要你的帮助。我有以下非常简单的封面页,但我真的很想让它看起来像这样(作为结构)结构良好。 我见过这个问题这对我探索不同风格来说是一个很好的开始,我想要一些与例子类似的东西。
有人知道类似的模板吗?
\RequirePackage{filecontents}
\documentclass[12pt,a4paper]{article}
\usepackage{titling}
\usepackage[utf8]{inputenc}
\usepackage{tcolorbox}
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage{mwe}
\usepackage{subfig}
\usepackage{float}
\usepackage{authblk}
\usepackage{afterpage}
\usepackage[T1]{fontenc}
\usepackage{booktabs}
\usepackage{fancyhdr}
\usepackage{array}
\usepackage{pdflscape}
\usepackage{array,ragged2e,booktabs}
\usepackage{tikz}
\usepackage{capt-of}
\usepackage{tabularx}
\usetikzlibrary{shapes.geometric, arrows}
\pagestyle{fancy}
%\fancyhf{}
\lhead{}
\makeatletter
\def\thanks#1{\protected@xdef\@thanks{\@thanks
\protect\footnotetext{#1}}}
\makeatother
\renewcommand\tabularxcolumn[1]{m{#1}}
\newcolumntype{C}{>{$\displaystyle}c<{$}}
\bibliographystyle{apalike}
\begin{document}
\title{\vspace{-3.0cm}\rule{\textwidth}{1pt}\\My title here\\\vspace{1.0cm}\rule{\textwidth}{1pt}\\{\Large Report}}
\author{my name\thanks{my school}}
\maketitle
\end{document}
答案1
这应该可以帮助你入门。
\documentclass[a4paper,titlepage]{article}
\usepackage[spanish]{babel}
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usepackage{titling}
\makeatletter
\newcommand{\subtitle}[1]{%
\gdef\@subtitle{#1}}
\newcommand{\@subtitle}{}
\renewcommand{\maketitlehooka}{%
\begin{tikzpicture}[remember picture, overlay, outer sep=0pt, inner sep=0pt]
\node (image) [anchor=north] at (current page.north)
{\includegraphics[width=\paperwidth,height=0.9\paperheight]{%
example-image.jpg}};
\fill [blue!60!black, opacity=0.7] (current page.north west) rectangle
([yshift=-0.3\paperheight]current page.north east)
node (title) [text=white, opacity=1.0, text width=17cm, align=flush center,
font=\sffamily\Huge\bfseries] at (current path bounding box.center)
{\@title};
\node (subtitle) [text=white, font=\sffamily\huge\bfseries, below=of title]
{\@subtitle};
\shade [top color=black, bottom color=brown] (image.south west) rectangle
(current page.south east)
node (logo) [xshift=-1cm, anchor=east]
at (current path bounding box.east)
{\includegraphics[height=2cm]{example-image-a.jpg}};
\end{tikzpicture}%
\title{}%
}
\makeatother
\begin{document}
\title{Manual de construcción de ecuaciones alométricas para estimar el
volumen y la biomasa de los árboles}
\subtitle{Del trabajo de campo a la predicción}
\author{}
\date{}
\maketitle
\end{document}