* Strange thing on emacs master exporting to LaTeX
@ 2023-01-06 12:10 Pedro Andres Aranda Gutierrez
2023-01-06 12:43 ` Alain.Cochard
0 siblings, 1 reply; 3+ messages in thread
From: Pedro Andres Aranda Gutierrez @ 2023-01-06 12:10 UTC (permalink / raw)
To: Org Mode List
[-- Attachment #1: Type: text/plain, Size: 1657 bytes --]
Calling with `emacs -Q` on the following MWE:
```
#+TITLE: Test
#+SUBTITLE: MWE for section* bug
#+LATEX_CLASS: article
# +LATEX_CLASS: scrreprt
#+LATEX_CLASS_OPTIONS: [english,a4paper,fontsize=11pt,oneside,headinclude]
# +OPTIONS: toc:nil H:4
# +LATEX_HEADER: \input{scrbook-extras}
* Introduction
:PROPERTIES:
:UNNMBERED: t
:END:
A stupid introduction
** Prerequisites
```
Results in
```
% Created 2023-01-06 vie 12:41
% Intended LaTeX compiler: pdflatex
\documentclass[english,a4paper,fontsize=11pt,oneside,headinclude]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{wrapfig}
\usepackage{rotating}
\usepackage[normalem]{ulem}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{capt-of}
\usepackage{hyperref}
\author{Pedro Andrés Aranda Gutiérrez}
\date{\today}
\title{Test\\\medskip
\large MWE for section* bug}
\hypersetup{
pdfauthor={Pedro Andrés Aranda Gutiérrez},
pdftitle={Test},
pdfkeywords={},
pdfsubject={},
pdfcreator={Emacs 30.0.50 (Org mode 9.6)},
pdflang={English}}
\begin{document}
\maketitle
\tableofcontents
\section{Introduction}
\label{sec:org3c8c3ba}
A stupid introduction
\subsection{Prerequisites}
\label{sec:org0ecaa5c}
\end{document}
```
I was expecting `\section*{Introduction}` or am I wrong?
Thanks, /PA
--
Fragen sind nicht da um beantwortet zu werden,
Fragen sind da um gestellt zu werden
Georg Kreisler
Headaches with a Juju log:
unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should run
a leader-deposed hook here, but we can't yet
[-- Attachment #2: Type: text/html, Size: 2135 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Strange thing on emacs master exporting to LaTeX
2023-01-06 12:10 Strange thing on emacs master exporting to LaTeX Pedro Andres Aranda Gutierrez
@ 2023-01-06 12:43 ` Alain.Cochard
2023-01-06 12:46 ` Pedro Andres Aranda Gutierrez
0 siblings, 1 reply; 3+ messages in thread
From: Alain.Cochard @ 2023-01-06 12:43 UTC (permalink / raw)
To: Pedro Andres Aranda Gutierrez; +Cc: Org Mode List
Pedro Andres Aranda Gutierrez writes on Fri 6 Jan 2023 13:10:
> Calling with `emacs -Q` on the following MWE:
>
> ```
> #+TITLE: Test
> #+SUBTITLE: MWE for section* bug
> #+LATEX_CLASS: article
> # +LATEX_CLASS: scrreprt
> #+LATEX_CLASS_OPTIONS: [english,a4paper,fontsize=11pt,oneside,headinclude]
> # +OPTIONS: toc:nil H:4
> # +LATEX_HEADER: \input{scrbook-extras}
>
> * Introduction
> :PROPERTIES:
> :UNNMBERED: t
Didn't you forget the U in UNNUMBERED?
--
EOST (École et Observatoire des Sciences de la Terre)
ITE (Institut Terre & Environnement) | alain.cochard@unistra.fr
5 rue René Descartes [bureau 110] | Phone: +33 (0)3 68 85 50 44
F-67084 Strasbourg Cedex, France | [ slot available for rent ]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Strange thing on emacs master exporting to LaTeX
2023-01-06 12:43 ` Alain.Cochard
@ 2023-01-06 12:46 ` Pedro Andres Aranda Gutierrez
0 siblings, 0 replies; 3+ messages in thread
From: Pedro Andres Aranda Gutierrez @ 2023-01-06 12:46 UTC (permalink / raw)
To: alain.cochard; +Cc: Org Mode List
[-- Attachment #1: Type: text/plain, Size: 1205 bytes --]
Yep, one isn't getting younger ;-)
Sorry for the noise...
/PA
On Fri, 6 Jan 2023 at 13:43, <Alain.Cochard@unistra.fr> wrote:
> Pedro Andres Aranda Gutierrez writes on Fri 6 Jan 2023 13:10:
> > Calling with `emacs -Q` on the following MWE:
> >
> > ```
> > #+TITLE: Test
> > #+SUBTITLE: MWE for section* bug
> > #+LATEX_CLASS: article
> > # +LATEX_CLASS: scrreprt
> > #+LATEX_CLASS_OPTIONS:
> [english,a4paper,fontsize=11pt,oneside,headinclude]
> > # +OPTIONS: toc:nil H:4
> > # +LATEX_HEADER: \input{scrbook-extras}
> >
> > * Introduction
> > :PROPERTIES:
> > :UNNMBERED: t
>
> Didn't you forget the U in UNNUMBERED?
>
> --
> EOST (École et Observatoire des Sciences de la Terre)
> ITE (Institut Terre & Environnement) | alain.cochard@unistra.fr
> 5 rue René Descartes [bureau 110] | Phone: +33 (0)3 68 85 50 44
> F-67084 Strasbourg Cedex, France | [ slot available for rent ]
>
>
--
Fragen sind nicht da um beantwortet zu werden,
Fragen sind da um gestellt zu werden
Georg Kreisler
Headaches with a Juju log:
unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should run
a leader-deposed hook here, but we can't yet
[-- Attachment #2: Type: text/html, Size: 1946 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-01-06 12:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-06 12:10 Strange thing on emacs master exporting to LaTeX Pedro Andres Aranda Gutierrez
2023-01-06 12:43 ` Alain.Cochard
2023-01-06 12:46 ` Pedro Andres Aranda Gutierrez
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).