emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: "Fraga, Eric" <e.fraga@ucl.ac.uk>
To: "Alain.Cochard@unistra.fr" <Alain.Cochard@unistra.fr>
Cc: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: How to change the width of a latex exported inlinetask?
Date: Wed, 30 Oct 2019 14:55:23 +0000	[thread overview]
Message-ID: <87ftjagu5i.fsf@ucl.ac.uk> (raw)
In-Reply-To: 23993.40052.641597.871776@frac.u-strasbg.fr

On Wednesday, 30 Oct 2019 at 15:21, Alain.Cochard@unistra.fr wrote:
> Hello.
>
> By default, the width of LaTeX exported inlinetasks is less than that
> of regular text.
>
> I would like to be able to change this default, ideally both on a
> per-file basis and a per-inlinetask basis (but either way would
> already very good!).
>
> Despite some Internet searching, I could not find a way. I am aware of
> org-latex-format-inlinetask-function, but I don't know how to use
> it...

I have the following which, although it does not do what you want, it
may give you some pointers:

#+begin_src emacs-lisp
  (defun org-latex-format-inlinetask (todo type priority name tags contents info)
    "Format an inline task element for LaTeX export."
    (let ((theinlinetask (concat todo " " name "\n\n\\noindent " contents)))
      (if (and todo (not (equal todo "NOTE")))
          (format "\\footnote{%s}\\marginpar{\\fbox{\\tiny\\thefootnote. %s}}" theinlinetask todo)
        (format "\\hl{%s}" contents))))
  (setq org-latex-format-inlinetask-function 'org-latex-format-inlinetask)
#+end_src

You can trim this down and replace the \\hl{%s} with, for instance, an
mdframed environment which allows you to control the width easily.

I will add that, for a number of reasons including advice from this
list, I have moved away from inline tasks almost completely and now use
drawers instead.

-- 
Eric S Fraga via Emacs 27.0.50, Org release_9.2.6-552-g8c5a78

  reply	other threads:[~2019-10-30 14:55 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-30 14:21 How to change the width of a latex exported inlinetask? Alain.Cochard
2019-10-30 14:55 ` Fraga, Eric [this message]
2019-11-01 22:48   ` Alain.Cochard
2019-11-02 10:34     ` Fraga, Eric

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

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ftjagu5i.fsf@ucl.ac.uk \
    --to=e.fraga@ucl.ac.uk \
    --cc=Alain.Cochard@unistra.fr \
    --cc=emacs-orgmode@gnu.org \
    /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 public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).