Skip to content

Commit

Permalink
adding basic 1-120 numbered test PDF + link to it in README on Rhi's …
Browse files Browse the repository at this point in the history
…suggestion
  • Loading branch information
sithel committed Jan 26, 2023
1 parent f9f7cd5 commit 6a58811
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ And load `index.html` in any modern web browser.

## Auditing Results

There's 3 sample PDFs (and the `.tex` files to generate them) in landscape/portrait/square proportions filled with lorum ipsum and colored backgrounds to help test the positioning of the layouts. They are found in the [`/docs`](/docs) directory. A basic export of the different layouts with proportional/snug settings have been recorded for comparison/reference as well as several shots of `centered` settings. These can be found in the [`/docs/examples`](/docs/examples) folder.
In the [`/docs`](/docs) directory:

- There's 3 sample PDFs (and the `.tex` files to generate them) in [landscape](/docs/example_50cm_wide_10cm_tall.pdf)/[portrait](/docs/example_15cm_wide_40cm_tall.pdf)/[square proportions](/docs/example_20cm_square.pdf) filled with lorum ipsum and colored backgrounds to help test the positioning of the layouts.
- There's [a basic PDF](/docs/example_page_numbers.pdf) with just the numbers 1-120 writ large, used for figuring out page ordering.
- A basic export of the different layouts with proportional/snug settings have been recorded for comparison/reference as well as several shots of `centered` settings. These can be found in the [`/docs/examples`](/docs/examples) folder.

Snapshot of layout proof summary as of 2022-08-14
![Snapshot of layout proof summary 2022-08-14](/docs/examples_summary_snapshot_2022_08_14.png)
Binary file added docs/example_page_numbers.pdf
Binary file not shown.
30 changes: 30 additions & 0 deletions docs/example_page_numbers.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
\documentclass[showtrims]{memoir}

\usepackage{pgffor}
\usepackage[margin=0in]{geometry}

\setstocksize{6cm}{4cm}
\settrimmedsize{6cm}{4cm}{*}
%\addtolength{\textwidth}{8cm}
%\addtolength{\textheight}{8cm}

\setbinding{0cm}
\setlrmarginsandblock{0cm}{0cm}{*}
\setulmarginsandblock{0cm}{0cm}{*}

\begin{document}

\pagenumbering{gobble}

\begin{center}

\HUGE

\foreach \n in {1,...,120}{
\vspace*{1.5cm} \underline{\n} \newpage
}

\end{center}


\end{document}

0 comments on commit 6a58811

Please sign in to comment.