.ODT, the word processing file format of OpenDocument, an open standard for electronic documents
Questions tagged [odt]
217 questions
3
votes
1 answer
How to embed latex result to ODT file emacs org-mode?
In org-mode, try to push LaTex code to generate matrix like this
The code is like this:
#+BEGIN_SRC latex
\[ G_{x} = \left[ \begin{array}{ccc}
-1 & 0 & 1 \\
-2 & 0 & 2 \\
-1 & 0 & 1 \end{array} \right] {\hspace{2em}} G_{y} = \left[…

enchanter
- 884
- 8
- 20
3
votes
3 answers
Django create .odt or .docx documents to download
I need to generate either .odt or .docx files based on the information I have in my database. Let's say I have a model:
class Contact(models.Model):
first_name = models.CharField()
last_name = models.CharField()
email =…

m5seppal
- 1,186
- 3
- 15
- 31
3
votes
1 answer
How to convert odt to docx with xdocreport?
I use xdocreport 1.0.3 and I want to upload an odt template, process it and finally to get an docx processed document. How can I do this?
I tried this:
public void generateUserReport(long pcCaseId, long currentUserId) throws CMSException{
try {
…

Filosssof
- 1,288
- 3
- 17
- 37
3
votes
1 answer
Manipulating ODT documents with PHP (basic search and replace)
With LibreOffice, I have designed and written a text document (ODT format). Now I want to find certain placeholders programmatically and replace them with text from a database.
I know there are some ODT libraries for PHP, but as ODT files are just…

caw
- 30,999
- 61
- 181
- 291
3
votes
1 answer
LibreOffice Automation - Update All
Is there a way to automate these steps?
open a LibreOffice ODT
update the TOC and other fields (e.g. via menu Tools|Update|Update All)
save and close the document

Yimin Rong
- 1,890
- 4
- 31
- 48
3
votes
1 answer
Using variable images with django-webodt
Is anyone using django-webodt? Looking through the documentation, I can't find anything about using images in a document. I want to insert "variable" images (ImageField) in my ODT document. Is this possible?
I'm using the OpenOffice backend.

Robert Dollinger
- 83
- 1
- 4
3
votes
1 answer
Can I use 32 bit Oracle Developer Tools with x64 ODAC in VS2010?
From the Oracle website here:
http://www.oracle.com/technetwork/database/windows/downloads/index-090165.html
This is for their latest Oracle Data Access Components, 64-bit ODAC 11.2 Release 4 (11.2.0.3.0) for Windows x64. I want to use the…

DaveN59
- 3,638
- 8
- 39
- 51
2
votes
1 answer
Create OpenOffice ODT document RUBY
I am looking for a Ruby Gem that will allow me to create openoffice odt documents from scratch. There is also a requirement to include images in said documents. Has anyone come across a gem offering this functionality. I have not been able to find…

Des
- 21
- 1
- 2
2
votes
2 answers
Convert ODT to single XML file
I know that standards define two versions of ODT file:
- one is a archive of different files, i.e. meta.xml, content.xml etc,
- second is one big XML file with all the data.
(I know above from…

WojtusJ
- 1,318
- 1
- 12
- 19
2
votes
1 answer
How to convert a "pdf" to "odg" file with OpenOffice cmd
I can easily convert a pdf to an odt file using:
soffice --infilter="writer_pdf_import" --convert-to odt a.pdf
But when I try to do:
soffice --infilter="writer_pdf_import" --convert-to odg a.pdf
I get an error:
no export filter

RandomBeginner
- 472
- 2
- 8
- 17
2
votes
2 answers
Is there an equivalent to odt2txt to generate a readable git diff for fodt-format LibreOffice files?
I have LibreOffice Writer files under git control. I've previously used .odt format and used odt2txt to get readable diffs, by including
[diff "odt"]
textconv = odt2txt
in my git config file. I'm trying to use the XML-text .fodt format instead,…

codingatty
- 2,026
- 1
- 23
- 32
2
votes
2 answers
Is there a sane way to produce Word or OpenOffice documents from light markup formats like Asciidoc or Markdown?
I am currently in the process of writing a thesis at university. Both the university and my assigned supervisor require the thesis to:
be in MS Word document format, ie. doc or docx
contain some formal boilerplate at the beginning, the templates…

oreganoli
- 101
- 7
2
votes
1 answer
How to convert DOCX to ODT format using javascript?
I am working on a in-website document editor(word and excel document). So far I am able to edit ODT files using WEBODF. Is there any way to convert DOCX file to ODT using javascript so that i can use the file in the editor? any alternatives for…

Ankur Choudhury
- 189
- 2
- 13
2
votes
1 answer
How do I preserve line breaks when exporting from libreoffice calc to xml?
I am writing XSLT filters to import XML data into Libreoffice-Calc, and then export it back to XML after making modifications in Libreoffice.
In the source XML, some of the fields contain multiple lines. When I import these into Libreoffice-Calc…

Ananda
- 23
- 4
2
votes
1 answer
How can I programmatically create an ODT document?
I'm attempting to produce an ODT document using Node.js, and I'm a little lost as to how I can, or whether templates are a suitable alternative.
The document I want to create is simple: table of contents, heading 1s, and paragraphs following each…

GreenTriangle
- 2,382
- 2
- 21
- 35