我怎样才能将某些内容放在小页面的外面?

我怎样才能将某些内容放在小页面的外面?

以下是我想做的事情:

enter image description here

也就是说,我希望版权符号与o中的最后一个对齐Foo。下面是我迄今为止的代码。

\documentclass{article}
\usepackage{graphicx}

\begin{document}
\begin{minipage}{100mm}
\begin{flushright}
\resizebox{30mm}{!}{Foo}\\ %\textcopyright should go here!
Bar
\end{flushright}
\end{minipage}

\end{document}

答案1

因为它看起来像是一次性的事情,所以我只应用了一些负的字距和一个\raisebox

\documentclass{article}
\usepackage{graphicx}

\begin{document}
\begin{minipage}{100mm}
\begin{flushright}
\resizebox{30mm}{!}{Foo}\\ %\textcopyright should go here!
Bar
\end{flushright}
\end{minipage}%
\kern-2pt\raisebox{6.9pt}{\copyright}

\end{document}

enter image description here

相关内容