Questions tagged [latex-header]
12 questions
2
votes
1 answer
How can I configure `#+AUTHOR:` for LaTeX in `org-mode`?
I'm using the IEEEtran document class for LaTex in org-mode, and to define authors I need to use some IEEEtran-specific commands. My \author command should look something like this in the .tex file:
\author{
\IEEEauthorblockN{A. Subject}
…

riedaug
- 23
- 2
1
vote
1 answer
How to use an org mode document's title in the LaTeX export headers?
I'm using org mode to write letters using a custom LaTeX class provided by my employer. With this class I have to define the title of the document in the LaTeX header like this:
\def\subject{This is the title of the document}
In org mode the title…

tmalsburg
- 2,540
- 1
- 14
- 29
1
vote
1 answer
Define setupfile in emacs init for org file
I use setupfile to export org file to pdf. It basically define latex header and footer (my letterhead template). I include it in every org document like this
#+SETUPFILE: c:/SETUPFILE
Though there is not much issue with this practice, but is it…

Vaibhav
- 573
- 3
- 15
1
vote
1 answer
\subsubsubsection instead of \paragraph in LaTeX export with header levels and section numbering > 3
How should I get a proper numbered header \subsubsubsection{The Header} instead of a numbered paragraph \paragraph{The Header} when exporting to LaTeX with header levels of more than 3?
Having this in my preamble:
% Set default Counter Depth…

Sati
- 775
- 6
- 21
0
votes
1 answer
How do I interpolate elisp variables in org-mode option headers?
I want to achieve something like this:
#+latex_header: \input{${PUT_SOME_ELISP_VALUE_HERE}night_beamer_common1.tex}

HappyFace
- 751
- 4
- 16
0
votes
1 answer
How to hide the "Contents" header in the pdf output
Every time I would export the org doc as a PDF I would get this random "Contents" tag before the table and I am not sure how to remove it.
I attached below an image of what I mean
There's probably a header for it but I am not aware of it
#+title:…

Taken
- 1
- 1
0
votes
1 answer
How to increase font size of equation from a Latex export block?
I have the following org document:
#+LATEX_HEADER: \usepackage[scaled=1.5]{helvet} \renewcommand\familydefault{\sfdefault}
Testing equation
#+BEGIN_EXPORT latex
\begin{equation*}
1 + 1 = 2
\end{equation*}
#+END_EXPORT
The first line can be used to…

mle0312
- 295
- 1
- 8
0
votes
1 answer
Org-mode: Verse blocks in LaTeX export
in this chapter of org-mode manual, there is a tutorial on how to export a latex file with some features of verse package, such as line-counting and centralization. The example given is a poem by Shakespeare:
#+ATTR_LATEX: :center t :latexcode…

Rhythmical Diphthong
- 11
- 1
0
votes
1 answer
Change font for org LaTeX-preview
I successfully use org LaTeX-preview to have my formulas displayed as images in my org-mode documents. There is one problem I am facing, though: I need the LaTeX math font to be upright instead of slanted. This is easily solved in an ordinary…

Vitus Schäfftlein
- 201
- 1
- 5
0
votes
1 answer
Cannot define custom latex class in org-mode
This is the code I tried:
(after! ox-latex
(add-to-list
'org-latex-classes
'("deeparticle"
(concat
"\\documentclass[11pt]{article}\n"
"\\usepackage{enumitem}\n"
…

Hyperbo Lee
- 1
- 1
0
votes
1 answer
using bibtex in org-mode messes up inlineimages of latex preview?
I had latex preview working with inlineimages as in the following .org file:
#+STARTUP: latexpreview
#+STARTUP: inlineimages
$A \to B$
The latex formula is correctly changed into a png image as follows:
However, once I start to add a bibtex line,…

tinlyx
- 1,276
- 1
- 12
- 27
0
votes
2 answers
latex-export image using fancyhdr
I use following preamble in org file to export my regular documents. I want to add logo to right header, but for some reason, the \includegraphics command is not getting exported.
Here is the code
#+OPTIONS: num:nil; p:t
#+OPTIONS: toc:nil
…

Vaibhav
- 573
- 3
- 15