如以下 MWE 所示,我在文档的边缘放置了一个简单的图像。看起来,标题文本与我输入命令的行垂直对齐\marginpar
,而图像位于其上方。有什么方法可以让图像的顶部与包含命令的正文中的文本行对齐吗\marginpar
?我需要能够做到这一点,以便在排版我正在制作的教科书时准确地知道图像将出现在哪里。
谢谢
请不要介意我为了强调我的观点而试图画出的一条非常不直线的线。
\documentclass{report}
\usepackage{caption}
\usepackage{graphicx}
\begin{document}
\chapter{test}
This is a test.\marginpar{
\includegraphics[width=\marginparwidth]{resources/Georg_Cantor2.jpg}
\captionof{figure}{Georg Cantor (1845-1918) was a German mathematician, best known as the inventor of set theory, which has become a fundamental theory in mathematics.}}
\end{document}
答案1
\marginpar{\vskip0pt\includegraphics...}
效果很好。可能不是最佳解决方案,但暂时能用。非常感谢 La Raison。