Math & Science ⇒ Word drawings into LaTeX
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Word drawings into LaTeX
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Word drawings into LaTeX
Stefan
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: Word drawings into LaTeX
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Word drawings into LaTeX
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: Word drawings into LaTeX
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Word drawings into LaTeX
Which drawings done in W0rd are so "complex" that they can't be done in LaTeX (with appropriate packages)?ghostanime2001 wrote:Is there a way to get pictures made in Word into LaTeX without loss of quality (or minimal loss) ?
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Word drawings into LaTeX
What do you mean by "selectively"? Just parts of it?ghostanime2001 wrote:Is that the only way? I made a picture of height: 2.72 in and Width: 2.29 can't I selectively take that picture in word and incorporate it into latex ?
You could probably clip the PDF with some commands from PGF/TikZ or similar, but I'd recommend either using pdfcrop as already suggested, or cropping it with something like BRISS which provides a GUI for manually selecting the crop region.
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: Word drawings into LaTeX
Secondly, what i mean is how do u take drawings done in word in original dimensions into latex? and from your posts it seems i need to know PDFlatex or PGF/TikZ. Instead of flipping through the internet what is the command to take pictures made in word into latex?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Word drawings into LaTeX
Because this is a LaTeX forum which rarely deals with W0rd documents. So there is no need to allow attachments in formats not related to LaTeX. But you can always put the file into a RAR or ZIP archive and attach it by upload to the forum server.ghostanime2001 wrote:Why can't I attach word documents on this site? […]
Stefan has already proposed a possible solution in his reply.ghostanime2001 wrote:[…] Secondly, what i mean is how do u take drawings done in word in original dimensions into latex? […]
Same answer as above. Since we mainly discuss here about LaTeX, it cannot be our primary problem to find that out. Furthermore we cannot teach you how to handle your word processor.ghostanime2001 wrote:[…] Instead of flipping through the internet what is the command to take pictures made in word into latex?
Nevertheless you can attach the document to your next post as explained above for those who will try to help.
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Word drawings into LaTeX
You definitely don't need to know PGF/TikZ if you want to use the original dimensions. pdflatex is not something you need to "know" -- it works with regular LaTeX documents. The command for including a PDF image is the same as for including any other image:ghostanime2001 wrote:and from your posts it seems i need to know PDFlatex or PGF/TikZ.
Code: Select all
\usepackage{graphicx}
Code: Select all
\includegraphics{filename}
If you need to use regular latex to compile and cannot use pdflatex (though this is a rare occurrence these days), you can convert the PDF to a PS file either using Ghostscript, or Inkscape or similar. For ghostscript
Code: Select all
pdf2ps filename.pdf filename.ps
But the real question is, why would anyone want to create images in Word anyway? If you don't want to use TikZ or PStricks, etc., surely, a dedicated image program like the GIMP for raster graphics or Inkscape for vector drawings would be better anyway?