How to automate LaTeX to PDF conversion with quickrun.vim [closed] - pdf

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I want to automatically convert LaTeX to PDF with pdflatex, then open the PDF in Evince using quickrun.vim.
I've read the documentation for quickrun.vim, and it seems that I should use a function :function! quickrun#register_outputter(name, outputter), but how can I realize that by configuring my .vimrc?

I don't know anything about quickrun.vim, but a simple mapping would also be sufficient. Add this to your .vimrc:
autocmd FileType tex noremap <buffer> <F5> :w<CR> :!pdflatex -shell-escape "%" && evince %:p:r.pdf<CR>
Hitting will then run pdflatex and open the pdf in evince.

Related

Can I use this Notepad++ for OS X? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I found this notepad++ for mac ,it has a size of 215 megabytes(quite large).
I have downloaded it and started looking at it.
I found this link:
http://www.youtube.com/watch?v=ywh6HlCmtg0
It is actually working pretty good.
I just like to know;
is this OK?,Or Lawful?
if it is not I like to remove this from my computer.
Thanks
I'd recommend you use something like Sublime Text 2 if you want to have a neat text editor. You can use it for free, it just bugs you once in a while, when you save a file. It's full featured either way.

PDF to JPG local conversion [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm looking for a solution that will allow users to convert PDF files possibly of multiple pages into JPGs. The solution must be local, online solutions are a no go due to security issues and it must be as ridiculously simple as possible so non IT types can use it easily. Licensing is not an issue but would prefer for it to be GPL. Can anyone help?
Thanks.
Ghostscript, with a command line like
gs -sDEVICE=jpeg -sOutputFile=page%02d.jpg -r150 -dNOPAUSE -dBATCH file.pdf
where 150 is the resolution in dots per inch. You could wrap this in some script that presents a nicer user interface.

How to create a read only document in latex? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I am trying to generate read only pdf's with latex and I am having difficulty finding the best solution. I looked at pdftek but what are other options?
If you want truly read-only pdf's you can do what law firms do and print out the document then scan it back to a pdf.
PDF is an open format and given the right tools you can take it apart and pull out any images and any text. That being said you can add security permissions using the pdftk tool. If you encrypt it you can set permissions (like disabling editing and disabling printing)
See pdftk and permissions in the man page.

Removing fonts from PDF don't seem to work [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
The size of my PDF-files i can see is 90% embedded fonts. However if i try to remove the fonts using the PDF Optimizer in Adobe Acrobat size of the file don't change.
Here is a calculation of the space usage done by Acrobat:
And if i remove the fonts in the fonts options dialog the size remains the same. Is there anything else that i can do to remove the fonts, or am i doing something wrong?
BR
Andreas

how to merge pdf page [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 12 years ago.
Improve this question
I have one pdf file which is extract from ppt (power point presentation) and one page in pdf is one slide. How can I merge two pdf page in one page.
pdftk is the tool I use
http://www.pdfjoin.com/ is an online solution. Here's the (linux) command line tool.
Quick googling did bring up this tool: http://www.pdfsam.org/
GPL licenced too.