Earlier quoted context omitted.
Latex can't produce web output, which is increasingly a target I want. Also, Latex can't produce any output which is accessible to blind people (other than giving them the raw LaTeX). The PDFs latex produces are probably the least accessible format available (much worse than a word proeuced pdf, or some html). This matters to me, and should matter more to other people (in my opinion).
>Also, Latex can't produce any output which is accessible to blind people This sounds like it should definitely be a target of a grant. I guess most government organisations around the world are using Word et al, which isn't too bad these days accessibility wise (AFAIK). Can you provide a small example of a LateX document that produces an inaccessible PDF?
Pandoc
111–120 of 213 posts
Re: Pandoc
#112Earlier quoted context omitted.
Tools, Track Changes, Compare Documents ... https://support.office.com/en-us/article/compare-and-merge-t... Had this forever, here's a visual on old version of Word: http://www.techyard.net/how-to-compare-two-word-documents-an... For more advanced, try legal blacklining: https://support.office.com/en-us/article/compare-document-di... Or combine multiple sources of a similar document: https://support.office.com/en-us/…
None of that is version control. At best that's a visual based manual patch file tool. That you can't concat two word files together in 2018 is ridiculous.
Of course you can!
# cat word1.doc word2.doc > word3.doc
Sounds ludicrous? So does your statement.
Setting aside the hyperbole, I believe it would be a conceptual nightmare to start defining concat of two docs. For simple cases, feel free to make copy pasta :-)
Re: Pandoc
#113I do all of my academic writing in pandoc. As compared to LaTeX this means no boilerplate (yet you can still use full LaTeX syntax for equations and the like) and, if the publisher 'needs' a Word file, you are one click away from providing it. All with plain text files that you can put under version control, get meaningful diffs, etc. It's just great.
Sorry to be pedantic - but I didn't think that 'pandoc' was an actual document format purely a tool for converting between formats. Do you mean that you do your writing in kind of a 'pandoc flavoured' markdown? [0] [0]: https://pandoc.org/MANUAL.html#pandocs-markdown
Re: Pandoc
#114The one thing it can't do is give HN posts descriptive titles.
Re: Pandoc
#115Earlier quoted context omitted.
>Also, Latex can't produce any output which is accessible to blind people This sounds like it should definitely be a target of a grant. I guess most government organisations around the world are using Word et al, which isn't too bad these days accessibility wise (AFAIK). Can you provide a small example of a LateX document that produces an inaccessible PDF?
If you grab any academic paper (particularly two columns) there is a good chance getting the text out will be hard, and any part of the paper with maths or tables will be unusable. Sorry. I'm away from a computer now, to make a smaller example.
Re: Pandoc
#116Earlier quoted context omitted.
Can you diff two Word docs with Word? Afaik you can only hit the "track changes" button, which doesn't help if you got a new version of a document from someone else.
Even if you can do it with Word, GUI interactions aren't composable and extensible the way shell commands are, so you're limited to the features the GUI designer thought of.
They might not be in word, but they absolutely can be, and in fact are a superset of CLI interactions (since a GUI interaction step in e.g. Automator can invoke any shell command).
>so you're limited to the features the GUI designer thought of
And in the traditional shell pipeline (that is, not Powershell) I'm limited to working on dumb streams from one command to another.
Re: Pandoc
#117Earlier quoted context omitted.
Can you diff two Word docs with Word? Afaik you can only hit the "track changes" button, which doesn't help if you got a new version of a document from someone else.
Completely new to this: so you're highlighting the differences between two documents in word? say 2 terms of service 1 old and 1 new?
Re: Pandoc
#118Earlier quoted context omitted.
Yes, and you can merge changes too. Classic Word workflow: I make a document and send it to my boss; he makes some changes but suggests further research etc. and sends me his altered version, but I stupidly work on my own version . Making this right takes like four clicks.
I have been searching for this for a long time and not able to achieve it without resorting to manual copy and paste from one doc to the other. This sounds like utopia. :-) Do you have a link to a page that outlines these steps?
It's good for a small fix, but not something to rely upon in your main documentation workflow.
Re: Pandoc
#119Earlier quoted context omitted.
Can you diff two Word docs with Word? Afaik you can only hit the "track changes" button, which doesn't help if you got a new version of a document from someone else.
Hmmm. Wonder what "track changes" does if you Ctrl-A highlight the entire old doc, and paste the entire new doc over it. (I imagine it registers it as one huge change, rather than tracking a zillion individual changes, but it might be interesting to try.)
Re: Pandoc
#120I do all of my academic writing in pandoc. As compared to LaTeX this means no boilerplate (yet you can still use full LaTeX syntax for equations and the like) and, if the publisher 'needs' a Word file, you are one click away from providing it. All with plain text files that you can put under version control, get meaningful diffs, etc. It's just great.