* Writing papers in foreign languages (toc and image captions)
@ 2010-03-26 1:56 Nurullah Akkaya
2010-03-26 2:08 ` Torsten Wagner
0 siblings, 1 reply; 5+ messages in thread
From: Nurullah Akkaya @ 2010-03-26 1:56 UTC (permalink / raw)
To: emacs-orgmode
Hi,
I am using org-mode to write a paper in Turkish, when I export a pdf,
table of contents header reads "Contents" also images containing
captions has "Figure N" in them. Is it possible to change these words
to their Turkish equivalent?
Thanks...
--
Nurullah Akkaya
http://nakkaya.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Writing papers in foreign languages (toc and image captions)
2010-03-26 1:56 Writing papers in foreign languages (toc and image captions) Nurullah Akkaya
@ 2010-03-26 2:08 ` Torsten Wagner
2010-03-26 2:25 ` Nurullah Akkaya
0 siblings, 1 reply; 5+ messages in thread
From: Torsten Wagner @ 2010-03-26 2:08 UTC (permalink / raw)
To: Nurullah Akkaya; +Cc: emacs-orgmode
Hi Nirullah,
I guess for that you have to use the latex babel package (not mixing up
with org-babel), furthermore, you might have to use inputenc and fontenc
if you get problems with special turkish characters.
All of those you should be able to add to the LATEX header of your org-file
More infos will be here:
http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=babel
Greetings
Torsten
On 03/26/2010 10:56 AM, Nurullah Akkaya wrote:
> Hi,
>
> I am using org-mode to write a paper in Turkish, when I export a pdf,
> table of contents header reads "Contents" also images containing
> captions has "Figure N" in them. Is it possible to change these words
> to their Turkish equivalent?
>
> Thanks...
> --
> Nurullah Akkaya
> http://nakkaya.com
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Writing papers in foreign languages (toc and image captions)
2010-03-26 2:08 ` Torsten Wagner
@ 2010-03-26 2:25 ` Nurullah Akkaya
2010-03-26 2:55 ` Torsten Wagner
0 siblings, 1 reply; 5+ messages in thread
From: Nurullah Akkaya @ 2010-03-26 2:25 UTC (permalink / raw)
To: Torsten Wagner; +Cc: emacs-orgmode
Hi Torsten,
Thanks for the tip, adding
#+LATEX_HEADER: \usepackage[turkish]{babel}
changed both toc and figure captions to Turkish however,
images containing captions,
#+CAPTION: Iki sensor yerlesimi.
[[./img/sensor-yerlesim-2.jpg]]
disappeared, I have following in their place now,
=10em=10em@default
Sekil1:Iki sensor yerlesimi.
--
Nurullah Akkaya
http://nakkaya.com
On Fri, Mar 26, 2010 at 4:08 AM, Torsten Wagner
<torsten.wagner@gmail.com> wrote:
> Hi Nirullah,
>
> I guess for that you have to use the latex babel package (not mixing up with
> org-babel), furthermore, you might have to use inputenc and fontenc if you
> get problems with special turkish characters.
> All of those you should be able to add to the LATEX header of your org-file
> More infos will be here:
> http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=babel
>
>
> Greetings
> Torsten
>
>
>
> On 03/26/2010 10:56 AM, Nurullah Akkaya wrote:
>>
>> Hi,
>>
>> I am using org-mode to write a paper in Turkish, when I export a pdf,
>> table of contents header reads "Contents" also images containing
>> captions has "Figure N" in them. Is it possible to change these words
>> to their Turkish equivalent?
>>
>> Thanks...
>> --
>> Nurullah Akkaya
>> http://nakkaya.com
>>
>>
>> _______________________________________________
>> Emacs-orgmode mailing list
>> Please use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Writing papers in foreign languages (toc and image captions)
2010-03-26 2:25 ` Nurullah Akkaya
@ 2010-03-26 2:55 ` Torsten Wagner
2010-03-26 3:31 ` Nurullah Akkaya
0 siblings, 1 reply; 5+ messages in thread
From: Torsten Wagner @ 2010-03-26 2:55 UTC (permalink / raw)
To: Nurullah Akkaya; +Cc: emacs-orgmode
Nurullah,
nice to hear it is working now
> #+LATEX_HEADER: \usepackage[turkish]{babel}
>
> changed both toc and figure captions to Turkish however,
> images containing captions,
>
> #+CAPTION: Iki sensor yerlesimi.
> [[./img/sensor-yerlesim-2.jpg]]
>
> disappeared, I have following in their place now,
Hmm that is a bit strange since as far as I know it should not make any
differences to org-mode, or to say precisely, org mode has no idea that
you are going to write in Turkish.
The only thing I could think about is some interference with between
org-mode and babel... however, babel is a very frequently used package
people would now about any problem and probably fixed it already.
Please check the tex-file generated by org-mode with and without
babel-package. This gives you an idea whether it is a org-mode or a
latex problem.
Your workaround might work but cut a bit of the elegance of LaTeX.
Greetings
Torsten
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Writing papers in foreign languages (toc and image captions)
2010-03-26 2:55 ` Torsten Wagner
@ 2010-03-26 3:31 ` Nurullah Akkaya
0 siblings, 0 replies; 5+ messages in thread
From: Nurullah Akkaya @ 2010-03-26 3:31 UTC (permalink / raw)
Cc: emacs-orgmode
Torsten,
Thanks for all the help, It turns out that it is a latex problem,
switching to other languages works such as german french
but turkish causes compile errors.
Regards,
--
Nurullah Akkaya
http://nakkaya.com
On Fri, Mar 26, 2010 at 4:55 AM, Torsten Wagner
<torsten.wagner@gmail.com> wrote:
> Nurullah,
>
> nice to hear it is working now
>
>> #+LATEX_HEADER: \usepackage[turkish]{babel}
>>
>> changed both toc and figure captions to Turkish however,
>> images containing captions,
>>
>> #+CAPTION: Iki sensor yerlesimi.
>> [[./img/sensor-yerlesim-2.jpg]]
>>
>> disappeared, I have following in their place now,
>
> Hmm that is a bit strange since as far as I know it should not make any
> differences to org-mode, or to say precisely, org mode has no idea that you
> are going to write in Turkish.
>
> The only thing I could think about is some interference with between
> org-mode and babel... however, babel is a very frequently used package
> people would now about any problem and probably fixed it already.
>
> Please check the tex-file generated by org-mode with and without
> babel-package. This gives you an idea whether it is a org-mode or a latex
> problem.
>
> Your workaround might work but cut a bit of the elegance of LaTeX.
>
> Greetings
>
> Torsten
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-03-26 3:31 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-26 1:56 Writing papers in foreign languages (toc and image captions) Nurullah Akkaya
2010-03-26 2:08 ` Torsten Wagner
2010-03-26 2:25 ` Nurullah Akkaya
2010-03-26 2:55 ` Torsten Wagner
2010-03-26 3:31 ` Nurullah Akkaya
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.