SlideShare ist ein Scribd-Unternehmen logo
1 von 82
Downloaden Sie, um offline zu lesen
Writing
Books
(The Easy Bit)
The Easy Bit?
Three stages
1/ Writing
2/ Publishing
3/ Marketing
Step 2 is
the easy bit
I've written
books before
In Nov 2014
I planned to
write another
Self-published
ebook
Amazon makes it
easy to publish
and sell ebooks
Amazon makes it
easy to publish
and sell ebooks
* Other ebook marketplaces are available
The book
wasn't written
But I learned
a lot
Where to start?
“Write book
in Word”
No! No! No!
Store all my work
in a proprietary
binary format?
No thank you
I'm a geek
Geeks like
text formats
Unix toolkit
Revision control
But which
text format?
POD?
HTML?
Docbook?
Markdown!
Which output
format(s)?
.mobi
.epub
.pdf
Define the
process
Markdown
to epub
epub to mobi
epub to pdf
Research
Pandoc
Pandoc
Markdown -> epub
Kindlegen
Kindlegen
epub -> mobi
Calibre
Calibre
epub -> pdf
Note: Pandoc will
also output pdf
But it does it
using LaTeX
Some commands
pandoc ­o yourbook.epub    
  title.txt 
  yourbook.md 
  ­­epub­metadata=metadata.xml 
  ­­epub­cover­image=cover.png 
  ­­toc ­­toc­depth=2
# In title.txt
% Your Book Title
% Joe Author
<metadata xmlns:dc="http://purl.org/dc/elements/1.1/">
<dc:title id="main">Your Book Title</dc:title> 
<meta refines="#main"
      property="title­type">main</meta>
<dc:language>en­GB</dc:language> 
<dc:creator opf:file­as="Author, Joe"
  opf:role="aut">Joe Author</dc:creator> 
<dc:publisher>Some Made­Up Publisher</dc:publisher>
<dc:date opf:event="publication">YYYY­MM­DD</dc:date>
<dc:rights>Copyright ©YYYY by Joe Author</dc:rights>
</metadata>
<metadata xmlns:dc="http://purl.org/dc/elements/1.1/">
<dc:title id="main">Your Book Title</dc:title> 
<meta refines="#main"
      property="title­type">main</meta>
<dc:language>en­GB</dc:language> 
<dc:creator opf:file­as="Author, Joe"
  opf:role="aut">Joe Author</dc:creator> 
<dc:publisher>Some Made­Up Publisher</dc:publisher>
<dc:date opf:event="publication">YYYY­MM­DD</dc:date>
<dc:rights>Copyright ©YYYY by Joe Author</dc:rights>
</metadata>
kindlegen yourbook.epub
ebook­convert yourbook.epub 
  yourbook.pdf
Simple Makefile
book = yourbookname
chapters = $(shell cat chapters.txt)
epub: book
book: $(book).epub
mobi: $(book).mobi
pdf: $(book).pdf
$(book).mobi: $(book).epub
kindlegen ­verbose $(book).epub
$(book).epub: $(chapters) epub.css
pandoc ­o $(book).epub title.txt $(chapters) 
   ­­epub­metadata=metadata.xml ­­toc –toc­depth=2 
   ­­epub­cover­image=cover.png 
   ­­epub­stylesheet=epub.css
$(book).pdf: $(book).epub
ebook­convert $(book).epub $(book).pdf
clean:
rm ­f $(book).{pdf,epub,mobi}
book = yourbookname
chapters = $(shell cat chapters.txt)
epub: book
book: $(book).epub
mobi: $(book).mobi
pdf: $(book).pdf
$(book).mobi: $(book).epub
kindlegen ­verbose $(book).epub
$(book).epub: $(chapters) epub.css
pandoc ­o $(book).epub title.txt $(chapters) 
   ­­epub­metadata=metadata.xml ­­toc –toc­depth=2 
   ­­epub­cover­image=cover.png 
   ­­epub­stylesheet=epub.css
$(book).pdf: $(book).epub
ebook­convert $(book).epub $(book).pdf
clean:
rm ­f $(book).{pdf,epub,mobi}
book = yourbookname
chapters = $(shell cat chapters.txt)
epub: book
book: $(book).epub
mobi: $(book).mobi
pdf: $(book).pdf
$(book).mobi: $(book).epub
kindlegen ­verbose $(book).epub
$(book).epub: $(chapters) epub.css
pandoc ­o $(book).epub title.txt $(chapters) 
   ­­epub­metadata=metadata.xml ­­toc –toc­depth=2 
   ­­epub­cover­image=cover.png 
   ­­epub­stylesheet=epub.css
$(book).pdf: $(book).epub
ebook­convert $(book).epub $(book).pdf
clean:
rm ­f $(book).{pdf,epub,mobi}
book = yourbookname
chapters = $(shell cat chapters.txt)
epub: book
book: $(book).epub
mobi: $(book).mobi
pdf: $(book).pdf
$(book).mobi: $(book).epub
kindlegen ­verbose $(book).epub
$(book).epub: $(chapters) epub.css
pandoc ­o $(book).epub title.txt $(chapters) 
   ­­epub­metadata=metadata.xml ­­toc –toc­depth=2 
   ­­epub­cover­image=cover.png 
   ­­epub­stylesheet=epub.css
$(book).pdf: $(book).epub
ebook­convert $(book).epub $(book).pdf
clean:
rm ­f $(book).{pdf,epub,mobi}
https://github.com/davorg/make-ebook/
Does it work?
Can you create
books that you can
sell on Amazon?
Test run
Take a few old
blog posts
Run them through
the process
Sign up to KDP
Upload file
Prior art
See also
pandoc web site
http://pandoc.org/epub.html
Dave Cross
@davorg
dave@perlhacks.com
Writing Books (The Easy Bit)

Weitere ähnliche Inhalte

Mehr von Dave Cross

Object-Oriented Programming with Perl and Moose
Object-Oriented Programming with Perl and MooseObject-Oriented Programming with Perl and Moose
Object-Oriented Programming with Perl and Moose
Dave Cross
 
Database Programming with Perl and DBIx::Class
Database Programming with Perl and DBIx::ClassDatabase Programming with Perl and DBIx::Class
Database Programming with Perl and DBIx::Class
Dave Cross
 

Mehr von Dave Cross (20)

Freeing Tower Bridge
Freeing Tower BridgeFreeing Tower Bridge
Freeing Tower Bridge
 
Error(s) Free Programming
Error(s) Free ProgrammingError(s) Free Programming
Error(s) Free Programming
 
Medium Perl
Medium PerlMedium Perl
Medium Perl
 
Modern Web Development with Perl
Modern Web Development with PerlModern Web Development with Perl
Modern Web Development with Perl
 
Improving Dev Assistant
Improving Dev AssistantImproving Dev Assistant
Improving Dev Assistant
 
Conference Driven Publishing
Conference Driven PublishingConference Driven Publishing
Conference Driven Publishing
 
Conference Driven Publishing
Conference Driven PublishingConference Driven Publishing
Conference Driven Publishing
 
TwittElection
TwittElectionTwittElection
TwittElection
 
Perl in the Internet of Things
Perl in the Internet of ThingsPerl in the Internet of Things
Perl in the Internet of Things
 
Return to the Kingdom of the Blind
Return to the Kingdom of the BlindReturn to the Kingdom of the Blind
Return to the Kingdom of the Blind
 
Github, Travis-CI and Perl
Github, Travis-CI and PerlGithub, Travis-CI and Perl
Github, Travis-CI and Perl
 
Object-Oriented Programming with Perl and Moose
Object-Oriented Programming with Perl and MooseObject-Oriented Programming with Perl and Moose
Object-Oriented Programming with Perl and Moose
 
Database Programming with Perl and DBIx::Class
Database Programming with Perl and DBIx::ClassDatabase Programming with Perl and DBIx::Class
Database Programming with Perl and DBIx::Class
 
Modern Perl for Non-Perl Programmers
Modern Perl for Non-Perl ProgrammersModern Perl for Non-Perl Programmers
Modern Perl for Non-Perl Programmers
 
Matt's PSGI Archive
Matt's PSGI ArchiveMatt's PSGI Archive
Matt's PSGI Archive
 
The Kingdom of the Blind
The Kingdom of the BlindThe Kingdom of the Blind
The Kingdom of the Blind
 
Matt's PSGI Archive
Matt's PSGI ArchiveMatt's PSGI Archive
Matt's PSGI Archive
 
Introduction to OO Perl with Moose
Introduction to OO Perl with MooseIntroduction to OO Perl with Moose
Introduction to OO Perl with Moose
 
Modern Core Perl
Modern Core PerlModern Core Perl
Modern Core Perl
 
Perl Training
Perl TrainingPerl Training
Perl Training
 

Kürzlich hochgeladen

%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
masabamasaba
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 

Kürzlich hochgeladen (20)

Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
WSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaSWSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaS
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security Program
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 

Writing Books (The Easy Bit)