1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
|
#author John Wiegley and Michael Olson
#title The Emacs Muse
Emacs Muse is an authoring and publishing environment for Emacs. It
simplifies the process of writing documents and publishing them to
various output formats.
Muse consists of two main parts: an enhanced text-mode for authoring
documents and navigating within Muse projects, and a set of publishing
styles for generating different kinds of output.
<contents>
* About this document
This document provides an example of Muse markup and also functions as
a quickstart for Muse.
To see what it looks like when published, type =make examples=. You
will then get an Info document, an HTML document, and a PDF document
(provided you have an implementation of LaTeX installed with the
necessary fonts).
* Getting Started
To use Muse, add the directory containing its files to your
=load-path= variable, in your =.emacs= file. Then, load in the
authoring mode, and the styles you wish to publish to. For example:
<example>
(add-to-list 'load-path "<path to Muse>")
(require 'muse-mode) ; load authoring mode
(require 'muse-html) ; load publishing styles I use
(require 'muse-latex)
(require 'muse-texinfo)
(require 'muse-docbook)
(require 'muse-project) ; publish files in projects
</example>
Once loaded, the command =M-x muse-publish-this-file= will publish an
input document to any available style. If you enable =muse-mode=
within a buffer, by typing =M-x muse-mode=, this command will be bound
to =C-c C-t=.
* Creating a Muse project
Often you will want to publish all the files within a directory to a
particular set of output styles automatically. To support, Muse
allows for the creations of "projects". Here is a sample project, to
be defined in your =.emacs= file:
<example>
(setq muse-project-alist
'(("website" ("~/Pages" :default "index")
(:base "html" :path "~/public_html")
(:base "pdf" :path "~/public_html/pdf"))))
</example>
The above defines a project named "website", whose files are located
in the directory =~/Pages=. The default page to visit is =index=.
When this project is published, each page will be output as HTML to
the directory =~/public_html=, and as PDF to the directory
=~/public_html/pdf=. Within any project page, you may create a link
to other pages using the syntax =[[pagename]]=.
* Markup rules
A Muse document uses special, contextual markup rules to determine how
to format the output result. For example, if a paragraph is indented,
Muse assumes it should be quoted.
There are not too many markup rules, and all of them strive to be as
simple as possible so that you can focus on document creation, rather
than formatting.
** Paragraphs
Separate paragraphs in Muse must be separate by a blank line.
For example, the input text used for this section is:
<example>
Separate paragraphs in Muse must be separate by a blank line.
For example, the input text used for this section is:
</example>
** Centered paragraphs and quotations
A line that begins with six or more columns of whitespace (either tabs
or spaces) indicates a centered paragraph.
This is centered
But if a line begins with whitespace, though less than six columns,
it indicates a quoted paragraph.
** Headings
A heading becomes a chapter or section in printed output -- depending
on the style. To indicate a heading, start a new paragraph with one
to three asterices, followed by a space and the heading title. Then
begin another paragraph to enter the text for that section.
<example>
* First level
** Second level
*** Third level
</example>
** Horizontal rules
Four or more dashes indicate a horizontal rule. Be sure to put blank
lines around it, or it will be considered part of the proceeding or
following paragraph!
----
The separator above was produced by typing:
<example>
----
</example>
** Emphasizing text
To emphasize text, surround it with certain specially recognized
characters:
<example>
*emphasis*
**strong emphasis**
***very strong emphasis***
_underlined_
=verbatim and monospace=
</example>
The above list renders as:
<verse>
*emphasis*
**strong emphasis**
***very strong emphasis***
_underlined_
=verbatim and monospace=
</verse>
** Adding footnotes
A footnote reference is simply a number in square
brackets<verbatim>[1]</verbatim>.[1] To define the footnote, place
this definition at the bottom of your file. =footnote-mode= can be
used to greatly facilitate the creation of these kinds of footnotes.
<example>
Footnotes:
[1] Footnotes are defined by the same number in brackets
occurring at the beginning of a line. Use footnote-mode's
C-c ! a command, to very easily insert footnotes while
typing. Use C-x C-x to return to the point of insertion.
</example>
** Verse
Poetry requires that whitespace be preserved, but without resorting to
monospace. To indicate this, use the following markup, reminiscent of
e-mail quotations:
<example>
> A line of Emacs verse;
> forgive its being so terse.
</example>
The above is rendered as:
> A line of Emacs verse;
> forgive its being so terse.
You can also use the =<literal><verse></literal>= tag, if you prefer:
<example>
<verse>
A line of Emacs verse;
forgive its being so terse.
</verse>
</example>
** Literal paragraphs
The =<literal><example></literal>= tag is used for examples, where
whitespace should be preserved, the text rendered in monospace, and
any characters special to the output style escaped.
There is also the =<literal><literal></literal>= tag, which causes a
marked block to be entirely left alone. This can be used for
inserting a hand-coded HTML blocks into HTML output, for example.
If you want some text to only be inserted when publishing to a
particular format, use the =style= attribute for the
=<literal><literal></literal>= tag. Some examples follow.
<example>
You are reading the
<literal style="html">HTML</literal>
<literal style="pdf">PDF</literal>
<literal style="info">Info</literal>
version of this document.
</example>
Produces:
You are reading the
<literal style="html">HTML</literal>
<literal style="pdf">PDF</literal>
<literal style="info">Info</literal>
version of this document.
<example>
<literal style="latex">
LaTeX was used in the publishing of this document.
</literal>
</example>
Produces:
<literal style="latex">
LaTeX was used in the publishing of this document.
</literal>
** Lists
Lists are given using special characters at the beginning of a line.
Whitespace must occur before bullets or numbered items, to distinguish
from the possibility of those characters occurring in a real sentence.
The supported kinds of lists are:
<example>
- bullet item one
- bullet item two
1. Enumerated item one
2. Enumerated item two
Term1 :: A definition one
Term2 :: A definition two
</example>
These are rendered as a bullet list:
- bullet item one
- bullet item two
An enumerated list:
1. Enum item one
2. Enum item two
And a definition list:
Term1 ::
This is a first definition
And it has two lines;
no, make that three.
Term2 ::
This is a second definition
Lists may be nested inside of one another. The level of nesting is
determined by the amount of leading whitespace.
<example>
- Level 1, bullet item one
1. Level 2, enum item one
2. Level 2, enum item two
- Level 1, bullet item two
</example>
This is rendered as:
- Level 1, bullet item one
1. Level 2, enum item one
2. Level 2, enum item two
- Level 1, bullet item two
** Tables
Simple tables are supported. The syntax is:
<example>
Double bars || Separate header fields
Single bars | Separate body fields
Here are more | body fields
Triple bars ||| Separate footer fields
</example>
The above is rendered as:
Double bars || Separate header fields
Single bars | Separate body fields
Here are more | body fields
Triple bars ||| Separate footer fields
<comment>
Double bars || Separate header fields
Single bars | Separate body fields
Here are more | body fields
Triple bars ||| Separate footer fields
</comment>
It is also possible to make tables that look like:
<example>
| Single bars | Separate body fields |
| Here are more | body fields |
</example>
This publishes as:
| Single bars | Separate body fields |
| Here are more | body fields |
If you are familiar with Org-mode style tables, simple variants (no
column groups or autogenerated formulas) will publish fine. Also,
table.el style tables will be published, provided that the output
format is something that table.el supports.
** Anchors and tagged links
#example If you begin a line with "#anchor" -- where "anchor" can be
any word that doesn't contain whitespace -- it defines an anchor at
that point into the document. This point can be referenced using
"page#anchor" as the target in a Muse link (see below).
Click [[#example][here]] to go back to the previous paragraph.
** URLs and E-mail addresses
A URL or e-mail address encountered in the input text is published as
a hyperlink if the output style supports it. For example, the latest
Muse source can be downloaded at http://download.gna.org/muse-el and
mail may be sent to mwolson@gnu.org.
** Images
If a URL has an extension of a known image format, it will be inlined
if possible. To create a link to an image, rather than inlining it,
put the text "URL:" immediately in front of the link.
This is an inlined image example:
<example>
Made with [[muse-made-with.png]] Emacs Muse.
</example>
This publishes as:
Made with [[muse-made-with.png]] Emacs Muse.
Here is an example of a captioned image:
<example>
[[emacs-muse.png][Emacs Muse, the publishing choice of (a subset of) Great Thinkers]]
</example>
This publishes as:
[[emacs-muse.png][Emacs Muse, the publishing choice of (a subset of) Great Thinkers]]
The following will be published as a link only.
<example>
The Muse logo: [[URL:http://mwolson.org/static/logos/emacs-muse.png]].
</example>
The Muse logo: [[URL:http://mwolson.org/static/logos/emacs-muse.png]].
** Links
A hyperlink can reference a URL, or another page within a Muse
project. In addition, descriptive text can be specified, which should
be displayed rather than the link text in output styles that supports
link descriptions. The syntax is:
<example>
[[link target][link description]]
[[link target without description]]
</example>
Thus, the text:
<example>
Muse can be downloaded [[http://download.gna.org/muse-el/][here]], or at
[[http://download.gna.org/muse-el/]].
</example>
Publishes as:
Muse can be downloaded [[http://download.gna.org/muse-el/][here]], or at
[[http://download.gna.org/muse-el/]].
** Source code
If you have htmlize.el version 1.34 or later installed, you can
publish colorized HTML for source code in any major mode that Emacs
supports by using the =<literal><src></literal>= tag. If not publishing
to HTML, the text between the tags will be treated like an
=<literal><example></literal>= tag.
Here is some example C code. Muse takes the =lang= element and appends
="-mode"= to it in order to determine which major mode to use when
colorizing the code.
<example>
<src lang="c">
#include <stdlib.h>
char *unused;
int main (int argc, char *argv[])
{
puts("Hello, world!\n");
}
</src>
</example>
Here is the colorized output. This may look different if you have
customized some faces. Also, it may look different depending on
whether you are publishing from Emacs on the console, or Emacs on X --
what you see when viewing (in this case) a C file is what you get.
<src lang="c">
#include <stdlib.h>
char *unused;
int main (int argc, char *argv[])
{
puts("Hello, world!\n");
}
</src>
** Embedded Lisp, Perl, Ruby, Python, or Shell
Arbitrary kinds of markup can be achieved using the
=<literal><lisp></literal>= tag, which is the only Muse tag supported
in a style's header and footer text. With the
=<literal><lisp></literal>= tag, you may generated whatever output
text you wish. The inserted output will get marked up, if the
=<literal><lisp></literal>= tag appears within the main text of the
document.
<example>
<lisp>(concat "This form gets " "inserted")</lisp>
</example>
The above renders as: <lisp>(concat "This form gets " "inserted")</lisp>.
It is also possible to treat the output as if it were surrounded by
the =<literal><example></literal>=, =<literal><src></literal>=, or
=<literal><verse></literal>= tags, by specifying ="example"=, ="src"=, or
="verse"= as the =markup= attribute of the tag.
For example:
<example>
<lisp markup="example">
(concat "Insert" " me")
</lisp>
</example>
The output is:
<lisp markup="example">
(concat "Insert" " me")
</lisp>
This =markup= attribute can also be passed to the
=<literal><perl></literal>=, =<literal><ruby></literal>=,
=<literal><python></literal>=, and =<literal><command></literal>= tags,
which interpret Perl, Ruby, Python, and Shell code, respectively.
* Publishing styles
One of the principle features of Muse is the ability to publish a
simple input text to a variety of different output styles. Muse also
makes it easy to create new styles, or derive from an existing style.
** Deriving from an existing style
To create a new style from an existing one, use =muse-derive-style=:
<example>
(muse-derive-style DERIVED-NAME BASE-NAME STYLE-PARAMETERS)
</example>
The derived name is a string defining the new style, such as
"my-html". The base name must identify an existing style, such as
"html" -- if you have loaded =muse-html=. The style parameters are the
same as those used to create a style, except that they override
whatever definitions exist in the base style.
Most often, this will come in handy for using a custom header, footer,
and/or stylesheet for a project. Here is one such example.
<example>
(setq my-different-style-sheet
(concat "<link rel=\"stylesheet\" type=\"text/css\""
" charset=\"utf-8\" media=\"all\""
" href=\"/different.css\" />"))
(muse-derive-style "my-xhtml" "xhtml"
:header "~/.emacs.d/muse/different-header.html"
:footer "~/.emacs.d/muse/different-footer.html"
:style-sheet my-different-style-sheet)
</example>
Many parameters support being partially overridden. As an example:
with =:functions=, if a markup function is not found in the derived
style's function list, the base style's function list will be queried.
If a parameter takes the name of a function, then returning non-nil
from that function causes no further processing to be done. If the
function returns nil, any other functions in the base style will be
called.
** Creating a new style
To create a new style, use =muse-define-style=:
<example>
(muse-define-style NAME STYLE-PARAMETERS)
</example>
If you want to create a new style, it is best to examine the source
code for other styles first, to get an idea of what needs to be done.
Each output format should have its own file, containing all styles
based on it. For example. the =latex=, =latex-slides=, and =pdf= styles are
all contained in =muse-latex.el=.
If you are willing to sign copyright papers for the Free Software
Foundation (we will help you with this step), the Muse authors may be
interested in including your work in future versions of Muse.
* License
This QuickStart document may be redistributed and/or modified under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.
Footnotes:
[1] This is a footnote.
[2] Another footnote, this one unreferenced.
|