Try these steps:
1) manually crop the outside area. This would not be needed if your scan did not include black areas outside the image. You could help yourself here by putting a large white sheet on the scanner behind your pages.
convert 3486kh1.jpg[908x1192+108+272] 3486kh1_crop.png
2) make everything but the black letters become white
convert 3486kh1_crop.png -fuzz 45% -fill white +opaque black 3486kh1_crop_f10b.png
Note if I had added +repage at the end of the command(s) above, it would not be needed in the beginning of the next command. I should have remembered to do that to ensure you don't have a virtual canvas in your image.
3) manually crop into two halves (top and bottom)
convert 3486kh1_crop_f45b.png +repage -gravity north -crop x50%+0+0 +repage 3486kh1_crop_f45b_croptop.png
convert 3486kh1_crop_f45b.png +repage -gravity south -crop x50%+0+0 +repage 3486kh1_crop_f45b_cropbottom.png
4) rotate each image 90 degrees ccw
convert 3486kh1_crop_f45b_croptop.png -rotate -90 3486kh1_crop_f45b_croptop_rot90.png
convert 3486kh1_crop_f45b_cropbottom.png -rotate -90 3486kh1_crop_f45b_cropbottom_rot90.png
5) fuzz trim to the edges of the black letters (you may need to increase the 10%), then resize to height 800, then convert to 2 colors (black and white), add a border of 10, then save as gif
convert 3486kh1_crop_f45b_croptop_rot90.png -fuzz 10% -trim +repage -resize 800x800 -quantize gray +dither -colors 2 -bordercolor white -border 10 -depth 2 3486kh1_crop_f45b_croptop_rot90_trc2b10d2.gif
convert 3486kh1_crop_f45b_cropbottom_rot90.png -fuzz 10% -trim +repage -resize 800x800 -quantize gray +dither -colors 2 -bordercolor white -border 10 -depth 2 3486kh1_crop_f45b_cropbottom_rot90_trc2b10d2.gif
see commands at
http://www.imagemagick.org/Usage/