Space Force & The Star Trek Future: NATO, SSPs, and 2060 Vision
Will the U.S. Space Force lead us to a Star Trek future or a Space Pearl Harbor? Explore the role of secret space programs, NATO, and extraterrestrial life.
Will the U.S. Space Force lead us to a Star Trek future or a Space Pearl Harbor? Explore the role of secret space programs, NATO, and extraterrestrial life.
When writing a book, travel guide, memoir, or technical manual, page count matters. More pages mean higher printing costs, larger file sizes, and a longer editing process. Fortunately, many Word documents contain hidden formatting that wastes space without improving readability.
One of the biggest offenders is bullet lists. Lists often contain excessive spacing before and after each item, large indents, and inconsistent line spacing. By tightening bullet formatting across an entire document, authors can often reduce page count by 5–15% without removing a single word.
This guide shows how to use a simple Microsoft Word VBA macro to automatically tighten all bullet lists throughout your document.
A typical Word bullet list often includes:
For example, a list like this:
• Elvis Presley
• Johnny Cash
• Jerry Lee Lewis
• Carl Perkins
• Roy Orbison
• Charlie Rich
• B.B. King
• Howlin’ Wolf
• Ike Turner
• Rufus Thomas
• Junior Parker
can occupy significantly more space than necessary.
When a manuscript contains hundreds of lists, the wasted space adds up quickly.
The easiest solution is to run a VBA macro that automatically adjusts all bullet lists in your document.
In Microsoft Word:
Inside the VBA Editor:
Copy and paste the following code into the new module:
Sub TightenBulletLists()
Dim para As Paragraph
For Each para In ActiveDocument.Paragraphs
If para.Range.ListFormat.ListType <> wdListNoNumbering Then
With para.Format
.SpaceBefore = 0
.SpaceAfter = 0
.LineSpacingRule = wdLineSpaceSingle
.LeftIndent = InchesToPoints(0.15)
.FirstLineIndent = InchesToPoints(-0.15)
End With
End If
Next para
End Sub
Word will scan the entire document and tighten every bulleted list automatically.
The macro performs five actions:
The result is a much more compact and professional-looking list.
If your goal is to reduce the overall page count of a manuscript, use this second macro.
Sub CompressBookFormatting()
With ActiveDocument.Styles(wdStyleNormal).ParagraphFormat
.SpaceBefore = 0
.SpaceAfter = 3
.LineSpacingRule = wdLineSpaceSingle
End With
Dim p As Paragraph
For Each p In ActiveDocument.Paragraphs
With p.Format
If .SpaceAfter > 6 Then .SpaceAfter = 3
If .SpaceBefore > 0 Then .SpaceBefore = 0
End With
Next p
End Sub
Run the macro using the same steps described above.
This script tightens spacing throughout the document while preserving readability.
The biggest reduction often comes from eliminating unnecessary bullet lists entirely.
Instead of writing:
• Elvis Presley
• Johnny Cash
• Jerry Lee Lewis
• Carl Perkins
• Roy Orbison
• Charlie Rich
• B.B. King
• Howlin’ Wolf
• Ike Turner
• Rufus Thomas
• Junior Parker
Write:
Notable artists included Elvis Presley, Johnny Cash, Jerry Lee Lewis, Carl Perkins, Roy Orbison, Charlie Rich, B.B. King, Howlin’ Wolf, Ike Turner, Rufus Thomas, and Junior Parker.
This approach frequently reduces the space used by a list by more than 80 percent.
For large manuscripts, consider:
These changes can often eliminate dozens of pages from a book without removing any content.
Before cutting valuable material from your manuscript, optimize the formatting. Many authors are surprised to discover that a well-formatted document can shrink dramatically while actually becoming easier to read. A few minutes spent tightening bullet lists and paragraph spacing can save printing costs, improve appearance, and make your manuscript more professional overall.
Explore the hidden world of Galactic Federations, Secret Space Programs, and cosmic councils. Learn about whistleblower testimonies and exopolitical theories.
Explore the hidden world of US Army insider missions involving Space Arks, underground cities, and extraterrestrial contact. Discover the secrets of JP’s testimony.
Discover Monastic Reading, the 2026 movement reclaiming cognitive sovereignty from ‘brain rot’ through long-form physical books and deep focus.
Discover the shocking truth behind the Western funding of the Soviet Union in Antony Sutton’s classic study, Wall Street and the Bolshevik Revolution.
Discover how the quantum computer revolution and the achievement of quantum supremacy will transform medicine, security, and the fight against climate change.
Explore the profound connection between quantum physics and Eastern philosophy in this deep dive into Dancing Wu Li Masters. Discover how science meets soul.
Discover the intense story of Chris Kyle in American Sniper. Explore themes of combat, family sacrifice, and the legacy of the US military’s most lethal sniper.
Explore Peter Thiel’s ‘Zero to One’ philosophy. Learn how to build the future by moving from stagnation to innovation and creating a unique monopoly.