Skip to content

Instantly share code, notes, and snippets.

@jfloff
Created January 21, 2016 11:44
Show Gist options
  • Save jfloff/58c0b5cf4e9669e14e67 to your computer and use it in GitHub Desktop.
Save jfloff/58c0b5cf4e9669e14e67 to your computer and use it in GitHub Desktop.
Latex Image tips
% 2 images side-by-side aligned bottom for IEEE
\begin{figure*}
\begin{minipage}[t]{\columnwidth}
\centering
\includegraphics[width=\linewidth]{tao}
\caption{The write path for Facebook’s replicated storage. On-path caches are synchronously updated; off-path caches are asynchronously invalidated. There is a single master region for each shard with the root-master cache and master database. Different shards may have masters in different regions. Even though (\textit{6a''}) is depicted in \cite{Lu2015,Bronson2013}, according to \cite{Fisk2013} that interation is actually done through Wormhole (\textit{6b''}). (Adapted from \cite{Lu2015,Fisk2013}) }
\label{fig:tao}
\end{minipage}\qquad
\begin{minipage}[t]{\columnwidth}
\centering
\includegraphics[width=\linewidth]{wormhole}
\caption{Wormhole reads updates from the data storage system transaction logs and transmits them to interested applications that include News Feed, index servers, Graph Search and many others. (Adapted from \cite{Sharma2015})}
\label{fig:wormhole}
\end{minipage}
\end{figure*}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment