我正在寻找一个 LaTeX 模板,可用于类似小册子的新闻稿、A4 格式、带有可选跨度图片、无边距图片、无边距标题的列式设计。
我浏览了很多包含 Latex 模板的存储库,但是,它们中的大多数看起来太像 Latex,即显示太多文本和标准边距。我喜欢关注优雅的布局、少量文本和令人印象深刻的图片。
我有为科学用途进行 LateX 布局的经验。但这是我第一次接触公众宣传,我对如何实现这一目标一无所知。我的第一个想法是只使用 tikz 图片和文本字段,但这不是一种优雅的排版方式,而且据我所知,文本字段框由于其固定大小而不会浮动。
在 Latex 而不是 InDesign 或 Corel 中执行此操作非常重要,因为应该定期自动使用 Markdown 创建内容。
答案1
我发现这个解决方法对于大多数需求来说都足够方便。但是,它并不完美,我仍然愿意听取其他建议。
\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lipsum}
\usepackage{xcolor} % allow color!ratio
\usepackage{hyperref} % allow phantomsection
%%% figures
\usepackage{graphicx} % includegraphics
\usepackage{float} % minipage float
%%% Geometry
\usepackage[includeheadfoot,left=0cm, right=0cm,
top=0cm, bottom=0cm, headheight=70pt,
headsep=0cm,footskip=0cm]{geometry}
%%% Head & Foot
\usepackage{fancyhdr}
\fancypagestyle{mypages}{%
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\fancyhead[L]{%
\strut\rlap{\color{gray}\rule[-2\dp\strutbox]{\headwidth}{\headheight}}%
\quad\raisebox{-0.05\height}{\includegraphics[scale=1]{logo.pdf}}%
\fontsize{25pt}{30pt}\selectfont
\textcolor{white}{$\;$ version \bfseries 5}
\textcolor{gray!30}{ \bfseries: Newsletter}
}
\fancyhead[R]{\color{white}page \bfseries\thepage\quad}
\fancyfoot{}
}
\pagestyle{mypages}
% sections
\usepackage[explicit]{titlesec}
\titleformat{name=\section}
{% format
\pagebreak[3]
\vspace{1em}
\color{gray!10}\titlerule[6pt]\color{black}
\vspace*{2em}
\huge
\bfseries }
{} % label
{0em} % label sep
{\hspace{0.05\textwidth}%
\parbox[t]{0.9\textwidth}{\raggedright#1}}
[\phantomsection] % before
% Disclaimer box
\newenvironment{bottompar}{\par\vspace*{\fill}}{\clearpage}
%%%
\begin{document}
% Introduction
\setlength{\fboxsep}{15pt}
\noindent\colorbox{gray!20}{\parbox[t]{\dimexpr\textwidth-30pt}{\color{gray}
This is a newsletter presenting interesting topics.
}}\vspace*{-1cm}
% Content
\section{Long and catchy headline for article 1}
\noindent\begin{minipage}[t]{0.5\textwidth}\vspace{-2em}
\begin{figure}[H]%
\includegraphics[width=\textwidth]{foto.jpg}
\end{figure}
\end{minipage}
\hspace{0.03\textwidth}
\noindent\begin{minipage}[t]{0.4\textwidth}
\lipsum[1-2]
\end{minipage}
\section{Long and catchy headline for article 2}
\noindent\begin{minipage}[t]{0.5\textwidth}\vspace{-2em}
\begin{figure}[H]%
\includegraphics[width=\textwidth]{foto.jpg}
\end{figure}
\end{minipage}
\hspace{0.03\textwidth}
\noindent\begin{minipage}[t]{0.4\textwidth}
\lipsum[1]
\end{minipage}
\section{Long and catchy headline for article 3}
\noindent\begin{minipage}[t]{0.5\textwidth}\vspace{-2em}
\begin{figure}[H]%
\includegraphics[width=\textwidth]{foto.jpg}
\end{figure}
\end{minipage}
\hspace{0.03\textwidth}
\noindent\begin{minipage}[t]{0.4\textwidth}
\lipsum[1-3]
\end{minipage}
% Disclaimer
\begin{bottompar}
\setlength{\fboxsep}{15pt}
\noindent\colorbox{gray!20}{\parbox[t]{\dimexpr\textwidth-30pt}{\color{gray}
This is the disclaimer for this great newsletter \hfill \copyright{} 2016}}
\end{bottompar}
\end{document}