如何顯示類似《紐約時報》風格的標題、副標題和來源?

如何顯示類似《紐約時報》風格的標題、副標題和來源?

我想建立一個模仿《紐約時報》Upshot 部落格上使用的樣式的 LaTeX 文件(範例位於紐約時報)。

這是所需的輸出:


所需輸出


它們具有以下特點:

  • 圖形開頭有一條細灰色線
  • 一個大標題
  • 標題下方的較小描述
  • 圖表
  • 圖表下方的腳註大小的“來源”文本
  • 關閉的細灰線

這是我到目前為止所擁有的:

\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}

在此輸入影像描述

相關內容