侧字幕和回忆录对齐问题

侧字幕和回忆录对齐问题

我尝试将 sideCaption 与回忆录类一起使用,但遇到了两个问题(图像中的红色注释1):

  • sideCaption 不尊重左边距......
  • 我怎样才能告诉 saidCaption 将图形名称与图形顶部对齐?

最小代码:

\documentclass[a4paper, 12pt,twoside, openright]{memoir}
\usepackage{polyglossia}
\setdefaultlanguage{french}
\usepackage{fontspec}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage[autostyle=true,french=guillemets,maxlevel=3]{csquotes}
\usepackage{xparse}
\usepackage{graphicx}
\usepackage[protrusion=true]{microtype}

\graphicspath{{FigureIntroduction/}}

\makeatletter
\renewcommand{\fnum@figure}[1]{\textbf{\figurename~\thefigure}}
\makeatother

\begin{document}

\chapterstyle{bringhurst}

\begin{figure}[!h]
\begin{sidecaption}[fortoc]{Le "champignon informationnel" proposé par Frédéric Kaplan est révélateur de l'augmentation du champs d'expérimentation rendu possible par la numérisation des données, puis la simulation numérique.}[fig:I_Champi]
 %\centering
 %\resizebox*{\textwidth}{!}{\includegraphics{champignonKaplan.png}}
 \includegraphics[width=\linewidth]{champignonKaplan.png}
  \end{sidecaption}
\end{figure}

\end{document}

结果 :

在此处输入图片描述

答案1

我认为你更希望标题位于外边距,因此你可以说

\sidecapmargin{outer}

的宽度sidecap由长度定义\sidecapwidth,默认情况下为\marginparwidth,因此要修改它,请使用\setlength\sidecapwidth{<length of your choice>}。我个人只使用外边距。

要修复对齐问题,请执行以下操作

\setsidecappos{t}

这在第 10.10 节中进行了描述侧边字幕memoir手册中。

完整代码:

\documentclass[a4paper, 12pt,twoside, openright]{memoir}
\usepackage[demo]{graphicx}
\sidecapmargin{outer}
\setsidecappos{t}
\makeatletter
\renewcommand{\fnum@figure}[1]{\textbf{\figurename~\thefigure:} }
\makeatother
\begin{document}

\begin{figure}
\begin{sidecaption}{Le "champignon informationnel" proposé par Frédéric Kaplan est révélateur de l'augmentation du champs d'expérimentation rendu possible par la numérisation des données, puis la simulation numérique.}[fig:I_Champi]
 %\centering
 %\resizebox*{\textwidth}{!}{\includegraphics{champignonKaplan.png}}
 \includegraphics[width=\linewidth]{champignonKaplan.png}
  \end{sidecaption}
\end{figure}
\end{document}

在此处输入图片描述

相关内容