Displaying 20 results from an estimated 2000 matches similar to: "Flax support for docx"
2009 Feb 03
1
PowerPoint 2007 filter
Hi,
I'm trying to write the PowerPoint2007 filter in the same manner that I
did for *.docx and *.xlsx but I'm getting the following error when I tru
an index.
The document is called:
Indexing "/Frisk in Power Point.pptx" as
application/vnd.openxmlformats-officedocument.presentationml.presentation ... caution: filename not matched: ppt/notesSlides/notesSlide*.xml
caution:
2008 Jul 30
3
Dealing with image PDF's
Guys,
I was just playing around and added a bit of code to omindex.cc so I
could ocr tiff and tif with gocr which seems to work. Here's what it
looks like:
// Tiff:
} else if (startswith(mimetype, "image/tif"))
{
// Inspired by http://mjr.towers.org.uk/comp/sxw2text
string safefile = shell_protect(file);
string cmd = "tifftopnm " + safefile + "
2008 Jul 30
3
Dealing with image PDF's
Guys,
I was just playing around and added a bit of code to omindex.cc so I
could ocr tiff and tif with gocr which seems to work. Here's what it
looks like:
// Tiff:
} else if (startswith(mimetype, "image/tif"))
{
// Inspired by http://mjr.towers.org.uk/comp/sxw2text
string safefile = shell_protect(file);
string cmd = "tifftopnm " + safefile + "
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
? Fri, 29 Dec 2023 20:17:41 +0000
Andy <phaedrusv at gmail.com> ?????:
> doc_in <- read_docx(files)
>
> Results in this error:Error in filetype %in% c("docx") &&
> grepl("^([fh]ttp)", file) :'length = 9' in coercion to 'logical(1)'
help(read_docx) says that the function only imports one docx file. In
order to read multiple files,
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
help(read_docx) says that the function only imports one docx file. In
> order to read multiple files, use a for loop or the lapply function.
>
I told you people will suggest better ways to loop!!
>
> docx_summary(read_docx("Now they want us to charge our electric cars
> from litter bins.docx")) should work.
>
Ivan thanks for spotting my fail! Since the OP is new to
2012 May 07
2
FileFormatConverters: no equations in docx documents?
Hello.
I need to view some docx files that embed equations. I installed wordviewer, then FileformatConverters in wine 1.5.3. Both install ok, and I can view docx files, except that the equations don't appear at all.
Does anybody have a solution?
Thanks!
--
F. Delente
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
Hi Roy (& others)
Many thanks for the advice - well taken. Thanks also to the others who
have responded so quickly - I thought I might have to wait days!! :-)
I'm on a Linux (Mint) machine. Below, I document three attempts, two
using officer and the last now using textreadr
My attempts so far using 'officer':
##################
(1) First Attempt:
# Load libraries
2023 Dec 30
1
Help request: Parsing docx files for key words and appending to a spreadsheet
Thanks Ivan and Calum
I continue to appreciate your support.
Calum, I entered the code snippet you provided, and it returns 'file
missing'. Looking at this, while the object 'full_filename' exists, what
is happening is that the path from getwd() is being appended to the
title of the article, but without the '/' between the end of the path
name (here 'TEST' and
2023 Dec 30
2
Help request: Parsing docx files for key words and appending to a spreadsheet
Hi Eric
Thanks for that. That seems to fix one problem (the lack of a
separator), but introduces a new one when I complete the function Calum
proposed:Error in docx_summary() : argument "x" is missing, with no default
The whole code so far looks like this:
# Load libraries
library(tcltk)
library(tidyverse)
library(officer)
filepath <- setwd(tk_choose.dir())
filename <-
2023 Dec 30
1
Help request: Parsing docx files for key words and appending to a spreadsheet
full_filename <- paste(filepath, filename,sep="/")
On Sat, Dec 30, 2023 at 1:45?PM Andy <phaedrusv at gmail.com> wrote:
> Thanks Ivan and Calum
>
> I continue to appreciate your support.
>
> Calum, I entered the code snippet you provided, and it returns 'file
> missing'. Looking at this, while the object 'full_filename' exists, what
> is
2023 Dec 30
3
Help request: Parsing docx files for key words and appending to a spreadsheet
An update: Running this block of code:
# Load libraries
library(tcltk)
library(tidyverse)
library(officer)
filepath <- setwd(tk_choose.dir())
filename <- "Now they want us to charge our electric cars from litter
bins.docx"
#full_filename <- paste0(filepath, filename)
full_filename <- paste(filepath, filename, sep="/")
if (!file.exists(full_filename)) {
?
2009 Jun 09
3
OT: Viewer for .docx M$ WORD files?
Is there a Viewer for .docx M$ WORD files? If so, where can I get
it? This file type cannot be opened with OpenOffice.org 2.3. TIA!
2009 Nov 25
8
Docx format ?
Hi,
Is there any way I can read a .docx file on my CentOS desktop ?
Cheers,
Niki
2012 Oct 19
3
saving to docx
hi all,
how can i saving R output to docx or Jpeg format?
[[alternative HTML version deleted]]
2023 Dec 29
2
Help request: Parsing docx files for key words and appending to a spreadsheet
Hi Andy:
I don?t have an answer but I do have what I hope is some friendly advice. Generally the more information you can provide, the more likely you will get help that is useful. In your case you say that you tried several packages and they didn?t do what you wanted. Providing that code, as well as why they didn?t do what you wanted (be specific) would greatly facilitate things.
Happy
2007 Oct 18
2
DocX support in OpenOffice
Has anyone got the docx plugin for OpenOffice 2 running in CentOS?
I have tried using the OpenOffice.org rpms and the ones in CentOS, but
the plugin does not seem to work.
To get it working I extracted the rpm from Novell, then copied the
files to the registry/ folders and the Odfconverter to the program/
folder, but I can't get any ooxml files open at all, it gives me an
error about the
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
checkout the 'officer' package
Thanks
Jim Holtman
*Data Munger Guru*
*What is the problem that you are trying to solve?Tell me what you want to
do, not how you want to do it.*
On Fri, Dec 29, 2023 at 10:14?AM Andy <phaedrusv at gmail.com> wrote:
> Hello
>
> I am trying to work through a problem, but feel like I've gone down a
> rabbit hole. I'd very much
2023 Dec 29
2
Help request: Parsing docx files for key words and appending to a spreadsheet
Hello
I am trying to work through a problem, but feel like I've gone down a
rabbit hole. I'd very much appreciate any help.
The task: I have several directories of multiple (some directories, up
to 2,500+) *.docx files (newspaper articles downloaded from Lexis+) that
I want to iterate through to append to a spreadsheet only those articles
that satisfy a condition (i.e., a specific
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
It sounded like he looked at officeR but I would agree
content <- officer::docx_summary("filename.docx")
Would get the text content into an object called content.
That object is a data.frame so you can then manipulate it. To be more
specific, we might need an example of the DF
You can loop this easily with a for statement although there are people who
prefer a non-for approach to
2012 Apr 06
1
Wine MSoffice 2007 .docx.lnk file creation on Ubuntu 11.10
whenever I open or save a file on MSword 2007 using WIne 1.3.28 on Ubuntu 11.10, there's also a .docx.lnk file that gets created with the same name as my documents.
How to fix this?