From: Carsten Dominik <carsten.dominik@gmail.com>
To: Mark Elston <m_elston@comcast.net>
Cc: emacs-orgmode@gnu.org
Subject: Re: Bug: Incorrect escaping of braces on LaTeX export [6.33trans (release_6.33f.122.g7062a.dirty)]
Date: Thu, 17 Dec 2009 20:27:27 +0100 [thread overview]
Message-ID: <2B4C5268-9A5D-453F-9B0A-3FD3D6B703CC@gmail.com> (raw)
In-Reply-To: <4B2975DA.5060008@comcast.net>
Hi Mark,
what is the error you are getting?
- Carsten
On Dec 17, 2009, at 1:05 AM, Mark Elston wrote:
>
> Remember to cover the basics, that is, what you expected to happen and
> what in fact did happen. You don't know how to make a good report?
> See
>
> http://orgmode.org/manual/Feedback.html#Feedback
>
> Your bug report will be posted to the Org-mode mailing list.
> ------------------------------------------------------------------------
>
> While attempting to generate some notes for a class I give I ran into
> an error in the generated latex file. I use memoir for my notes since
> this package gives me the particular formatting I like without any
> hassle so I created an org-export-latex-class to make use of it.
> Since my boilerplate for my notes includes a number of lines after the
> \begin{document} line I have added these to #+TEXT entries in the org
> file.
>
> I use the memoir titlingpage facility as it gives me the control and
> look I want without a lot of code. However, this causes a problem
> with org export since the \maketitle line must be inside a titlingpage
> environment. To accomplish this I have set the #+TITLE: directive to
> an empty value and put the entire titlingpage environment (3 lines) in
> #+TEXT lines.
>
> I have included a simple ErrorSample latex class in my configuration
> which demonstrates the problem without as much being generated.
>
> A sample org file looks like this:
>
> -----------------------------------------------------------------------
> #+TITLE:
> #+OPTIONS: toc:nil
> #+LaTeX_CLASS: ErrorSample
> #+TEXT: \title{ABC Class Notes}
> #+TEXT: \begin{titlingpage}
> #+TEXT: \maketitle
> #+TEXT: \end{titlingpage}
> #+TEXT: \maxtocdepth{subsection}
> #+TEXT: \pagenumbering{roman}
> #+TEXT: \cleartooddpage
> #+TEXT: \tableofcontents
> #+TEXT: \cleartooddpage
> #+TEXT: \chapterstyle{companion}
> #+TEXT: \pagestyle{companion}
> #+TEXT: \aliaspagestyle{part}{companion}
> #+TEXT: \aliaspagestyle{chapter}{headings}
> #+TEXT: \aliaspagestyle{cleared}{companion}
> #+TEXT: \include{Preface}
> #+TEXT: \pagenumbering{arabic}
>
> * Simple First Heading
> Some text.
>
> * Simple Second Heading
> Other text.
> -----------------------------------------------------------------------
>
> The generated tex file is shown next. Notice the escaped closing
> brace on the \title{} instruction:
>
> -----------------------------------------------------------------------
> % Created 2009-12-16 Wed 15:54
> \documentclass[letter,twoside,openright]{memoir}
> \usepackage{varioref}
> \usepackage{shorttoc}
> \usepackage{color}
> \usepackage{graphicx}
> \usepackage{bbding}
>
> \setlength{\parindent}{0pt}
> \setlength{\parskip}{1ex}
>
>
> \title{}
> \author{Mark Elston}
> \date{16 December 2009}
>
> \begin{document}
>
>
>
> \title{ABC Class Notes\}
> \begin{titlingpage}
> \maketitle
> \end{titlingpage}
> \maxtocdepth{subsection}
> \pagenumbering{roman}
> \cleartooddpage
> \tableofcontents
> \cleartooddpage
> \chapterstyle{companion}
> \pagestyle{companion}
> \aliaspagestyle{part}{companion}
> \aliaspagestyle{chapter}{headings}
> \aliaspagestyle{cleared}{companion}
> \include{Preface}
> \pagenumbering{arabic}
>
>
> \chapter{Simple First Heading}
> \label{sec-1}
>
> Some text.
> \chapter{Simple Second Heading}
> \label{sec-2}
>
> Other text.
>
> \end{document}
>
> -----------------------------------------------------------------------
>
> Emacs : GNU Emacs 23.1.1 (i386-mingw-nt6.0.6002)
> of 2009-07-29 on SOFT-MJASON
> Package: Org-mode version 6.33trans (release_6.33f.122.g7062a.dirty)
>
> current state:
> ==============
> (setq
> org-log-done 'time
> org-export-latex-after-initial-vars-hook '(org-beamer-after-initial-
> vars)
> org-agenda-custom-commands '(("S" "Schedule for the week" ((agenda
> "") (todo "TODO"))))
> org-agenda-files '("~/org")
> org-agenda-include-diary t
> org-blocker-hook '(org-block-todo-from-children-or-siblings-or-parent
> org-block-todo-from-checkboxes)
> org-list-demote-modify-bullet '(("-" . "+") ("+" . "-"))
> org-fontify-whole-heading-line t
> org-metaup-hook '(org-babel-load-in-session-maybe)
> org-agenda-skip-timestamp-if-done t
> org-after-todo-state-change-hook '(org-clock-out-if-current)
> org-babel-interpreters '("R" "asymptote" "dot" "ditaa" "python" "sh"
> "emacs-lisp")
> org-export-latex-format-toc-function 'org-export-latex-format-toc-
> default
> org-protocol-protocol-alist '(("Fireforg get bibtex entry: fireforg-
> bibtex-entry://<bibtex entry (encoded)>" :protocol "fireforg-bibtex-
> entry" :function org-fireforg-receive-bibtex-entry)
> ("Fireforg show annotation: fireforg-
> show-annotation://<file (encoded)>/<header (encoded)>" :protocol
> "fireforg-show-annotation" :function org-fireforg-show-annotation)
> )
> org-agenda-skip-scheduled-if-done t
> org-export-preprocess-hook '(org-export-blocks-preprocess)
> org-tab-first-hook '(yas/org-very-safe-expand org-babel-hide-result-
> toggle-maybe
> org-hide-block-toggle-maybe)
> org-src-mode-hook '(org-src-mode-configure-edit-buffer)
> org-confirm-shell-link-function 'yes-or-no-p
> org-export-first-hook '(org-beamer-initialize-open-trackers)
> org-agenda-before-write-hook '(org-agenda-add-entry-text)
> org-directory "~/org/"
> org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-
> drawers
> org-cycle-show-empty-lines org-optimize-window-
> after-visibility-change)
> org-export-latex-classes '(("article"
> "\\documentclass[11pt]{article}\n\\usepackage[utf8]{inputenc}\n\
> \usepackage[T1]{fontenc}\n\\usepackage{graphicx}\n\
> \usepackage{longtable}\n\\usepackage{float}\n\\usepackage{wrapfig}\n\
> \usepackage{soul}\n\\usepackage{amssymb}\n\\usepackage{hyperref}"
> ("\\section{%s}" . "\\section*{%s}")
> ("\\subsection{%s}" . "\\subsection*{%s}")
> ("\\subsubsection{%s}" . "\
> \subsubsection*{%s}")
> ("\\paragraph{%s}" . "\\paragraph*{%s}")
> ("\\subparagraph{%s}" . "\
> \subparagraph*{%s}"))
> ("report"
> "\\documentclass[11pt]{report}\n\\usepackage[utf8]{inputenc}\n\
> \usepackage[T1]{fontenc}\n\\usepackage{graphicx}\n\
> \usepackage{longtable}\n\\usepackage{float}\n\\usepackage{wrapfig}\n\
> \usepackage{soul}\n\\usepackage{amssymb}\n\\usepackage{hyperref}"
> ("\\part{%s}" . "\\part*{%s}")
> ("\\chapter{%s}" . "\\chapter*{%s}")
> ("\\section{%s}" . "\\section*{%s}")
> ("\\subsection{%s}" . "\\subsection*{%s}")
> ("\\subsubsection{%s}" . "\
> \subsubsection*{%s}"))
> ("book"
> "\\documentclass[11pt]{book}\n\\usepackage[utf8]{inputenc}\n\
> \usepackage[T1]{fontenc}\n\\usepackage{graphicx}\n\
> \usepackage{longtable}\n\\usepackage{float}\n\\usepackage{wrapfig}\n\
> \usepackage{soul}\n\\usepackage{amssymb}\n\\usepackage{hyperref}"
> ("\\part{%s}" . "\\part*{%s}")
> ("\\chapter{%s}" . "\\chapter*{%s}")
> ("\\section{%s}" . "\\section*{%s}")
> ("\\subsection{%s}" . "\\subsection*{%s}")
> ("\\subsubsection{%s}" . "\
> \subsubsection*{%s}"))
> ("ClassNotes"
> "\\documentclass[letter,twoside,openright]{memoir}\n\
> \usepackage{varioref}\n\\usepackage{shorttoc}\n\\usepackage{color}\n\
> \usepackage{graphicx}\n\\usepackage{biblestudy}\n\
> \usepackage[polutonikogreek,english]{babel}\n\\usepackage{cjhebrew}\n
> \\usepackage{bbding}\n\n\\newcommand\\checkmark{\\Checkmark}\n\
> \newcommand\\xmark{\\XSolidBold}\n\n\\newcommand\\gr[1]{\\begingroup%
> \n \\selectlanguage{greek}#1%\n \\endgroup}\n\n\\newcommand\\heb[1]
> {\\begingroup%\n \\cjRL{#1}%\n \\endgroup}\n\n\\setlength{\
> \parindent}{0pt}\n\\setlength{\\parskip}{1ex}"
> ("\\chapter{%s}" . "\\chapter*{%s}")
> ("\\section{%s}" . "\\section*{%s}")
> ("\\subsection{%s}" . "\\subsection*{%s}")
> ("\\subsubsection{%s}" . "\
> \subsubsection*{%s}"))
> ("ErrorSample"
> "\\documentclass[letter,twoside,openright]{memoir}\n\
> \usepackage{varioref}\n\\usepackage{shorttoc}\n\\usepackage{color}\n\
> \usepackage{graphicx}\n\\usepackage{bbding}\n\n\\setlength{\
> \parindent}{0pt}\n\\setlength{\\parskip}{1ex}"
> ("\\chapter{%s}" . "\\chapter*{%s}")
> ("\\section{%s}" . "\\section*{%s}")
> ("\\subsection{%s}" . "\\subsection*{%s}")
> ("\\subsubsection{%s}" . "\
> \subsubsection*{%s}"))
> )
> org-use-speed-commands t
> org-mode-hook '((lambda nil
> (setq org-mouse-context-menu-function (quote org-
> mouse-context-menu))
> (when (memq (quote context-menu) org-mouse-features)
> (define-key org-mouse-map
> (if (featurep (quote xemacs)) [button3]
> [mouse-3]) nil)
> (define-key org-mode-map [mouse-3]
> (quote org-mouse-show-context-menu))
> )
> (define-key org-mode-map [down-mouse-1] (quote org-
> mouse-down-mouse))
> (when (memq (quote context-menu) org-mouse-features)
> (define-key org-mouse-map [C-drag-mouse-1]
> (quote org-mouse-move-tree))
> (define-key org-mouse-map [C-down-mouse-1]
> (quote org-mouse-move-tree-start))
> )
> (when (memq (quote yank-link) org-mouse-features)
> (define-key org-mode-map [S-mouse-2] (quote org-
> mouse-yank-link))
> (define-key org-mode-map [drag-mouse-3] (quote org-
> mouse-yank-link)))
> (when (memq (quote move-tree) org-mouse-features)
> (define-key org-mouse-map [drag-mouse-3] (quote
> org-mouse-move-tree))
> (define-key org-mouse-map [down-mouse-3]
> (quote org-mouse-move-tree-start))
> )
> (when (memq (quote activate-stars) org-mouse-
> features)
> (font-lock-add-keywords nil
> (\`
> (((\, outline-regexp) 0
> (\`
> (face org-link mouse-face highlight keymap
> (\, org-mouse-map)))
> (quote prepend))
> )
> )
> t)
> )
> (when (memq (quote activate-bullets) org-mouse-
> features)
> (font-lock-add-keywords nil
> (\`
> (("^[ ]*\\([-+*]\\|[0-9]+[.)]\\) +"
> (1
> (\`
> (face org-link keymap (\, org-mouse-map)
> mouse-face highlight))
> (quote prepend))
> )
> )
> )
> t)
> )
> (when (memq (quote activate-checkboxes) org-mouse-
> features)
> (font-lock-add-keywords nil
> (\`
> (("^[ ]*\\([-+*]\\|[0-9]+[.)]\\) +\\(\\[[ X]\\]\
> \)"
> (2
> (\` (face bold keymap (\, org-mouse-map)
> mouse-face highlight))
> t)
> )
> )
> )
> t)
> )
> (defadvice org-open-at-point (around org-mouse-open-
> at-point activate)
> (let ((context (org-context)))
> (cond ((assq :headline-stars context) (org-cycle))
> ((assq :checkbox context) (org-toggle-checkbox))
> ((assq :item-bullet context)
> (let ((org-cycle-include-plain-lists t)) (org-
> cycle)))
> (t ad-do-it))
> )
> )
> )
> #[nil "\302\300!\210\303\x10\304\305\306\"\210\307
> \310\311#\207"
> [yas/trigger-key yas/keymap make-variable-buffer-
> local [tab]
> add-to-list org-tab-first-hook yas/org-very-safe-
> expand define-key
> [tab] yas/next-field]
> 4]
> (lambda nil
> (org-add-hook (quote change-major-mode-hook)
> (quote org-babel-show-result-all) (quote append)
> (quote local))
> )
> org-babel-result-hide-spec org-babel-hide-all-hashes
> (lambda nil
> (add-hook (quote after-save-hook) (quote org-
> fireforg-registry-update)
> t t)
> )
> #[nil "\300\301\302\303\304$\207"
> [org-add-hook change-major-mode-hook org-show-
> block-all append local]
> 5]
> )
> org-ctrl-c-ctrl-c-hook '(org-babel-lob-execute-maybe org-babel-hash-
> at-point
> org-babel-execute-src-block-maybe)
> org-confirm-elisp-link-function 'yes-or-no-p
> org-agenda-mode-hook '((lambda nil
> (setq org-mouse-context-menu-function
> (quote org-mouse-agenda-context-menu))
> (define-key org-agenda-mode-map
> (if (featurep (quote xemacs)) [button3]
> [mouse-3])
> (quote org-mouse-show-context-menu))
> (define-key org-agenda-mode-map [down-mouse-3]
> (quote org-mouse-move-tree-start))
> (define-key org-agenda-mode-map
> (if (featurep (quote xemacs)) [(control
> mouse-4)] [C-mouse-4])
> (quote org-agenda-earlier))
> (define-key org-agenda-mode-map
> (if (featurep (quote xemacs)) [(control
> mouse-5)] [C-mouse-5])
> (quote org-agenda-later))
> (define-key org-agenda-mode-map [drag-mouse-3]
> (quote
> (lambda (event) (interactive "e")
> (case (org-mouse-get-gesture event)
> (:left (org-agenda-earlier 1))
> (:right (org-agenda-later 1)))
> )
> )
> )
> )
> )
> org-agenda-start-on-weekday nil
> org-export-interblocks '((lob org-babel-exp-lob-one-liners)
> (src org-babel-exp-inline-src-blocks))
> org-agenda-skip-deadline-if-done t
> org-enforce-todo-dependencies t
> org-occur-hook '(org-first-headline-recenter)
> org-from-is-user-regexp nil
> org-export-preprocess-before-selecting-backend-code-hook '(org-
> beamer-select-beamer-code)
> org-remember-templates '(("Todo" 116 "* TODO %?\n %i\n %a\n" "~/
> org/TODO.org" "Tasks")
> ("Journal" 106 "* %U %?\n\n %i\n %a\n" "~/
> org/JOURNAL.org")
> ("Idea" 105 "* %^{Title}\n %i\n %a\n" "~/
> org/JOURNAL.org"
> "New Ideas")
> ("Project" 112 "* %^{Title}\n %i\n %a\n"
> "~/org/ProjectNotes.org" "Project Notes")
> ("Browser" 119 "* %^{Title}\n %u\n\n
> Source: %c\n\n %i"
> "~/org/Notes.org" "Notes")
> )
> org-export-latex-final-hook '(org-beamer-amend-header org-beamer-fix-
> toc
> org-beamer-auto-fragile-frames
> org-beamer-place-default-actions-for-
> lists)
> org-enforce-todo-checkbox-dependencies t
> org-metadown-hook '(org-babel-pop-to-session-maybe)
> org-export-blocks '((src org-babel-exp-src-blocks nil)
> (comment org-export-blocks-format-comment t)
> (ditaa org-export-blocks-format-ditaa nil)
> (dot org-export-blocks-format-dot nil))
> )
>
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
- Carsten
next prev parent reply other threads:[~2009-12-17 23:06 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-17 0:05 Bug: Incorrect escaping of braces on LaTeX export [6.33trans (release_6.33f.122.g7062a.dirty)] Mark Elston
2009-12-17 19:27 ` Carsten Dominik [this message]
2009-12-17 23:16 ` Mark Elston
2009-12-18 8:08 ` Carsten Dominik
2009-12-18 18:13 ` Mark Elston
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2B4C5268-9A5D-453F-9B0A-3FD3D6B703CC@gmail.com \
--to=carsten.dominik@gmail.com \
--cc=emacs-orgmode@gnu.org \
--cc=m_elston@comcast.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.