Skip to content

Commit

Permalink
Add more layout lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
compor committed Sep 24, 2024
1 parent c66d460 commit 8f6e7db
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions paper.tex
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,19 @@
% write widths to file
\makeatletter
\newcommand{\writePageWidths}{
\newcommand{\mylen}{}
\convertToInches{\columnwidth}{\mylen}
\immediate\write\myfile{columnwidth, \mylen,}%
\convertToInches{\textwidth}{\mylen}
\immediate\write\myfile{textwidth, \mylen,}%
\newcommand{\mylen}{}%
\convertToInches{\columnwidth}{\mylen}%
\immediate\write\myfile{columnwidth, \mylen}%
\convertToInches{\textwidth}{\mylen}%
\immediate\write\myfile{textwidth, \mylen}%
\convertToInches{\columnsep}{\mylen}%
\immediate\write\myfile{columnsep, \mylen}%
\convertToInches{\textheight}{\mylen}%
\immediate\write\myfile{textheight, \mylen}%
\convertToInches{\paperwidth}{\mylen}%
\immediate\write\myfile{paperwidth, \mylen}%
\convertToInches{\paperheight}{\mylen}%
\immediate\write\myfile{paperheight, \mylen}%
}
\makeatother

Expand Down

0 comments on commit 8f6e7db

Please sign in to comment.