I'm using the \documentclass{tufte-book} and have a series of longtables for which I wish to place the caption in the margin.
I found a solution to redefine the caption for such tables in this post, which worked perfectly.
\makeatletter
\def\LT@makecaption#1#2#3{%
\noalign{\smash{\hbox{\kern\textwidth\rlap{\kern\marginparsep
\parbox[t]{\marginparwidth}{%
\@tufte@caption@font \@tufte@caption@justification \noindent
#1{#2: }\ignorespaces #3}}}}}}
\makeatother
I'm also placing figures in the margin using the marginfigure but the font size for the captions of these are larger than the other text. I read in the Tufte Example Book that I can customise the style of margin content using (see pg31)...
\setsidenotefont{\footnotesize}
\setcaptionfont{\footnotesize}
\setmarginnotefont{\footnotesize}
\setcitationfont{\footnotesize}
...and these work, but they don't affect the size of fonts for marginfigure and there is no mention/description in the section on marginfigure (see pg23) of how to customise them either. However they all appear to be the same size in the example document
I had a search around and found the recommendation here to use the \usepackage[font=footnotesize]{caption} package/options, and this works, but it over-rides the custom caption defined for placing the caption of longtable in the margin, so its not really a viable option.
Can anyone advise as to how to modify the font size of captions in marginfigure or how to use the caption package but still define longtable captions to be placed in the margin?
Thanks in advance.

longtableI am creating are automatically generated from the statistical package R using thextablepackage, hacking that to match my custom definition isn't practical for me at the moment. I will however get a minimal working example posted next week (deadline looming this week). – slackline Jul 03 '14 at 09:33mcaptionpackage? – Bernard Aug 31 '14 at 23:50