LyX ⇒ How do I rename the fixed strings like Abstract,LoF..
How do I rename the fixed strings like Abstract,LoF..
How do I rename the fixed strings like Abstract, Bibliography, List of Figures and Tables? Because I would to have:
ABSTRACT instead of Abstract
LIST OF FIGURES instead of List of Figures
LIST OF TABLES instead of List of Tables
REFERENCES instead of References
I've tried tu put
\renewcommand\abstractname{Executive Summary}
in the Preamble but it does not work...
Someone can help me?
Thank You,
davide
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
How do I rename the fixed strings like Abstract,LoF..
It seems that LyX uses the babel package to deal with language support. If you export your lyx file to LaTeX, you'll see the line \usepackage{babel}. The problem is that LyX places it after any changes you've done in Document > Settings... > LaTeX Preamble, so invalidating them.
You have two possible solutions, choose the one you prefer:
- Before the abstract, insert an ERT with the code you already tried without success:
\renewcommand\abstractname{Executive Summary} - In Document > Settings... > LaTeX Preamble, add this line:
\AtBeginDocument{\addto\captionsenglish{\def\abstractname{Executive Summary}}}
Re: How do I rename the fixed strings like Abstract,LoF..
Cheers
davide
-
- Posts: 1
- Joined: Wed Feb 11, 2009 12:40 am
Re: How do I rename the fixed strings like Abstract,LoF..
\renewcommand\contentsname{your title for TOC}
\renewcommand\listfigurename{your title for LoF}
\renewcommand\listtablename{your title for LoT}
\renewcommand\refname{your title for Bib.}
\renewcommand\abstractname{your title for abstract}
Note: i'm using Lyx version 1.6.1. on Windows XP
Changing "Algorithm" to "Algorithmus" etc..
I have a similar Problem:
LyX prints "Algorithm" instead of the german Word "Algorithmus".
I already changed the document-settings and the program-settings to German. But it doesn´t work.
I wonder, because all other words are fine, like
"Abbildung"
"Tabelle"
....
By the way. Is there a possibility, to change "Abbildung" to "Bild" ?
Thank you very much for your help!
greetings
Re: How do I rename the fixed strings like Abstract,LoF..
Please, this is urgent....I got to finish my small diploma thesis....

Re: How do I rename the fixed strings like Abstract,LoF..
How do I rename the fixed strings like Abstract,LoF..
Code: Select all
%% LyX 1.6.4.2 created this file. For more info, see http://www.lyx.org/.%% Do not edit unless you really know what you are doing.\documentclass[12pt,english,ngerman]{scrbook}\usepackage[T1]{fontenc}\usepackage[latin9]{inputenc}\usepackage{listings}\usepackage[a4paper]{geometry}\geometry{verbose,tmargin=3.5cm,bmargin=3.5cm,lmargin=3cm,rmargin=3cm}\pagestyle{headings}\setcounter{secnumdepth}{3}\setcounter{tocdepth}{3}\setlength{\parskip}{\medskipamount}\setlength{\parindent}{0pt}\usepackage{color}\usepackage{babel}\usepackage{varioref}\usepackage{float}\usepackage{units}\usepackage{textcomp}\usepackage{amsmath}\usepackage{makeidx}\makeindex\usepackage{graphicx}\usepackage{amssymb}\usepackage[unicode=true,bookmarks=true,bookmarksnumbered=true,bookmarksopen=true,bookmarksopenlevel=1,breaklinks=false,pdfborder={0 0 1},backref=false,colorlinks=true]{hyperref}\hypersetup{pdftitle={E},pdfauthor={P},pdfsubject={s},pdfkeywords={s},linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,pdfpagelayout=OneColumn, pdfnewwindow=true, pdfstartview=XYZ, plainpages=false, pdfpagelabels}\makeatletter%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.\newcommand{\noun}[1]{\textsc{#1}}\newcommand{\lyxmathsym}[1]{\ifmmode\begingroup\def\b@ld{bold}\text{\ifx\math@version\b@ld\bfseries\fi#1}\endgroup\else#1\fi}
How do I rename the fixed strings like Abstract,LoF..
Code: Select all
\floatname{algorithm}{Algorithmus}\addto\captionsngerman{\def\figurename{Bild}}
Re: How do I rename the fixed strings like Abstract,LoF..
Thank you, Juanjo!!
This works like a charm. Why is "algorithm" the only word, which is still in English? Is this a LaTeX or LyX Error?