Skip to content

PrintANotebook lets you create custom notebooks with page numbers and your favorite designs!

License

Notifications You must be signed in to change notification settings

LPBeaulieu/Notebook-Maker-PrintANotebook

Repository files navigation

PrintANotebook

PrintANotebook lets you create your own notebooks, complete with page numbering and your favorite designs!

PrintANotebook Thumbnail

PrintANotebook

License: AGPL-3.0 GitHub issues Linux macOS Windows


PrintANotebook is a tool allowing you to create your own personalized notebooks, complete with page numbering, personalized headings, and your choice of any combination of either blank pages, ruled lines, dot grid or graph pages. You can even select your own designs to create some nifty planners! PrintANotebook also lets you personalize the cover with your favorite graphic design, and the text of your choosing on the front cover and spine of the notebook!

Be sure to also check out my other gihub repo ScriptReader (https://github.com/LPBeaulieu/Handwriting-OCR-ScriptReader), for instructions on how to perform Optical Character Recognition (OCR) on some text that you wrote in a specially designed notebook created with PrintANotebook. You could even print the notebook on transparencies and use my DIY biodegradable, wet erase fountain pen ink! Check out my Instructables article for the ink recipe: https://www.instructables.com/Recipe-for-a-Multipurpose-Biodegradable-and-Wet-Er/.


📝 Table of Contents

⛓️ Limitations

The code for cover image generation was optimized on notebooks having at least 100 pages (of 20 lb bond paper). However, I typically generate notebooks having a total of around 200 pages, and print them on 28 lb bond perforated paper from the Perforated Paper company, which works wonderfully with my homemade biodegradable phycocyanin fountain pen ink (https://www.instructables.com/Recipe-for-a-Biodegradable-Blue-Ink-for-Fountain-P/), which lends itself very nicely to writing on both sides of the sheet of paper with minimal bleeding and ghosting. Moreover, the perforations of this paper are quite precise, with only slight spine sanding being required in order to craft professional looking notebooks. While I’m not affiliated with this company in any way, I find that their paper is very smooth and gives good results when binding books. They also sell some 24 lb bond perforated paper in cream color. Check them out at www.perforatedpaper.com!

Figure 1


Figure 1. Here is my review of the 28 lb perforated paper from the Perforated Paper company with the blue spirulina (phycocyanin) fountain pen ink that I have formulated! The ink is more saturated on the actual sheet (a few shades darker, actually), but this gives a good general idea of how it behaves on this paper. It shows some very modest water resistance, but care should still be taken to avoid exposing the pages to moisture.


🏁 Getting Started

The following instructions will be provided in great detail, as they are intended for a broad audience and will allow to run a copy of PrintANotebook on a local computer. You can also view the YouTube version of the instructions at the following link: https://www.youtube.com/watch?v=ycg2PL3bQQ4&list=PL8fAaOg_mhoGncGBjwn9A740Hh8IppOPH&index=2

The instructions below are for Windows operating systems, but the code should run nicely on Linux and Mac-OS as well.

Step 1- Hold the "Shift" key while right-clicking in your working folder and select "Open PowerShell window here" to access the PowerShell in your working folder. Then, install NumPy and Pillow (Required Python modules to generate the cover image) by entering the following command:

py -m pip install NumPy --upgrade Pillow

Step 2- You're now ready to use PrintANotebook! 🎉


🎈 Usage

Step 1 In the "Cover font TTF file" folder within your working folder, you need to have exactly one True Type Font file (.ttf) for the cover text font. When you set up your system, the "Baskerville" TTF file will be included in this folder by default. Similarly, another TTF font file needs to be included in the "Header and footer font TTF file" subfolder for the headings and page numbers (the "Baskerville" TTF file is also included in this folder by default).

Step 2- A JPEG image for the cover illustration in legal paper size and landscape format (4200 pixels in width and 2550 pixels in height) needs to be included in the working folder. Its file name must start with "Cover", so that the code may recognize it. You can find instructions on preparing such background images by viewing the following YouTube video (https://www.youtube.com/watch?v=xPY7dMcKfVY). A public domain background image by Karen Arnold is provided in the working folder, which you could replace with your own preferred image.

Step 3- With every file in its right place, it is now time to run the code! Start by holding the "Shift" key while right-clicking in your working folder, then select "Open PowerShell window here" to access the PowerShell in your working folder and enter the commands described below. The following figures will explain which arguments should be added after the Python code call in order to generate different types of notebooks. In all cases, you will need to pass in the width or thickness of a ream of 500 pages of the paper that you will be printing on, in inches and decimal form, but without units, after the "inches_per_ream_500_pages:" argument, which will allow the code to properly size the spine of the cover. For measurements in centimeters, use "cm_per_ream_500_pages:" instead. Although the different arguments delimited by double quotes may be provided in any order, they must be separated from one another by a space, as in the examples below.

Figure 2


Figure 2. For a notebook with dotted pages and page numbering on both left and right pages, the following command would be entered, and you would need to replace "2.63" by the actual width measurement of the ream of 500 pages that you will be printing on:

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "dot_grid" 

You may choose to add line breaks at certain points in the title by including at least two successive spaces in-between the words that you want to be split on different lines, when passing in the "title:Your Title Here" argument in the Python call.



Figure 3


Figure 3. In order to add the same heading to both left and right pages, you would add the heading text, preceded by the "heading_text:" argument:

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "dot_grid" "heading_text:Your Heading Text Here"



Figure 4


Figure 4. Should you like the headings to be in the outer corners instead of being centered, you would pass in the additional argument "heading_corners":

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "dot_grid" "heading_text:Your Heading Text Here" "heading_corners"



Figure 5


Figure 5. In order to include different headings on left and right pages, enter the corresponding text as additional arguments, preceded by "heading_text_left:" and "heading_text_right:", respectively:

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "dot_grid" "heading_text_left:Left Page Heading" "heading_text_right:Right Page Heading"



Figure 6


Figure 6. Should you only want headings on right-hand pages, enter the corresponding text as a single additional argument, preceded by "heading_text_right:". The same is true for headings only appearing on left-hand pages when passing in the "heading_text_left:" argument alone.

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "dot_grid" "heading_text_right:Right Page Heading"



Figure 7


Figure 7. Similarly, should you want page numbers only on right-hand pages (here framed in orange), enter the "page_numbers_right" argument instead of "page_numbers". The same could be done for page numbering only on left-hand pages by passing in the "page_numbers_left" argument instead of "page_numbers".

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers_right" "inches_per_ream_500_pages:2.63" "dot_grid" 



Figure 8


Figure 8. The default font size (75 pixels) and font color ("LightSlateGrey") of the headings may be changed by adding the desired font size and color after the following arguments: "heading_font_size:" (without units) and "heading_text_color:" (either RGB code or HTML color name), respectively. The same may be done for the page numbers, by specifying the desired values after these arguments: "page_numbers_font_size:" (60 pixels by default) and "page_numbers_text_color:" ("LightSteelBlue" by default), respectively.

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "dot_grid" "heading_text:Your Heading Text Here" "heading_font_size:90" "heading_text_color:Teal" "page_numbers_font_size:70" "page_numbers_text_color:SeaGreen"



Figure 9


Figure 9. The default dot spacing (0.2 inch), diameter (5 pixels) and line width (1 pixel) may also be changed to your preferred settings, by adding them in sequence after the "dot_grid:" argument, with colon dividers in-between. Moreover, the dot fill color and dot outline colors (both being "LightSlateGrey" by default) may be changed by adding the HTML color name or RGB code after the "dot_fill_color:" and "dot_outline_color:" arguments, respectively.

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "dot_grid:0.25:10:0" "heading_text:Your Heading Text Here" "heading_font_size:90" "heading_text_color:Teal" "page_numbers_font_size:70" "page_numbers_text_color:SeaGreen" "dot_fill_color:(143, 188, 143)"



Figure 10


Figure 10. In order to specify a different number of pages than the default of 8 and another line spacing for the Table of Contents (TOC), simply pass in both preferred settings in sequence after the "toc_pages_spacing:" argument, with colon separators in-between, and the line spacing expressed in inches and in decimal form. In order to alter the line width of the TOC ruled lines (5 pixels by default), enter the desired value after the "toc_line_width:" argument. To change the TOC heading font size, text color and text itself, add the desired parameters after the "toc_heading_font_size:" (75 pixels by default), "toc_heading_text_color:" ("LightSlateGrey" by default) and "toc_heading_text:" ("Contents" by default), respectively. Similarly, the "Pages" and "Subject" subheadings font sizes (both 60 pixels by default), text colors (each written in "LightSlateGrey" color by default) and text may be altered by entering your parameters of choice after the "toc_pages_font_size:" and "toc_subject_font_size:", "toc_pages_text_color:" and "toc_subject_text_color:" as well as "toc_pages_text:" and "toc_subject_text:" arguments, respectively. Finally, you may opt to remove the TOC altogether by specifying zero as the number of pages ("toc_pages_spacing:0"). Please keep in mind that the number of TOC pages needs to be an even number to ensure that the first of the numbered notebook pages lands on a right-hand page. For this reason, the code will automatically round up any inputted uneven pages to the next even numbers. Also, to make sure that the PDF document may be easily printed in duplex mode, additional notebook pages will automatically be added by the code if the total amount of pages (including the TOC) is not a multiple of four.

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "dot_grid" "heading_text:Your Heading Text Here" "toc_pages_spacing:6:0.3" "toc_line_width:3" "toc_heading_text:Index" "toc_heading_font_size:90" "toc_heading_text_color:Teal" "toc_pages_text:Page" "toc_pages_font_size:75" "toc_pages_text_color:SeaGreen" "toc_subject_text:Topic" "toc_subject_font_size:75" "toc_subject_text_color:SeaGreen" "toc_line_color:(143, 188, 143)"



Figure 11


Figure 11. Should you like to have the dot grid pattern only on the right pages, and blank pages on left-hand pages, you would need to pass in the argument "dot_grid_right" instead of "dot_grid". The reverse outcome would require you to enter the "dot_grid_left" argument instead of "dot_grid".

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers_right" "inches_per_ream_500_pages:2.63" "dot_grid_right"



Figure 12


Figure 12. In order to have college ruled lined pages (9/32 inch line spacing) on the left alternating with dot grids on right-hand pages, you would need to pass in the arguments "college_ruled_left" and "dot_grid_right". The inverse result could also be achieved by entering "college_ruled_right" and "dot_grid_left", and it would also be possible to have college ruled lines on both pages by only passing in "college_ruled". The lower margins will be adjusted automatically such that the last horizontal dot grid line matches up as well as possible with the last ruled line on the page. Finally, the default line width of 5 px and "Gainsboro" line color could be changed by providing the selected parameters after the "line_width:" and "line_color:" arguments, respectively, where either the HTML color name or RGB code may be specified for the line color.

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "college_ruled_left" "dot_grid_right" "line_width:4" "line_color:BurlyWood"



Figure 13


Figure 13. For wide ruled pages (11/32 inch line spacing), the "wide_ruled" argument would need to be passed in. Furthermore, ruled pages with custom line spacing may also be generated by entering "custom_ruled:" followed by the line spacing in inches and in decimal format. Of note, unlike dot grid formats where the distances in-between dots are measured relative to the dot centers, line spacing is calculated as the actual space in-between the lines (excluding the pixels of the lines themselves).

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "heading_text:Your Heading Text Here" "custom_ruled_left:0.2" "dot_grid_right:0.2"



Figure 14


Figure 14. Should you want to have dot grids on right-hand pages alternating with graph paper on the left pages, you would need to pass in the arguments "dot_grid_right" and "graph_paper_left:". The latter argument ends with a colon, which is then followed by the number of squares per inch, a colon divider, the number of squares in-between every thicker line, another colon, and finally the width ratio between the thicker line and the regular line having a default width of 5 px. The reverse could also be done by entering "dot_grid_left" as well as "graph_paper_right:", with the same information as above. It would also be possible to have graph paper on both pages by only passing "graph_paper:", with the same abovementioned parameters". Once again, the lower margins will be adjusted automatically such that the last horizontal dot grid line matches up as well as possible with the last horizontal graph paper line on the page.

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "heading_text:Your Heading Text Here" "graph_paper_left:5:5:2" "dot_grid_right"



Figure 15


Figure 15. The default graph paper line width of 5 px and "Gainsboro" line color could be changed by providing the selected parameters after the "graph_line_width:" and "graph_line_color:" arguments, respectively, where either the HTML color name or RGB code may be specified for the graph line color.

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "heading_text:Your Heading Text Here" "graph_paper_left:5:5:2" "graph_line_width:3" "graph_line_color:rgb(172, 231, 248)" "dot_grid_right"



Figure 16


Figure 16. For simple graph paper without bold lines, simply omit the two last parameters after the number of squares per inch. Besides that, you might wish to shrink the lower border (0.6 inch by default) in order to include more lines on the page. This could be done by passing in the number of inches (in decimal form, without units) from the bottom of the page where the lowest line could be drawn, after the "bottom_margin:" argument. You could also alter the default left page left margin and right page right margin of 0.25 inch, as well as the top margin of 0.95 inch, by entering the desired measurements after the "left_margin:", "right_margin:" and "top_margin:" arguments, respectively.

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "heading_text:Your Heading Text Here" "graph_paper_left:5" "graph_line_width:3" "graph_line_color:rgb(172, 231, 248)" "dot_grid_right" "bottom_margin:0.55" "left_margin:0.4" "right_margin:0.4"



Figure 17


Figure 17. Other page combinations can be generated, such as graph paper and blank pages or graph paper and ruled lines, similarly to what was done above. It is also possible to alter the header and footer margins (which are by default 0.6 inch from the top and automatically vertically centered in the bottom of the page, respectively), by providing the selected measurements after the corresponding arguments "heading_top_margin:" and "page_numbers_bottom_margin:". Note that the horizontal alignment of the headings may be shifted through the inclusion of spaces in the arguments that are passed into the Python code.

py printanotebook.py "title:Your Title Here" "author:Your Name Here" "spine_text:Your Spine Text Here" "number_of_pages:192" "page_numbers" "inches_per_ream_500_pages:2.63" "heading_text_left:Sketch No.:        " "heading_text_right:Date:                " "graph_paper_left:5" "graph_line_width:3" "graph_line_color:rgb(172, 231, 248)" "college_ruled_right" "top_margin:1" "bottom_margin:0.5" "heading_top_margin:0.65" "page_numbers_bottom_margin:8.1" "heading_font_size:100" "page_numbers_font_size:70"



Figure 18


Figure 18. Different fonts for the headings and page numbers can be used simply by changing the True Font File (.ttf) within the "Header and footer font TTF file" folder. No further arguments are required when running the Python code. The image above illustrates this, as the same arguments as those of Figure 17 were passed in, when running the Python code with the satisfy font (https://fonts.google.com/specimen/Satisfy?query=satisfy).


Figure 19


Figure 19. Custom Designs may also be incorporated in your notebook, such as this daily planner journal (which is also featured in the thumbnail image of this Github page). Notice in the Python call below that the TOC headings and subheadings have been removed, leaving behind regular dot grid pages without page numbers. You could use these to write your bullet journal key and index, as well as monthly spreads, before the start of the daily planner numbered pages themselves. Should you want to have daily planner pages both on the left and right-hand pages, you would then pass in both "custom_template_left_page" and "custom_template_right_page". Please refer to the PDF document entitled "PrintANotebook - Custom Design Generation.pdf" for more on how to create and export custom designs in LibreOffice Draw.

py printanotebook.py "title:Winter 2023 Daily Planners" "author:Louis-Philippe Bonhomme-Beaulieu" "number_of_pages:180" "page_numbers_right" "inches_per_ream_500_pages:2.63" "heading_text_left:Daily Planner" "custom_template_left_page" "dot_grid_right" "toc_pages_spacing:8" "toc_subject_text:" "toc_pages_text:" "toc_heading_text:" "top_margin:0.8" "bottom_margin:0.5" "right_margin:0.5" "cover_box_color:rgb(150, 63, 92)" "cover_text_color:White"



Printing Your Notebook

In order to print the notebook sheets, each consisting of two pages per side of a sheet of 8 1/2" by 11" paper, simply print them in landscape duplex mode with the "flip on short side" option. It should be noted that the page numbering is already in booklet format, so as to facilitate the printing process and book assembly.

For instructions on how to generate and print the notebook covers, I would direct you to my other Github repository PrintABook, which lets you generate books in printable format from Project Gutenberg novel text files. The code is the same when it comes to making the book covers, so please refer to Figure 3 of the PrintABook Readme page for the list of arguments pertaining to cover generation, and to Step 8 onwards of the "Usage" section for more on how to print the notebook covers: https://github.com/LPBeaulieu/Book-Generator-PrintABook.

Figure 20


Figure 20. Other custom designs may also be included in your notebook, such as this weekly spread template that is included in the pet journal that I have created for my budgies. In this case the Python script was only used to generate the journal cover, as there were too many custom journal sections for the code to handle them nicely. It just goes to show that even if you were only to use the code to generate customized notebook covers, it would still be quite useful! You can find all of my custom designs in my Google Drive at the following link: (https://drive.google.com/drive/folders/1r1BLipQujz22kFHMnLVYw_qzv5OBq9cv?usp=sharing).


Figure 21


Figure 21. Here is what the finished bound notebooks look like, using 28 lb perforated paper from www.perforatedpaper.com! Should you want to perforate your pages and bind your notebooks using ring binders (I find it preferable, as otherwise it is a little awkward to use clips with your glue-bound notebooks), simply include the "perforated_cover" argument when running the code. Check out the ScriptReader github repository for images of such ringbound notebooks: https://github.com/LPBeaulieu/Handwriting-OCR-ScriptReader.


Well there you have it! You can now generate your own customized notebooks and print the notebook pages in your favorite color! Now dollop some glue onto the spine, slap on the cover, let it dry under some books and you'll soon be able to lay down your most treasured thoughts in your personalized notebook! 🎉📖

✍️ Authors

  • 👋 Hi, I’m Louis-Philippe!
  • 👀 I’m interested in natural language processing (NLP) and anything to do with words, really! 📝
  • 🌱 I’m currently reading about deep learning (and reviewing the underlying math involved in coding such applications 🧮😕)
  • 📫 How to reach me: By e-mail! louis.philippe.bonhomme.beaulieu.1@gmail.com 💻

🎉 Acknowledgments

  • Hat tip to @kylelobo for the GitHub README template!

About

PrintANotebook lets you create custom notebooks with page numbers and your favorite designs!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages