Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Tools for organising anthologies

+1
−0

I'm looking for software or markup/markdown based tools for organising anthologies selected from a large number of short pieces of writing. In this case it's poems, but the content of the individual pieces of text doesn't really matter. I just want a simple way of dealing with lots of chunks of text and easily generating documents from them.

So I have

  • Hundreds of text chunks, each less than a about page long
  • Metadata about each chunk (Subject, Author, Date, Age range, Star rating etc.)

What I want to be able to do is

  • Easily edit the text/metadata
  • Make selections based on the metadata (i.e. everything by Author X with more than 3 stars) and publish the results in a useful format (markdown, epub, latex, docx, whatever)
  • Ideally keep track of which chunks have already been used and when

I would prefer non-proprietary solutions, or at least solutions that allow me to export the data easily, preferably as a plain text file. I'm on Windows mostly, but would be interested in linux-based solutions too.

So far my best bet seems to be EMACS org-mode, but it doesn't seem to quite do what I want it to. Maybe there's a better way?

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

This post was sourced from https://writers.stackexchange.com/q/35456. It is licensed under CC BY-SA 3.0.

0 comment threads

2 answers

+0
−0

This would be a technically advanced solution, but if you are comfortable coding, you might want to use a database management system (DBMS). One you probably already have is Micorsoft Access (comes with the Office suite) or OpenOffice Base (comes with OpenOffice, available on both Windows and Linux).

A database would let you select by any parameter you want (Author AND stars > 3), and with a bit of simple coding it can dump the results into a text file.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

+0
−0

In a month or two I will have a book out on how to do things like this (Structured Writing: Rhetoric and Process, from XML Press).

The big question is, what are you going to use to do the selections based on the metadata and publish to the various output formats? Are you willing/able to write any code to do this? Since you are dealing with custom metadata, so degree of coding/configuration is going to be required to make this work. If so you can code you can probably pull together something workable from various open source tools.

DITA is one choice. It is horribly overweight for this kind of thing, but you can probably make it all work with a ton of configuration and maybe a little coding. Writing in DITA will not be easy in a plain text file, however.

Something like ASCII doc (a version of DocBook in lightweight syntax) might suit you for editing, but you will have to come up with a metadata solution to go with it.

My book would show you various ways to approach this, but describing them here would take far too much space.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »