public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* latex   to  odt insert linebreak after personnal  command
@ 2017-12-15 13:37 pierrO Lelou
       [not found] ` <c58dc481-48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 9+ messages in thread
From: pierrO Lelou @ 2017-12-15 13:37 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 1447 bytes --]

 Hello
I want to convert a latex file to odt.
My source code contains personnal command to create dialogue
\documentclass[french]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[a4paper]{geometry}
\usepackage{babel}
\usepackage{csquotes}

\newcommand{\femm}{femme 1}
\newcommand{\fem}{%
    \par%
    -- \femm{} : }
\newcommand{\jloo}{Jean Louis} %Directeur
\newcommand{\jlo}{%
    \par%
    -- \jloo{} : }


    \begin{document}
    \jlo{} Hello.
    \fem{} Goodbye
    \end{document}

After pdflatex compilation I obtain :
Jean Louis : Hello.
femme 1 : Goodbye

But 
$ pandoc -f latex -t odt -o ecm-00.odt  ecm-00.tex
produce :
Jean Louis : 
Hello.
femme 1 : 
Goodbye



I tried to use different options (--wrap=[auto|none|preserve]) (-S) without 
success. Is it due to default odt template ?
Shall someone help me.
Thank you

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3-bab5-d28428a7c2ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #1.2: Type: text/html, Size: 2014 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: latex   to  odt insert linebreak after personnal  command
       [not found] ` <c58dc481-48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2017-12-15 17:16   ` John MACFARLANE
  2017-12-16  9:59     ` pierrO Lelou
  0 siblings, 1 reply; 9+ messages in thread
From: John MACFARLANE @ 2017-12-15 17:16 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

Are you using an older version of pandoc?
With pandoc 2.0.5 it worked fine for me.

