如何将方程式横排在边缘处?
\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}