我想创建一个 LaTeX 文档,模仿纽约时报 Upshot 博客使用的风格(示例位于纽约时报)。
所需的输出如下:
它们具有以下特点:
- 图形开头的一条细灰线
- 大标题
- 标题下方的较小描述
- 图表
- 图表下方的脚注大小的“来源”文本
- 一条细细的灰线结束
这是我目前所拥有的:
\documentclass{article}
% Helps the layout (put tables (H)ere!)
\usepackage{float}
\floatstyle{ruled}
\restylefloat{figure}
\begin{document}
\section{Chart Example}
This is some text above the chart.
<<fig.cap="Chart showing Cars Data", fig.pos="H", echo=FALSE, message=FALSE>>=
plot(cars)
@
And here is some text below the chart.
\end{document}