=== Plugin Name === Contributors: divinenephron Tags: latex, pdf, attachment Requires at least: 3.0 Tested up to: 3.3.1 Stable tag: trunk Produce PDF documents of everything on your site with Latex. == Description == Latex Everything can produce PDF documents of everything on your site with Latex. Or at least everything worth putting into a PDF. Latex Everything can make PDF documents from individual posts and groups of posts like categories, tags and custom taxonomy terms. The plugins contains everything a theme needs to define its own Latex templates, and link to the PDFs produced. == Installation == 1. This plugin requires `pdflatex` and `pdftk` installed. You can check for these by executing `which pdflatex` and `which pdftk` on your host. 2. Upload latex fold to the /wp-content/plugins/ directory 3. Activate the plugin Latex for WordPress through the 'Plugins' menu in WordPress. 4. Link to the pdf version of a post by putting the following into The Loop: `PDF VersionReading`. There is a "Latex Everything" section where you can choose which documents Latex Everything creates. By default only "Single Posts" option is selected, but you can typset other post types (including custom ones), documents containing every post in a category (or other taxonomies), and documents containing every post of a specific post type. There are in fact three broad types of document Latex Everything produces: * `single_post` -- Each document contains a single post (this can be a page or a custom post type). * `post_type` -- Each document contains every post of a particular type (e.g. a post, a page, or a custom post type). * `term` -- Each post contains every post belonging to a specific term (e.g. a category, tag, or term in a custom taxonomy). You need to know what sort of document you're looking for when getting its url. = When are the PDF files generated? = PDF files that contain a post are updated when it is saved. PDF files are also generated in bulk after the plugin is activated (this uses WP-Cron, so it takes a while). If you have a large number of posts and want to generate PDF files for all of them, deactivate and reactivate the plugin, then wait. = How do I link to the generated documents? = Functions have been provided to link to the generated PDFs. * `the_latex_url( $type, $arg1, [$arg2])` -- Prints a direct link to the PDF. * `get_latex_url( $type, $arg1, [$arg2])` -- Returns a direct link to the PDF. * `the_latex_permalink( $type, $arg1, [$arg2])` -- Prints a link to the attachment page. * `get_latex_permalink( $type, $arg1, [$arg2])` -- Returns a link to the attachment page. * `get_latex_attachment_id( $type, $arg1, [$arg])` -- Returns the id of the attachment. The arguments you give depend on the type of PDF document you're requesting: For a `single_post` PDF: `the_latex_url( 'single_post', (int) $post_id )` For a `post_type` PDF: `the_latex_url( 'post_type', (string) $post_type )` For a `term` PDF: `the_latex_url( 'term', (int) $term_id, (string) $taxonomy)` Here's how you would use them in The Loop. `PDF of this post` `PDF of all posts` `` `PDF of a category` `` NB: These don't automatically figure out which post you're on while in The Loop, you must always give all of the arguments If you are going to use these functions in a theme, check they exist and produce a url first: `` `PDF` `` = How do I use my own Latex Templates? = Latex Everything has a default template inside the plugin directory, but it only falls back on that if it doesn't find templates in the theme directory. The plugin searches for templates in the same way that Wordpress does. For a `single_post` PDF: `latex-single--.php` `latex-single--.php` `latex-single-.php` `latex-single.php` `latex.php` For a `post_type` PDF: `latex-post-type-.pdf` `latex-post-type.pdf` `latex.pdf` For a `term` PDF: `latex-term--.pdf` `latex-term--.pdf` `latex-term-.pdf` `latex-term.pdf` `latex.pdf` Look at `default-latex-template.php` in the plugin directory for guidance as to how to make your own. = How can I extend this? = The plugin has been built with the intention of being extensible. The internals have documentaion in comments, and if you want to know how to do something that isn't obvious, create a new topic in the [plugin forum](http://wordpress.org/tags/latex-everything?forum_id=10#postform) and the author will try to get back to you. == Screenshots == 1. The options page. 2. The default generated output. == Changelog == = 1.0 = * First released version. == Upgrade Notice == = 1.0 = First stable version.