Re: [PATCH] ox-latex.el: add LaTeX attributes to quote block

2021-05-29 Thread Nicolas Goaziou
Hello, Juan Manuel Macías writes: > I'm sorry, it's my fault. It's already fixed. I think the patch attached > here should apply well... Applied. Thank you. Regards, -- Nicolas Goaziou

Re: [PATCH] ox-latex.el: add LaTeX attributes to quote block

2021-05-26 Thread Juan Manuel Macías
he other hand, the standard LaTeX `quote' environment is already far exceeded by other more powerful options, like the csquotes package. Best regards, Juan Manuel >From c2e39f5f3046d7a8e90878351b35c89656dacdfc Mon Sep 17 00:00:00 2001 From: Juan Manuel Macias Date: Wed, 26 May 2021 23

Re: [PATCH] ox-latex.el: add LaTeX attributes to quote block

2021-05-26 Thread Nicolas Goaziou
Hello, Juan Manuel Macías writes: > Here is the updated patch, with the corresponding additions in the > manual and ORG-NEWS. Thanks. I cannot apply it on top of master however. On what commit did you base it? There are also some nits, but I can fix them when applying your patch. > +#+cindex:

Re: [PATCH] ox-latex.el: add LaTeX attributes to quote block

2021-05-25 Thread Juan Manuel Macías
e: Tue, 25 May 2021 22:18:06 +0200 Subject: [PATCH] ox-latex.el: add LaTeX attributes to quote block * doc/org-manual.org (Quote blocks in LaTeX export): manual updated * etc/ORG-NEWS (Support quote blocks in LaTeX export): news updated * lisp/ox-latex.el (latex): add `org-latex-default-quote-envir

Re: [PATCH] ox-latex.el: add LaTeX attributes to quote block

2021-05-25 Thread Nicolas Goaziou
Juan Manuel Macías writes: > Thank you for your indications. Attached the updated patch. Thanks. I forgot to ask: could you add some documentation about it in the manual, too? > Do you need me to prepare another patch to document the modifications > and add them to org-NEWS? You can do it in

Re: [PATCH] ox-latex.el: add LaTeX attributes to quote block

2021-05-25 Thread Juan Manuel Macías
could be written as > > >(let ((environment > (or (org-export-read-attribute :attr_latex quote-block :environment) > (plist-get info :latex-default-quote-environment))) > (options > (or (org-export-read-attribute :attr_latex quote-block :options) >

Re: [PATCH] ox-latex.el: add LaTeX attributes to quote block

2021-05-25 Thread Nicolas Goaziou
Hello, Juan Manuel Macías writes: > Subject: [PATCH] ox-latex.el: add LaTeX attributes to quote block Thank you. Some comments follow. > +(defcustom org-latex-default-quote-environment "quote" > + "Default environment used to `quote' environment." -->

[PATCH] ox-latex.el: add LaTeX attributes to quote block

2021-05-24 Thread Juan Manuel Macías
). #+end_quote Best regards, Juan Manuel >From 1164c3066f0ea7e639382b01c5da2d7b5b46efb8 Mon Sep 17 00:00:00 2001 From: Juan Manuel Macias Date: Mon, 24 May 2021 13:19:01 +0200 Subject: [PATCH] ox-latex.el: add LaTeX attributes to quote block * lisp/ox-latex.el: add `org-latex-default-quote-envi