summaryrefslogtreecommitdiffstats
path: root/src/translator_ke.h
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-04-09 12:30:49 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-04-09 12:30:49 (GMT)
commit66a728cdcf50baeef45f78a1180c5ce86fe734af (patch)
treeb528a3cee502c5e5a4805a194479f927cc6a8c7f /src/translator_ke.h
parent7e2fcd305c8c9377aa958a3d812cc31bc81c0e32 (diff)
downloadDoxygen-66a728cdcf50baeef45f78a1180c5ce86fe734af.zip
Doxygen-66a728cdcf50baeef45f78a1180c5ce86fe734af.tar.gz
Doxygen-66a728cdcf50baeef45f78a1180c5ce86fe734af.tar.bz2
Improvement LaTeX output
For a number of languages the output in LaTeX has been improved so the regular documentation can be generated (automatically) in LaTeX / PDF as well.
Diffstat (limited to 'src/translator_ke.h')
-rw-r--r--src/translator_ke.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/translator_ke.h b/src/translator_ke.h
index 525cf84..c9f488c 100644
--- a/src/translator_ke.h
+++ b/src/translator_ke.h
@@ -35,12 +35,22 @@ class TranslatorKoreanEn : public TranslatorEnglish
{ return "korean-en"; }
virtual QCString latexLanguageSupportCommand()
{
- return "\\usepackage{hfont}\n";
+ return "\\usepackage{kotex}\n";
}
virtual QCString trRTFansicp()
{
return "949";
}
+ virtual QCString latexCommandName()
+ {
+ QCString latex_command = Config_getString(LATEX_CMD_NAME);
+ if (latex_command.isEmpty()) latex_command = "latex";
+ if (Config_getBool(USE_PDFLATEX))
+ {
+ if (latex_command == "latex") latex_command = "xelatex";
+ }
+ return latex_command;
+ }
/*! Used as ansicpg for RTF fcharset
* \see trRTFansicp() for a table of possible values.