mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Merge branch 'master' into biblatex2
This commit is contained in:
commit
322808281f
15510
lib/doc/Additional.lyx
15510
lib/doc/Additional.lyx
File diff suppressed because it is too large
Load Diff
@ -4094,13 +4094,6 @@ dots
|
||||
decide el tipo a usar en función del carácter siguiente.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Separator parbreak
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\align center
|
||||
\begin_inset Tabular
|
||||
|
@ -93,10 +93,6 @@ m
|
||||
.
|
||||
El text es pot acotar per delimitadors o no.
|
||||
Així, si seleccioneu qualsevol de les fórmules següents:
|
||||
\begin_inset Separator latexpar
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
@ -188,10 +188,7 @@ Linguistik
|
||||
|
||||
aus der Liste der verfügbaren Module und drücken auf den Knopf
|
||||
\family sans
|
||||
\bar under
|
||||
H
|
||||
\bar default
|
||||
inzufügen
|
||||
Hinzufügen
|
||||
\family default
|
||||
(so wie es für dieses Dokument bereits getan wurde).
|
||||
\end_layout
|
||||
@ -284,10 +281,6 @@ Bedeutung
|
||||
.
|
||||
Das Paket erlaubt es, kontextsensible Anführungszeichen zu generieren (bspw.
|
||||
je nach aktuell verwendeter Sprache).
|
||||
\begin_inset Separator latexpar
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_deeper
|
||||
@ -469,11 +462,6 @@ Das Linguistikmodul stellt zwei Arten von Glossen zur Verfügung.
|
||||
\family sans
|
||||
Einfügen\SpecialChar menuseparator
|
||||
Benutzerdefinierte Einfügungen
|
||||
\begin_inset space ~
|
||||
\end_inset
|
||||
|
||||
\SpecialChar ldots
|
||||
|
||||
\family default
|
||||
zugänglich.
|
||||
Die einfache
|
||||
|
@ -2031,7 +2031,7 @@ void Buffer::writeDocBookSource(odocstream & os, string const & fname,
|
||||
if (! tclass.class_header().empty())
|
||||
os << from_ascii(tclass.class_header());
|
||||
else if (runparams.flavor == OutputParams::XML)
|
||||
os << "PUBLIC \"-//OASIS//DTD DocBook XML//EN\" "
|
||||
os << "PUBLIC \"-//OASIS//DTD DocBook XML V4.2//EN\" "
|
||||
<< "\"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd\"";
|
||||
else
|
||||
os << " PUBLIC \"-//OASIS//DTD DocBook V4.2//EN\"";
|
||||
|
@ -99,7 +99,8 @@ TempName::~TempName()
|
||||
TempName & TempName::operator=(TempName const & other)
|
||||
{
|
||||
if (this != &other) {
|
||||
tempname_.removeFile();
|
||||
if (!tempname_.empty())
|
||||
tempname_.removeFile();
|
||||
support::TempFile f("lyxextXXXXXX.tmp");
|
||||
f.setAutoRemove(false);
|
||||
tempname_ = f.name();
|
||||
|
@ -22,6 +22,7 @@
|
||||
#include "LaTeXFeatures.h"
|
||||
#include "OutputParams.h"
|
||||
#include "output_xhtml.h"
|
||||
#include "sgml.h"
|
||||
#include "texstream.h"
|
||||
|
||||
#include "support/docstream.h"
|
||||
@ -233,7 +234,7 @@ int InsetHyperlink::docbook(odocstream & os, OutputParams const &) const
|
||||
os << "<ulink url=\""
|
||||
<< subst(getParam("target"), from_ascii("&"), from_ascii("&"))
|
||||
<< "\">"
|
||||
<< getParam("name")
|
||||
<< sgml::escapeString(getParam("name"))
|
||||
<< "</ulink>";
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user