====== caption Plugin ====== ---- plugin ---- description: Provide figure and table captions with reference and automatic numbering author : Till Biskup email : till [at] till [minus] biskup [dot] de type : syntax lastupdate : 2024-02-24 compatible : Elenor of Tsort, Frusterick Manners, Greebo, Hogfather, Igor, Jack Jackrum depends : conflicts : bootswrapper similar : tags : caption, figure, tables downloadurl: https://github.com/tillbiskup/dokuwiki-caption/tarball/master bugtracker : https://github.com/tillbiskup/dokuwiki-caption/issues sourcerepo : https://github.com/tillbiskup/dokuwiki-caption/ screenshot_img : ---- Please refer to the [[https://www.till-biskup.de/de/software/dokuwiki/caption|plugin homepage]] for //the original// installation and documentation guide (note that instructions are only available in German). ===== Syntax ===== The plugin basically provides two different syntax elements, similar to the [[plugin:blockquote|blockquote plugin]], one for the outer block (figure, table, codeblock, fileblock), one for the caption:
... ...
Besides ''
...
'' as shown above, you can use ''...
'', ''...'', and ''...'' as well. ''...'' should only ever be used within one of the other two environments. **Note:** Illustrations always have their captions set below the actual illustration, tables (and code/file blocks) always have their captions placed above. Place the caption accordingly. Within the syntax elements, almost every other DokuWiki markup is allowed. The caption environment provides for automatic numbering and the output of the string "Fig." or "Figure" (and corresponding for the tables, code and file blocks). Whether the abbreviated or spelled notation is to be used can be set via the configuration interface of the plugin. The respective strings are localized, localizations for German, English, Korean and Portuguese-Brazil are currently available, others can be easily installed if necessary((According to the guidelines and structures of DokuWiki for multilingualism.)). **Note:** In DokuWiki almost everything is allowed within a '''', but you should be aware that e.g. footnotes within a floating environment are not allowed in LaTeX.((An appropriate automatic handling of footnotes within the scope of the dokulatex plugin within floating environments is (at least for the moment) beyond the possibilities and the reasonable amount of programming effort.)) ==== Labels and references ==== Since the figures and tables are automatically numbered by the plugin, there is a need to be able to refer to these figures / tables automatically in the text without having to change all references by hand each time when regrouping the figures / tables. The original restriction by the parser that only references to already defined figures / tables were resolved has been fixed((The "trick" is a little rough as it is a search & replace in the already parsed part of the current page.)). The syntax looks like this:
...
... {{ref>label}} The same applies to the tables. This means that the (optional) label is defined in the opening tag of an image / table ((Pay attention to short, concise but meaningful labels. Since the same labels are also used in the case of LaTeX export in LaTeX, all limitations of LaTeX labels apply: no special characters such as umlauts, no spaces)) and via the structure {{ref>label}} referred to. The reference does not differentiate between figures and tables; without exception (like the corresponding LaTeX command ''\ref{}'') it outputs the corresponding number. This number is also a link to the corresponding figure / table. **Note:** If a label / table has a label defined, this will be displayed as a "hover" text ("tooltip"), if you move the mouse over the respective beginning of the respective label ("Fig[ure] n" / "Tab[le] m"). ==== Changing numbering ==== Sometimes you would like to control the numbering of your figures/tables/... This is possible as well (new 2021-09-29). You can (re)set the counters everywhere on your dokuwiki page, and independently for all kinds of environments (figures, tables, code and file listings). Suppose you would want to set the counter for figures to 5: {{setcounter figure=5}} Note: You can only set the four defined types (''figure'', ''table'', ''codeblock'', ''fileblock''), and you can only use integers. ==== Example ==== And that's how the DokuWiki markup could look like:
{{:Stuff:kuschelpanzer.jpg|cuddle tanks}} **The ultimate pink cuddly shell.** Now I finally have to get one Create a caption, which also contains some // formatting //. Basically, everything is allowed ((footnotes actually?))
And the result: {{ https://web.archive.org/web/20180525110511im_/https://www.till-biskup.de/_media/de/software/dokuwiki/figure-caption-beispiel.png?recache |cuddle tanks}} or analogously for a table: ^ Heading 1 ^ Heading 2 ^ Heading 3 ^ | Some text | some more text | some less text | | no idea what to write in here ||| | | But still some idea for here ||
And a table heading with some **bold text**.
{{https://web.archive.org/web/20180525110511im_/https://www.till-biskup.de/_media/de/software/dokuwiki/table-caption-beispiel.png?recache |}} ==== Styles ==== The individual elements are as far as possible separately addressable and adaptable via changes to the CSS file of the plugin. The following is an example of the XHTML code generated by the plugin, specifying the appropriate classes.
Figure 2: ...
Basically, it is important to format the image subheadings and table headings so that they are as clear as possible from the surrounding body text (especially if they span multiple paragraphs, which may be less common, but may well occur). ==== Configuration ==== The DokuWiki configuration interface can be used to set whether the over / signatures begin with abbreviated or advertised "labels" ("Figure" vs. "Fig." / "Table" vs. "Tab."). The "labels" are initially available in German and English via the standard localization of the plugins, but can also be supplemented for other languages ​​if required. ===== Installation ===== Search and install the plugin using the [[plugin:extension|Extension Manager]]. Refer to [[:Plugins]] on how to install plugins manually. ===== Development ===== Development takes place via git and GitHub. Feel free to fork the repository, change it and submit pull requests. === Change Log === {{rss>https://github.com/tillbiskup/dokuwiki-caption/commits/master.atom date}} === Known Bugs and Issues === Please report bugs or feature requests at the [[https://github.com/tillbiskup/dokuwiki-caption/issues|bug tracker]].