+++ pierrO Lelou [Dec 15 17 05:37 ]:
>    Hello
>   I want to convert a latex file to odt.
>   My source code contains personnal command to create dialogue
>   \documentclass[french]{article}
>   \usepackage[utf8]{inputenc}
>   \usepackage[T1]{fontenc}
>   \usepackage{lmodern}
>   \usepackage[a4paper]{geometry}
>   \usepackage{babel}
>   \usepackage{csquotes}
>   \newcommand{\femm}{femme 1}
>   \newcommand{\fem}{%
>       \par%
>       -- \femm{} : }
>   \newcommand{\jloo}{Jean Louis} %Directeur
>   \newcommand{\jlo}{%
>       \par%
>       -- \jloo{} : }
>       \begin{document}
>       \jlo{} Hello.
>       \fem{} Goodbye
>       \end{document}
>   After pdflatex compilation I obtain :
>   Jean Louis : Hello.
>   femme 1 : Goodbye
>   But
>   $ pandoc -f latex -t odt -o ecm-00.odt  ecm-00.tex
>   produce :
>   Jean Louis :
>   Hello.
>   femme 1 :
>   Goodbye
>   I tried to use different options (--wrap=[auto|none|preserve]) (-S)
>   without success. Is it due to default odt template ?
>   Shall someone help me.
>   Thank you
>
>   --
>   You received this message because you are subscribed to the Google
>   Groups "pandoc-discuss" group.
>   To unsubscribe from this group and stop receiving emails from it, send
>   an email to [1]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>   To post to this group, send email to
>   [2]pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>   To view this discussion on the web visit
>   [3]https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3-
>   bab5-d28428a7c2ba%40googlegroups.com.
>   For more options, visit [4]https://groups.google.com/d/optout.
>
>References
>
>   1. mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>   2. mailto:pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>   3. https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer
>   4. https://groups.google.com/d/optout


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: latex   to  odt insert linebreak after personnal  command
  2017-12-15 17:16   ` John MACFARLANE
@ 2017-12-16  9:59     ` pierrO Lelou
       [not found]       ` <e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 9+ messages in thread
From: pierrO Lelou @ 2017-12-16  9:59 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 3356 bytes --]

No I am using the 1.16.0.2. and this is the version on Kubuntu 16.04
I tried to install *pandoc-2.0.5-linux.tar.gz* 
<https://github.com/jgm/pandoc/releases/download/2.0.5/pandoc-2.0.5-linux.tar.gz> 
but I obtained :
impossible d’exécuter le fichier binaire : Erreur de format pour exec()

Le vendredi 15 décembre 2017 18:17:07 UTC+1, John MacFarlane a écrit :
>
> Are you using an older version of pandoc? 
> With pandoc 2.0.5 it worked fine for me. 
>
> +++ pierrO Lelou [Dec 15 17 05:37 ]: 
> >    Hello 
> >   I want to convert a latex file to odt. 
> >   My source code contains personnal command to create dialogue 
> >   \documentclass[french]{article} 
> >   \usepackage[utf8]{inputenc} 
> >   \usepackage[T1]{fontenc} 
> >   \usepackage{lmodern} 
> >   \usepackage[a4paper]{geometry} 
> >   \usepackage{babel} 
> >   \usepackage{csquotes} 
> >   \newcommand{\femm}{femme 1} 
> >   \newcommand{\fem}{% 
> >       \par% 
> >       -- \femm{} : } 
> >   \newcommand{\jloo}{Jean Louis} %Directeur 
> >   \newcommand{\jlo}{% 
> >       \par% 
> >       -- \jloo{} : } 
> >       \begin{document} 
> >       \jlo{} Hello. 
> >       \fem{} Goodbye 
> >       \end{document} 
> >   After pdflatex compilation I obtain : 
> >   Jean Louis : Hello. 
> >   femme 1 : Goodbye 
> >   But 
> >   $ pandoc -f latex -t odt -o ecm-00.odt  ecm-00.tex 
> >   produce : 
> >   Jean Louis : 
> >   Hello. 
> >   femme 1 : 
> >   Goodbye 
> >   I tried to use different options (--wrap=[auto|none|preserve]) (-S) 
> >   without success. Is it due to default odt template ? 
> >   Shall someone help me. 
> >   Thank you 
> > 
> >   -- 
> >   You received this message because you are subscribed to the Google 
> >   Groups "pandoc-discuss" group. 
> >   To unsubscribe from this group and stop receiving emails from it, send 
> >   an email to [1]pandoc-discus...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. 
> >   To post to this group, send email to 
> >   [2]pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. 
> >   To view this discussion on the web visit 
> >   [3]
> https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3- 
> >   bab5-d28428a7c2ba%40googlegroups.com. 
> >   For more options, visit [4]https://groups.google.com/d/optout. 
> > 
> >References 
> > 
> >   1. mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:> 
> >   2. mailto:pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:> 
> >   3. 
> https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer 
> >   4. https://groups.google.com/d/optout 
>
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #1.2: Type: text/html, Size: 6866 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: latex to odt insert linebreak after personnal command
       [not found]       ` <e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2017-12-16 15:31         ` lukshuntim-Re5JQEeQqe8AvxtiuMwx3w
  2017-12-17  7:21         ` John MacFarlane
  2017-12-17  7:23         ` John MacFarlane
  2 siblings, 0 replies; 9+ messages in thread
From: lukshuntim-Re5JQEeQqe8AvxtiuMwx3w @ 2017-12-16 15:31 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

On Saturday, December 16, 2017 05:59 PM, pierrO Lelou wrote:
> No I am using the 1.16.0.2. and this is the version on Kubuntu 16.04
> I tried to install *pandoc-2.0.5-linux.tar.gz* 
> <https://github.com/jgm/pandoc/releases/download/2.0.5/pandoc-2.0.5-linux.tar.gz> 
> but I obtained :
> impossible d’exécuter le fichier binaire : Erreur de format pour exec()

Please download the binary deb file and install it instead. I can only 
guess what the French meant, though.

-- st

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/1f28446a-828f-57bd-c971-d54c022cf43a%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: latex   to  odt insert linebreak after personnal  command
       [not found]       ` <e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  2017-12-16 15:31         ` lukshuntim-Re5JQEeQqe8AvxtiuMwx3w
@ 2017-12-17  7:21         ` John MacFarlane
  2017-12-17  7:23         ` John MacFarlane
  2 siblings, 0 replies; 9+ messages in thread
From: John MacFarlane @ 2017-12-17  7:21 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

Yes, that's an older version.  Latest is 2.0.5.
You can use the linux binary we provide, since your package
manager is not up to date.

+++ pierrO Lelou [Dec 16 17 01:59 ]:
>   No I am using the 1.16.0.2. and this is the version on Kubuntu 16.04
>   I tried to install [1]pandoc-2.0.5-linux.tar.gz but I obtained :
>   impossible d’exécuter le fichier binaire : Erreur de format pour exec()
>   Le vendredi 15 décembre 2017 18:17:07 UTC+1, John MacFarlane a écrit :
>
>     Are you using an older version of pandoc?
>     With pandoc 2.0.5 it worked fine for me.
>     +++ pierrO Lelou [Dec 15 17 05:37 ]:
>     >    Hello
>     >   I want to convert a latex file to odt.
>     >   My source code contains personnal command to create dialogue
>     >   \documentclass[french]{article}
>     >   \usepackage[utf8]{inputenc}
>     >   \usepackage[T1]{fontenc}
>     >   \usepackage{lmodern}
>     >   \usepackage[a4paper]{geometry}
>     >   \usepackage{babel}
>     >   \usepackage{csquotes}
>     >   \newcommand{\femm}{femme 1}
>     >   \newcommand{\fem}{%
>     >       \par%
>     >       -- \femm{} : }
>     >   \newcommand{\jloo}{Jean Louis} %Directeur
>     >   \newcommand{\jlo}{%
>     >       \par%
>     >       -- \jloo{} : }
>     >       \begin{document}
>     >       \jlo{} Hello.
>     >       \fem{} Goodbye
>     >       \end{document}
>     >   After pdflatex compilation I obtain :
>     >   Jean Louis : Hello.
>     >   femme 1 : Goodbye
>     >   But
>     >   $ pandoc -f latex -t odt -o ecm-00.odt  ecm-00.tex
>     >   produce :
>     >   Jean Louis :
>     >   Hello.
>     >   femme 1 :
>     >   Goodbye
>     >   I tried to use different options (--wrap=[auto|none|preserve])
>     (-S)
>     >   without success. Is it due to default odt template ?
>     >   Shall someone help me.
>     >   Thank you
>     >
>     >   --
>     >   You received this message because you are subscribed to the
>     Google
>     >   Groups "pandoc-discuss" group.
>     >   To unsubscribe from this group and stop receiving emails from
>     it, send
>     >   an email to [1][2]pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     >   To post to this group, send email to
>     >   [2][3]pandoc-...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     >   To view this discussion on the web visit
>     >   [3][4]https://groups.google.com/d/msgid/pandoc-discuss/
>     c58dc481-48f6-45c3-
>     >   bab5-d28428a7c2ba%[5]40googlegroups.com.
>     >   For more options, visit [4][6]https://groups.google.com/
>     d/optout.
>     >
>     >References
>     >
>     >   1. mailto:[7]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >   2. mailto:[8]pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >   3. [9]https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-
>     48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=
>     email&utm_source=footer
>     >   4. [10]https://groups.google.com/d/optout
>
>   --
>   You received this message because you are subscribed to the Google
>   Groups "pandoc-discuss" group.
>   To unsubscribe from this group and stop receiving emails from it, send
>   an email to [11]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>   To post to this group, send email to
>   [12]pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>   To view this discussion on the web visit
>   [13]https://groups.google.com/d/msgid/pandoc-discuss/e447ebc5-c453-47ef
>   -a61e-fbe3b8e0ab1b%40googlegroups.com.
>   For more options, visit [14]https://groups.google.com/d/optout.
>
>References
>
>   1. https://github.com/jgm/pandoc/releases/download/2.0.5/pandoc-2.0.5-linux.tar.gz
>   2. javascript:/
>   3. javascript:/
>   4. https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3-
>   5. http://40googlegroups.com/
>   6. https://groups.google.com/d/optout
>   7. javascript:/
>   8. javascript:/
>   9. https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer
>  10. https://groups.google.com/d/optout
>  11. mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>  12. mailto:pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>  13. https://groups.google.com/d/msgid/pandoc-discuss/e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer
>  14. https://groups.google.com/d/optout

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/20171217072148.GB19715%40Johns-MacBook-Pro.local.
For more options, visit https://groups.google.com/d/optout.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: latex   to  odt insert linebreak after personnal  command
       [not found]       ` <e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  2017-12-16 15:31         ` lukshuntim-Re5JQEeQqe8AvxtiuMwx3w
  2017-12-17  7:21         ` John MacFarlane
