From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Latex strikethrough or cancel? Date: Sat, 10 Oct 2015 20:49:12 -0400 Message-ID: <87zizqi60n.fsf@pierrot.dokosmarshall.org> References: <87r3l5kdfx.fsf@ucl.ac.uk> <87egh5xnyy.fsf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48717) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zl4pL-0003UJ-Vx for emacs-orgmode@gnu.org; Sat, 10 Oct 2015 20:49:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zl4pI-0000Fv-PW for emacs-orgmode@gnu.org; Sat, 10 Oct 2015 20:49:27 -0400 Received: from plane.gmane.org ([80.91.229.3]:56097) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zl4pI-0000Fr-IV for emacs-orgmode@gnu.org; Sat, 10 Oct 2015 20:49:24 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Zl4pE-0007YS-OD for emacs-orgmode@gnu.org; Sun, 11 Oct 2015 02:49:20 +0200 Received: from pool-108-20-41-232.bstnma.fios.verizon.net ([108.20.41.232]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 11 Oct 2015 02:49:20 +0200 Received: from ndokos by pool-108-20-41-232.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 11 Oct 2015 02:49:20 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Lawrence Bottorff writes: > Actually I spoke too soon. Putting > > (setq org-html-mathjax-template (concat org-html-mathjax-template " > > ")) > ​ > in my init didn't fly when I rebooted, although it seemed to work > before when I stuck it in my init and did eval-buffer. > ... > Would appreciate any advice on how to incorporate the \cancel code > into org-html-mathjax-template. > The code assumes that org-html-mathjax-template has been initialized already, so either (require 'ox-html) beforehand or use eval-after-load: (eval-after-load "ox-html" (setq org-html-mathjax-template ....)) -- Nick