Let's start with a simple magic book that runs only 1 command, see below
Command for version 1.21.5+ and 26+
give @p written_book[written_book_content={pages:[{text:"Test",color:"dark_blue",click_event:{action:"run_command",command:"tellraw @s Test"}}],title:"Magic Book",author:Anonymous}]
Now, let's use a more complex command, with 3 embedded commands for teleporting and changing gamemode
Command for version 1.21.5+ and 26+
give @p written_book[written_book_content={pages:[["",{text:"Gamemodes:",color:"black"},{text:"\n"},{text:"Survival",bold:true,color:"red",click_event:{action:"run_command",command:"gamemode survival @s"}},{text:"\n"},{text:"Creative",bold:true,color:"dark_green",click_event:{action:"run_command",command:"gamemode creative @s"}},{text:"\n"},{text:"Others:",color:"black"},{text:"\n"},{text:"Teleport",bold:true,color:"dark_blue",click_event:{action:"run_command",command:"teleport @s 64 22 -890 90 0"}}]],title:"Magic Book",author:Anonymous}]
Notice that we always have a custom {text} with some parameters like text color, bold, and command execution
Following this logic, you can add more text and commands just by adding a comma after a {text}, and each page is represented by [ ]
NOTE: {text:"\n"} is used to move to the next line
Now here is the command for versions older than 1.21.5, and it can even work for 1.20.4
Book with 1 command
give @p written_book[written_book_content={pages:["{\"text\":\"Test\",\"color\":\"dark_blue\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"tellraw @s Test\"}}"],title:"Magic Book",author:Anonymous}]
Book with 3 commands
give @p written_book[written_book_content={pages:["[\"\",{\"text\":\"Gamemodes:\",\"color\":\"black\"},{\"text\":\"\\n\"},{\"text\":\"Survival\",\"bold\":true,\"color\":\"red\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"gamemode survival @s\"}},{\"text\":\"\\n\"},{\"text\":\"Creative\",\"bold\":true,\"color\":\"dark_green\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"gamemode creative @s\"}},{\"text\":\"\\n\"},{\"text\":\"Others:\",\"color\":\"black\"},{\"text\":\"\\n\"},{\"text\":\"Teleport\",\"bold\":true,\"color\":\"dark_blue\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"teleport @s 62 21 -885 90\"}}]"],title:"Magic Book",author:Anonymous}]