@ 2017-12-17  7:23         ` John MacFarlane
       [not found]           ` <20171217072341.GC19715-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
  2 siblings, 1 reply; 9+ messages in thread
From: John MacFarlane @ 2017-12-17  7:23 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

Sorry, I didn't notice that you'd already tried to install
the linux binary.  Not sure why it didn't work.
You unpacked the tarball, right?

tar xvzf pandoc-2.0.5-linux.tar.gz

then you should find the binary in pandoc-2.0.5/

+++ pierrO Lelou [Dec 16 17 01:59 ]:
>   No I am using the 1.16.0.2. and this is the version on Kubuntu 16.04
>   I tried to install [1]pandoc-2.0.5-linux.tar.gz but I obtained :
>   impossible d’exécuter le fichier binaire : Erreur de format pour exec()
>   Le vendredi 15 décembre 2017 18:17:07 UTC+1, John MacFarlane a écrit :
>
>     Are you using an older version of pandoc?
>     With pandoc 2.0.5 it worked fine for me.
>     +++ pierrO Lelou [Dec 15 17 05:37 ]:
>     >    Hello
>     >   I want to convert a latex file to odt.
>     >   My source code contains personnal command to create dialogue
>     >   \documentclass[french]{article}
>     >   \usepackage[utf8]{inputenc}
>     >   \usepackage[T1]{fontenc}
>     >   \usepackage{lmodern}
>     >   \usepackage[a4paper]{geometry}
>     >   \usepackage{babel}
>     >   \usepackage{csquotes}
>     >   \newcommand{\femm}{femme 1}
>     >   \newcommand{\fem}{%
>     >       \par%
>     >       -- \femm{} : }
>     >   \newcommand{\jloo}{Jean Louis} %Directeur
>     >   \newcommand{\jlo}{%
>     >       \par%
>     >       -- \jloo{} : }
>     >       \begin{document}
>     >       \jlo{} Hello.
>     >       \fem{} Goodbye
>     >       \end{document}
>     >   After pdflatex compilation I obtain :
>     >   Jean Louis : Hello.
>     >   femme 1 : Goodbye
>     >   But
>     >   $ pandoc -f latex -t odt -o ecm-00.odt  ecm-00.tex
>     >   produce :
>     >   Jean Louis :
>     >   Hello.
>     >   femme 1 :
>     >   Goodbye
>     >   I tried to use different options (--wrap=[auto|none|preserve])
>     (-S)
>     >   without success. Is it due to default odt template ?
>     >   Shall someone help me.
>     >   Thank you
>     >
>     >   --
>     >   You received this message because you are subscribed to the
>     Google
>     >   Groups "pandoc-discuss" group.
>     >   To unsubscribe from this group and stop receiving emails from
>     it, send
>     >   an email to [1][2]pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     >   To post to this group, send email to
>     >   [2][3]pandoc-...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     >   To view this discussion on the web visit
>     >   [3][4]https://groups.google.com/d/msgid/pandoc-discuss/
>     c58dc481-48f6-45c3-
>     >   bab5-d28428a7c2ba%[5]40googlegroups.com.
>     >   For more options, visit [4][6]https://groups.google.com/
>     d/optout.
>     >
>     >References
>     >
>     >   1. mailto:[7]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >   2. mailto:[8]pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >   3. [9]https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-
>     48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=
>     email&utm_source=footer
>     >   4. [10]https://groups.google.com/d/optout
>
>   --
>   You received this message because you are subscribed to the Google
>   Groups "pandoc-discuss" group.
>   To unsubscribe from this group and stop receiving emails from it, send
>   an email to [11]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>   To post to this group, send email to
>   [12]pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>   To view this discussion on the web visit
>   [13]https://groups.google.com/d/msgid/pandoc-discuss/e447ebc5-c453-47ef
>   -a61e-fbe3b8e0ab1b%40googlegroups.com.
>   For more options, visit [14]https://groups.google.com/d/optout.
>
>References
>
>   1. https://github.com/jgm/pandoc/releases/download/2.0.5/pandoc-2.0.5-linux.tar.gz
>   2. javascript:/
>   3. javascript:/
>   4. https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3-
>   5. http://40googlegroups.com/
>   6. https://groups.google.com/d/optout
>   7. javascript:/
>   8. javascript:/
>   9. https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer
>  10. https://groups.google.com/d/optout
>  11. mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>  12. mailto:pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>  13. https://groups.google.com/d/msgid/pandoc-discuss/e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer
>  14. https://groups.google.com/d/optout

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/20171217072341.GC19715%40Johns-MacBook-Pro.local.
For more options, visit https://groups.google.com/d/optout.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: latex   to  odt insert linebreak after personnal  command
       [not found]           ` <20171217072341.GC19715-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
@ 2017-12-17 17:04             ` pierrO Lelou
       [not found]               ` <4121b746-4ae1-407f-9a5e-8714cc163145-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 9+ messages in thread
From: pierrO Lelou @ 2017-12-17 17:04 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 6309 bytes --]

Things seem more complicated. My processor is 64 bits, but the Kubuntu 
16-04 installed indicates 32-bits OS.
Thus dpkg -i pandoc-2.0.5-1-amd64.deb, give (in french so it is my 
translate) :
The package architecture (amd 64) doesn't match the system one's (i386). 
... Error

Le dimanche 17 décembre 2017 08:23:57 UTC+1, John MacFarlane a écrit :
>
> Sorry, I didn't notice that you'd already tried to install 
> the linux binary.  Not sure why it didn't work. 
> You unpacked the tarball, right? 
>
No problem detected 

>
> tar xvzf pandoc-2.0.5-linux.tar.gz 
>
> then you should find the binary in pandoc-2.0.5/ 
>
That is OK but when I launch ./pandoc it caused errors
impossible d’exécuter le fichier binaire : Erreur de format pour exec() 
binary file can not be executed : format error for (exec)

>
> +++ pierrO Lelou [Dec 16 17 01:59 ]: 
> >   No I am using the 1.16.0.2. and this is the version on Kubuntu 16.04 
> >   I tried to install [1]pandoc-2.0.5-linux.tar.gz but I obtained : 
> >   impossible d’exécuter le fichier binaire : Erreur de format pour 
> exec() 
> >   Le vendredi 15 décembre 2017 18:17:07 UTC+1, John MacFarlane a écrit : 
> > 
> >     Are you using an older version of pandoc? 
> >     With pandoc 2.0.5 it worked fine for me. 
> >     +++ pierrO Lelou [Dec 15 17 05:37 ]: 
> >     >    Hello 
> >     >   I want to convert a latex file to odt. 
> >     >   My source code contains personnal command to create dialogue 
> >     >   \documentclass[french]{article} 
> >     >   \usepackage[utf8]{inputenc} 
> >     >   \usepackage[T1]{fontenc} 
> >     >   \usepackage{lmodern} 
> >     >   \usepackage[a4paper]{geometry} 
> >     >   \usepackage{babel} 
> >     >   \usepackage{csquotes} 
> >     >   \newcommand{\femm}{femme 1} 
> >     >   \newcommand{\fem}{% 
> >     >       \par% 
> >     >       -- \femm{} : } 
> >     >   \newcommand{\jloo}{Jean Louis} %Directeur 
> >     >   \newcommand{\jlo}{% 
> >     >       \par% 
> >     >       -- \jloo{} : } 
> >     >       \begin{document} 
> >     >       \jlo{} Hello. 
> >     >       \fem{} Goodbye 
> >     >       \end{document} 
> >     >   After pdflatex compilation I obtain : 
> >     >   Jean Louis : Hello. 
> >     >   femme 1 : Goodbye 
> >     >   But 
> >     >   $ pandoc -f latex -t odt -o ecm-00.odt  ecm-00.tex 
> >     >   produce : 
> >     >   Jean Louis : 
> >     >   Hello. 
> >     >   femme 1 : 
> >     >   Goodbye 
> >     >   I tried to use different options (--wrap=[auto|none|preserve]) 
> >     (-S) 
> >     >   without success. Is it due to default odt template ? 
> >     >   Shall someone help me. 
> >     >   Thank you 
> >     > 
> >     >   -- 
> >     >   You received this message because you are subscribed to the 
> >     Google 
> >     >   Groups "pandoc-discuss" group. 
> >     >   To unsubscribe from this group and stop receiving emails from 
> >     it, send 
> >     >   an email to [1][2]pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org 
> >     >   To post to this group, send email to 
> >     >   [2][3]pandoc-...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org 
> >     >   To view this discussion on the web visit 
> >     >   [3][4]https://groups.google.com/d/msgid/pandoc-discuss/ 
> >     c58dc481-48f6-45c3- 
> >     >   bab5-d28428a7c2ba%[5]40googlegroups.com. 
> >     >   For more options, visit [4][6]https://groups.google.com/ 
> >     d/optout. 
> >     > 
> >     >References 
> >     > 
> >     >   1. mailto:[7]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> <javascript:> 
> >     >   2. mailto:[8]pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> >     >   3. [9]https://groups.google.com/d/msgid/pandoc-discuss/c58dc481- 
> >     48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium= 
> >     email&utm_source=footer 
> >     >   4. [10]https://groups.google.com/d/optout 
> > 
> >   -- 
> >   You received this message because you are subscribed to the Google 
> >   Groups "pandoc-discuss" group. 
> >   To unsubscribe from this group and stop receiving emails from it, send 
> >   an email to [11]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> <javascript:>. 
> >   To post to this group, send email to 
> >   [12]pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. 
> >   To view this discussion on the web visit 
> >   [13]
> https://groups.google.com/d/msgid/pandoc-discuss/e447ebc5-c453-47ef 
> >   -a61e-fbe3b8e0ab1b%40googlegroups.com. 
> >   For more options, visit [14]https://groups.google.com/d/optout. 
> > 
> >References 
> > 
> >   1. 
> https://github.com/jgm/pandoc/releases/download/2.0.5/pandoc-2.0.5-linux.tar.gz 
> >   2. javascript:/ 
> >   3. javascript:/ 
> >   4. 
> https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3- 
> >   5. http://40googlegroups.com/ 
> >   6. https://groups.google.com/d/optout 
> >   7. javascript:/ 
> >   8. javascript:/ 
> >   9. 
> https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer 
> >  10. https://groups.google.com/d/optout 
> >  11. mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:> 
> >  12. mailto:pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:> 
> >  13. 
> https://groups.google.com/d/msgid/pandoc-discuss/e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer 
> >  14. https://groups.google.com/d/optout 
>
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/4121b746-4ae1-407f-9a5e-8714cc163145%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #1.2: Type: text/html, Size: 15107 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: latex   to  odt insert linebreak after personnal  command
       [not found]               ` <4121b746-4ae1-407f-9a5e-8714cc163145-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2017-12-17 18:01                 ` John MacFarlane
       [not found]                   ` <20171217180155.GA26459-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
  0 siblings, 1 reply; 9+ messages in thread
