NY TimesのUpshot Blogで使用されているスタイルを模倣した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}