similar to: Docx format ?

Displaying 20 results from an estimated 6000 matches similar to: "Docx format ?"

2009 Dec 04
2
CentOS/RHEL's build of firefox hardwired to evolution -- how to change this
For some awful reason (can someone explain why?), the RHEL/CentOS build of firefox is hardwired to use evolution as its mailto client. With FF 2.<mumble> this was fixable with an about:config setting. With 3.0.<mumble>, it seems not. What is the proper way of fixing this? *I* ended up doing a 'sudo rpm -e evolution' and then doing a 'sudo ln -s
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
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!
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
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
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
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
2010 Jan 07
17
Laptop for CentOS-5
I have a defective HP-Compaq nx9420 and so I am looking to replace it. I have pretty much decided to buy no further MicroSoft based products and would very much like to hear recommendations for a suitable notebook host to provide me with Linux based alternative. Given that all the basic functionality required is provided, the main thing that I am looking for is reliability of the host itself. I
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
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
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)) { ?
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
2010 Feb 02
6
Display a warning message at a certain time ?
Hi, I'm currently installing a CentOS 5 desktop as a public internet access point. The machine shuts down every day automatically at 22:30. Is there a way I can display a message in GNOME at 22:15 warning the user that the machine will shutdown in 15 minutes ? Any suggestions ? Niki Kovacs
2023 Dec 30
1
Help request: Parsing docx files for key words and appending to a spreadsheet
Good idea, El - thanks. The link is https://docs.google.com/document/d/1QwuaWZk6tYlWQXJ3WLczxC8Cda6zVERk/edit?usp=sharing&ouid=103065135255080058813&rtpof=true&sd=true This is helpful. From the article, which is typical of Lexis+ output, I want to extract the following fields and append to a Calc/ Excel spreadsheet. Given the volume of articles I have to work through, if this
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 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
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
2009 Apr 12
3
Using cdrecord on CentOS
Hi, I'd like to use cdrecord on the command line. I'm currently reading the relevant chapter in Carla Schroder's "Linux Cookbook". Unfortunately, some of the tricks and hints included in the book don't seem to work the same way on a standard CentOS 5 install. 1) Am I supposed to be root to use cdrecord and burn an .iso file? 2) How do I specify a device?
2008 Jul 29
1
Flax support for docx
Anyone used Flax to search for docx? I'm testing on XP. Installed msxml6.msi and FilterPackx86.exe but Flax dosen't seem to register *.docx as a document type. Is there a way for me to add it in? Thanks, Frank