From: John MacFarlane @ 2017-12-17 18:01 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

Our binary packages are for amd64, and you have i386
architecture, so they won't work.  You could try compiling
from source.

+++ pierrO Lelou [Dec 17 17 09:04 ]:
>   Things seem more complicated. My processor is 64 bits, but the Kubuntu
>   16-04 installed indicates 32-bits OS.
>   Thus dpkg -i pandoc-2.0.5-1-amd64.deb, give (in french so it is my
>   translate) :
>   The package architecture (amd 64) doesn't match the system one's
>   (i386). ... Error
>   Le dimanche 17 décembre 2017 08:23:57 UTC+1, John MacFarlane a écrit :
>
>     Sorry, I didn't notice that you'd already tried to install
>     the linux binary.  Not sure why it didn't work.
>     You unpacked the tarball, right?
>
>   No problem detected
>
>     tar xvzf pandoc-2.0.5-linux.tar.gz
>     then you should find the binary in pandoc-2.0.5/
>
>   That is OK but when I launch ./pandoc it caused errors
>   impossible d’exécuter le fichier binaire : Erreur de format pour exec()
>   binary file can not be executed : format error for (exec)
>
>     +++ pierrO Lelou [Dec 16 17 01:59 ]:
>     >   No I am using the 1.16.0.2. and this is the version on Kubuntu
>     16.04
>     >   I tried to install [1]pandoc-2.0.5-linux.tar.gz but I obtained :
>     >   impossible d’exécuter le fichier binaire : Erreur de format pour
>     exec()
>     >   Le vendredi 15 décembre 2017 18:17:07 UTC+1, John MacFarlane a
>     écrit :
>     >
>     >     Are you using an older version of pandoc?
>     >     With pandoc 2.0.5 it worked fine for me.
>     >     +++ pierrO Lelou [Dec 15 17 05:37 ]:
>     >     >    Hello
>     >     >   I want to convert a latex file to odt.
>     >     >   My source code contains personnal command to create
>     dialogue
>     >     >   \documentclass[french]{article}
>     >     >   \usepackage[utf8]{inputenc}
>     >     >   \usepackage[T1]{fontenc}
>     >     >   \usepackage{lmodern}
>     >     >   \usepackage[a4paper]{geometry}
>     >     >   \usepackage{babel}
>     >     >   \usepackage{csquotes}
>     >     >   \newcommand{\femm}{femme 1}
>     >     >   \newcommand{\fem}{%
>     >     >       \par%
>     >     >       -- \femm{} : }
>     >     >   \newcommand{\jloo}{Jean Louis} %Directeur
>     >     >   \newcommand{\jlo}{%
>     >     >       \par%
>     >     >       -- \jloo{} : }
>     >     >       \begin{document}
>     >     >       \jlo{} Hello.
>     >     >       \fem{} Goodbye
>     >     >       \end{document}
>     >     >   After pdflatex compilation I obtain :
>     >     >   Jean Louis : Hello.
>     >     >   femme 1 : Goodbye
>     >     >   But
>     >     >   $ pandoc -f latex -t odt -o ecm-00.odt  ecm-00.tex
>     >     >   produce :
>     >     >   Jean Louis :
>     >     >   Hello.
>     >     >   femme 1 :
>     >     >   Goodbye
>     >     >   I tried to use different options
>     (--wrap=[auto|none|preserve])
>     >     (-S)
>     >     >   without success. Is it due to default odt template ?
>     >     >   Shall someone help me.
>     >     >   Thank you
>     >     >
>     >     >   --
>     >     >   You received this message because you are subscribed to
>     the
>     >     Google
>     >     >   Groups "pandoc-discuss" group.
>     >     >   To unsubscribe from this group and stop receiving emails
>     from
>     >     it, send
>     >     >   an email to [1][2]pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     >     >   To post to this group, send email to
>     >     >   [2][3]pandoc-...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     >     >   To view this discussion on the web visit
>     >     >   [3][4][1]https://groups.google.com/d/msgid/pandoc-discuss/
>     >     c58dc481-48f6-45c3-
>     >     >   bab5-d28428a7c2ba%[5][2]40googlegroups.com.
>     >     >   For more options, visit [4][6][3]https://groups.google.
>     com/
>     >     d/optout.
>     >     >
>     >     >References
>     >     >
>     >     >   1. mailto:[7][4]pandoc-discuss+
>     unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     >   2. mailto:[8]pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     >   3. [9][5]https://groups.google.com/d/msgid/pandoc-discuss/
>     c58dc481-
>     >     [6]48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=
>     >     email&utm_source=footer
>     >     >   4. [10][7]https://groups.google.com/d/optout
>     >
>     >   --
>     >   You received this message because you are subscribed to the
>     Google
>     >   Groups "pandoc-discuss" group.
>     >   To unsubscribe from this group and stop receiving emails from
>     it, send
>     >   an email to [11][8]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     >   To post to this group, send email to
>     >   [12][9]pandoc-...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     >   To view this discussion on the web visit
>     >   [13][10]https://groups.google.com/d/msgid/pandoc-discuss/
>     e447ebc5-c453-47ef
>     >   -a61e-fbe3b8e0ab1b%[11]40googlegroups.com.
>     >   For more options, visit [14][12]https://groups.google.com/
>     d/optout.
>     >
>     >References
>     >
>     >   1. [13]https://github.com/jgm/pandoc/releases/download/2.0.5/
>     pandoc-2.0.5-linux.tar.gz
>     >   2. javascript:/
>     >   3. javascript:/
>     >   4. [14]https://groups.google.com/d/
>     msgid/pandoc-discuss/c58dc481-48f6-45c3-
>     >   5. [15]http://40googlegroups.com/
>     >   6. [16]https://groups.google.com/d/optout
>     >   7. javascript:/
>     >   8. javascript:/
>     >   9. [17]https://groups.google.com/d/
>     msgid/pandoc-discuss/c58dc481-48f6-45c3-bab5-d28428a7c2ba@
>     googlegroups.com?utm_medium=email&utm_source=footer
>     >  10. [18]https://groups.google.com/d/optout
>     >  11. mailto:[19]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >  12. mailto:[20]pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >  13. [21]https://groups.google.com/d/
>     msgid/pandoc-discuss/e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b@
>     googlegroups.com?utm_medium=email&utm_source=footer
>     >  14. [22]https://groups.google.com/d/optout
>
>   --
>   You received this message because you are subscribed to the Google
>   Groups "pandoc-discuss" group.
>   To unsubscribe from this group and stop receiving emails from it, send
>   an email to [23]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>   To post to this group, send email to
>   [24]pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>   To view this discussion on the web visit
>   [25]https://groups.google.com/d/msgid/pandoc-discuss/4121b746-4ae1-407f
>   -9a5e-8714cc163145%40googlegroups.com.
>   For more options, visit [26]https://groups.google.com/d/optout.
>
>References
>
>   1. https://groups.google.com/d/msgid/pandoc-discuss/
>   2. http://40googlegroups.com/
>   3. https://groups.google.com/
>   4. javascript:/
>   5. https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-
>   6. http://48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org/?utm_medium=
>   7. https://groups.google.com/d/optout
>   8. javascript:/
>   9. javascript:/
>  10. https://groups.google.com/d/msgid/pandoc-discuss/e447ebc5-c453-47ef
>  11. http://40googlegroups.com/
>  12. https://groups.google.com/d/optout
>  13. https://github.com/jgm/pandoc/releases/download/2.0.5/pandoc-2.0.5-linux.tar.gz
>  14. https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3-
>  15. http://40googlegroups.com/
>  16. https://groups.google.com/d/optout
>  17. https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer
>  18. https://groups.google.com/d/optout
>  19. javascript:/
>  20. javascript:/
>  21. https://groups.google.com/d/msgid/pandoc-discuss/e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer
>  22. https://groups.google.com/d/optout
>  23. mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>  24. mailto:pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>  25. https://groups.google.com/d/msgid/pandoc-discuss/4121b746-4ae1-407f-9a5e-8714cc163145-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer
>  26. https://groups.google.com/d/optout

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/20171217180155.GA26459%40Johns-MacBook-Pro.local.
For more options, visit https://groups.google.com/d/optout.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: latex   to  odt insert linebreak after personnal  command [solved]
       [not found]                   ` <20171217180155.GA26459-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
@ 2017-12-18 22:08                     ` pierrO Lelou
  0 siblings, 0 replies; 9+ messages in thread
