We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
showframe
reversemarginpar
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the reversemarginpar option, the frames for the marginpar are shown in the original position, rather than the reversed position. This seems to be a simple oversight caused by the frame code (https://github.com/LaTeX-Package-Repositories/geometry/blob/main/geometry.dtx#L3418-L3460) not checking the reversemarginpar option.
The text was updated successfully, but these errors were encountered:
Quick workaround that patches the margin frames with a conditional on reversemarginpar until this can be fixed inside geometry:
\makeatletter \newcommand*{\leftmarginframe}{} \newcommand*{\rightmarginframe}{} \let\rightmarginframe\Gm@vrules@mpi{} \let\leftmarginframe\Gm@vrules@mpii{} \renewcommand*{\Gm@vrules@mpi}{% \if@reversemargin{} \leftmarginframe{} \else \rightmarginframe{} \fi} \renewcommand*{\Gm@vrules@mpii}{% \if@reversemargin{} \rightmarginframe{} \else \leftmarginframe{} \fi} \makeatother
Sorry, something went wrong.
No branches or pull requests
When using the
reversemarginpar
option, the frames for the marginpar are shown in the original position, rather than the reversed position. This seems to be a simple oversight caused by the frame code (https://github.com/LaTeX-Package-Repositories/geometry/blob/main/geometry.dtx#L3418-L3460) not checking thereversemarginpar
option.The text was updated successfully, but these errors were encountered: