横向公式作为保证金说明

横向公式作为保证金说明

如何将方程式横排在边缘处?

\documentclass{scrartcl}
\usepackage[showframe,
            textwidth=8cm,
            textheight=5cm]{geometry}
\usepackage{mathtools}
\usepackage{marginnote}

\begin{document}
\noindent X\dotfill X
%
\begin{align*}
  \sin^2 \theta &= 1-\cos^2 \theta\marginnote{$\cos^2\theta+\sin^2\theta=1$ } \\
  c &= d 
\end{align*} 
\end{document}

答案1

您可以使用\rotatebox(参见grfguide更多信息)来旋转方程,例如,

\documentclass{scrartcl}
\usepackage[showframe,
            textwidth=8cm,
            textheight=5cm]{geometry}
\usepackage{mathtools}
\usepackage{marginnote}

\begin{document}
\noindent X\dotfill X
%
\begin{align*}
  \sin^2 \theta &= 1-\cos^2 \theta\marginnote{\rotatebox{90}{$\cos^2\theta+\sin^2\theta=1$ }} \\
  c &= d 
\end{align*}

\end{document}

页边距包含旋转方程式的页面

相关内容