From: pierrO Lelou @ 2017-12-18 22:08 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 10078 bytes --]

OK John, installed on another computer with 64 architecture, the 
pandoc-2.0.5-1-amd64.deb, make a very good work.
[solved]
Bye
Le dimanche 17 décembre 2017 19:02:12 UTC+1, John MacFarlane a écrit :
>
> Our binary packages are for amd64, and you have i386 
> architecture, so they won't work.  You could try compiling 
> from source. 
>
> +++ pierrO Lelou [Dec 17 17 09:04 ]: 
> >   Things seem more complicated. My processor is 64 bits, but the Kubuntu 
> >   16-04 installed indicates 32-bits OS. 
> >   Thus dpkg -i pandoc-2.0.5-1-amd64.deb, give (in french so it is my 
> >   translate) : 
> >   The package architecture (amd 64) doesn't match the system one's 
> >   (i386). ... Error 
> >   Le dimanche 17 décembre 2017 08:23:57 UTC+1, John MacFarlane a écrit : 
> > 
> >     Sorry, I didn't notice that you'd already tried to install 
> >     the linux binary.  Not sure why it didn't work. 
> >     You unpacked the tarball, right? 
> > 
> >   No problem detected 
> > 
> >     tar xvzf pandoc-2.0.5-linux.tar.gz 
> >     then you should find the binary in pandoc-2.0.5/ 
> > 
> >   That is OK but when I launch ./pandoc it caused errors 
> >   impossible d’exécuter le fichier binaire : Erreur de format pour 
> exec() 
> >   binary file can not be executed : format error for (exec) 
> > 
> >     +++ pierrO Lelou [Dec 16 17 01:59 ]: 
> >     >   No I am using the 1.16.0.2. and this is the version on Kubuntu 
> >     16.04 
> >     >   I tried to install [1]pandoc-2.0.5-linux.tar.gz but I obtained : 
> >     >   impossible d’exécuter le fichier binaire : Erreur de format pour 
> >     exec() 
> >     >   Le vendredi 15 décembre 2017 18:17:07 UTC+1, John MacFarlane a 
> >     écrit : 
> >     > 
> >     >     Are you using an older version of pandoc? 
> >     >     With pandoc 2.0.5 it worked fine for me. 
> >     >     +++ pierrO Lelou [Dec 15 17 05:37 ]: 
> >     >     >    Hello 
> >     >     >   I want to convert a latex file to odt. 
> >     >     >   My source code contains personnal command to create 
> >     dialogue 
> >     >     >   \documentclass[french]{article} 
> >     >     >   \usepackage[utf8]{inputenc} 
> >     >     >   \usepackage[T1]{fontenc} 
> >     >     >   \usepackage{lmodern} 
> >     >     >   \usepackage[a4paper]{geometry} 
> >     >     >   \usepackage{babel} 
> >     >     >   \usepackage{csquotes} 
> >     >     >   \newcommand{\femm}{femme 1} 
> >     >     >   \newcommand{\fem}{% 
> >     >     >       \par% 
> >     >     >       -- \femm{} : } 
> >     >     >   \newcommand{\jloo}{Jean Louis} %Directeur 
> >     >     >   \newcommand{\jlo}{% 
> >     >     >       \par% 
> >     >     >       -- \jloo{} : } 
> >     >     >       \begin{document} 
> >     >     >       \jlo{} Hello. 
> >     >     >       \fem{} Goodbye 
> >     >     >       \end{document} 
> >     >     >   After pdflatex compilation I obtain : 
> >     >     >   Jean Louis : Hello. 
> >     >     >   femme 1 : Goodbye 
> >     >     >   But 
> >     >     >   $ pandoc -f latex -t odt -o ecm-00.odt  ecm-00.tex 
> >     >     >   produce : 
> >     >     >   Jean Louis : 
> >     >     >   Hello. 
> >     >     >   femme 1 : 
> >     >     >   Goodbye 
> >     >     >   I tried to use different options 
> >     (--wrap=[auto|none|preserve]) 
> >     >     (-S) 
> >     >     >   without success. Is it due to default odt template ? 
> >     >     >   Shall someone help me. 
> >     >     >   Thank you 
> >     >     > 
> >     >     >   -- 
> >     >     >   You received this message because you are subscribed to 
> >     the 
> >     >     Google 
> >     >     >   Groups "pandoc-discuss" group. 
> >     >     >   To unsubscribe from this group and stop receiving emails 
> >     from 
> >     >     it, send 
> >     >     >   an email to [1][2]pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org 
> >     >     >   To post to this group, send email to 
> >     >     >   [2][3]pandoc-...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org 
> >     >     >   To view this discussion on the web visit 
> >     >     >   [3][4][1]https://groups.google.com/d/msgid/pandoc-discuss/ 
> >     >     c58dc481-48f6-45c3- 
> >     >     >   bab5-d28428a7c2ba%[5][2]40googlegroups.com. 
> >     >     >   For more options, visit [4][6][3]https://groups.google. 
> >     com/ 
> >     >     d/optout. 
> >     >     > 
> >     >     >References 
> >     >     > 
> >     >     >   1. mailto:[7][4]pandoc-discuss+ 
> >     unsub...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:> 
> >     >     >   2. mailto:[8]pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> >     >     >   3. [9][5]https://groups.google.com/d/msgid/pandoc-discuss/ 
> >     c58dc481- 
> >     >     [6]48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium= 
> >     >     email&utm_source=footer 
> >     >     >   4. [10][7]https://groups.google.com/d/optout 
> >     > 
> >     >   -- 
> >     >   You received this message because you are subscribed to the 
> >     Google 
> >     >   Groups "pandoc-discuss" group. 
> >     >   To unsubscribe from this group and stop receiving emails from 
> >     it, send 
> >     >   an email to [11][8]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> <javascript:>. 
> >     >   To post to this group, send email to 
> >     >   [12][9]pandoc-...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org 
> >     >   To view this discussion on the web visit 
> >     >   [13][10]https://groups.google.com/d/msgid/pandoc-discuss/ 
> >     e447ebc5-c453-47ef 
> >     >   -a61e-fbe3b8e0ab1b%[11]40googlegroups.com. 
> >     >   For more options, visit [14][12]https://groups.google.com/ 
> >     d/optout. 
> >     > 
> >     >References 
> >     > 
> >     >   1. [13]https://github.com/jgm/pandoc/releases/download/2.0.5/ 
> >     pandoc-2.0.5-linux.tar.gz 
> >     >   2. javascript:/ 
> >     >   3. javascript:/ 
> >     >   4. [14]https://groups.google.com/d/ 
> >     msgid/pandoc-discuss/c58dc481-48f6-45c3- 
> >     >   5. [15]http://40googlegroups.com/ 
> >     >   6. [16]https://groups.google.com/d/optout 
> >     >   7. javascript:/ 
> >     >   8. javascript:/ 
> >     >   9. [17]https://groups.google.com/d/ 
> >     msgid/pandoc-discuss/c58dc481-48f6-45c3-bab5-d28428a7c2ba@ 
> >     googlegroups.com?utm_medium=email&utm_source=footer 
> >     >  10. [18]https://groups.google.com/d/optout 
> >     >  11. mailto:[19]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> <javascript:> 
> >     >  12. mailto:[20]pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> >     >  13. [21]https://groups.google.com/d/ 
> >     msgid/pandoc-discuss/e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b@ 
> >     googlegroups.com?utm_medium=email&utm_source=footer 
> >     >  14. [22]https://groups.google.com/d/optout 
> > 
> >   -- 
> >   You received this message because you are subscribed to the Google 
> >   Groups "pandoc-discuss" group. 
> >   To unsubscribe from this group and stop receiving emails from it, send 
> >   an email to [23]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> <javascript:>. 
> >   To post to this group, send email to 
> >   [24]pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. 
> >   To view this discussion on the web visit 
> >   [25]
> https://groups.google.com/d/msgid/pandoc-discuss/4121b746-4ae1-407f 
> >   -9a5e-8714cc163145%40googlegroups.com. 
> >   For more options, visit [26]https://groups.google.com/d/optout. 
> > 
> >References 
> > 
> >   1. https://groups.google.com/d/msgid/pandoc-discuss/ 
> >   2. http://40googlegroups.com/ 
> >   3. https://groups.google.com/ 
> >   4. javascript:/ 
> >   5. https://groups.google.com/d/msgid/pandoc-discuss/c58dc481- 
> >   6. http://48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org/?utm_medium= 
> >   7. https://groups.google.com/d/optout 
> >   8. javascript:/ 
> >   9. javascript:/ 
> >  10. https://groups.google.com/d/msgid/pandoc-discuss/e447ebc5-c453-47ef 
> >  11. http://40googlegroups.com/ 
> >  12. https://groups.google.com/d/optout 
> >  13. 
> https://github.com/jgm/pandoc/releases/download/2.0.5/pandoc-2.0.5-linux.tar.gz 
> >  14. 
> https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3- 
> >  15. http://40googlegroups.com/ 
> >  16. https://groups.google.com/d/optout 
> >  17. 
> https://groups.google.com/d/msgid/pandoc-discuss/c58dc481-48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer 
> >  18. https://groups.google.com/d/optout 
> >  19. javascript:/ 
> >  20. javascript:/ 
> >  21. 
> https://groups.google.com/d/msgid/pandoc-discuss/e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer 
> >  22. https://groups.google.com/d/optout 
> >  23. mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:> 
> >  24. mailto:pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:> 
> >  25. 
> https://groups.google.com/d/msgid/pandoc-discuss/4121b746-4ae1-407f-9a5e-8714cc163145-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer 
> >  26. https://groups.google.com/d/optout 
>
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/a1c0e75a-c36c-4e29-839f-dd7c61dd88b2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #1.2: Type: text/html, Size: 27888 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2017-12-18 22:08 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-15 13:37 latex to odt insert linebreak after personnal command pierrO Lelou
     [not found] ` <c58dc481-48f6-45c3-bab5-d28428a7c2ba-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2017-12-15 17:16   ` John MACFARLANE
2017-12-16  9:59     ` pierrO Lelou
     [not found]       ` <e447ebc5-c453-47ef-a61e-fbe3b8e0ab1b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2017-12-16 15:31         ` lukshuntim-Re5JQEeQqe8AvxtiuMwx3w
2017-12-17  7:21         ` John MacFarlane
2017-12-17  7:23         ` John MacFarlane
     [not found]           ` <20171217072341.GC19715-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2017-12-17 17:04             ` pierrO Lelou
     [not found]               ` <4121b746-4ae1-407f-9a5e-8714cc163145-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2017-12-17 18:01                 ` John MacFarlane
     [not found]                   ` <20171217180155.GA26459-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2017-12-18 22:08                     ` latex to odt insert linebreak after personnal command [solved] pierrO Lelou

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 NNTP newsgroup(s).