mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-22 06:00:40 +01:00
Everywhere: Purge spaces in text files
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
f424f2cb5f
commit
aa85417a17
96 changed files with 211 additions and 293 deletions
|
|
@ -22,4 +22,3 @@ $(LOGO): $(GENERATED_PNG)
|
|||
|
||||
clean.local:
|
||||
rm -f $(LOGO)
|
||||
|
||||
|
|
|
|||
|
|
@ -15,11 +15,10 @@ GRAPHICAL_HIERARCHY = YES
|
|||
DIRECTORY_GRAPH = YES
|
||||
|
||||
HTML_HEADER = header.html
|
||||
HTML_FOOTER = footer.html
|
||||
HTML_FOOTER = footer.html
|
||||
HTML_EXTRA_STYLESHEET = styles.css
|
||||
EXCLUDE_SYMLINKS = YES
|
||||
EXTRACT_STATIC = __EXTRACT_STATIC__
|
||||
|
||||
INLINE_SOURCES = __INLINE_SOURCES__
|
||||
SOURCE_BROWSER = __SOURCE_BROWSER__
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
/*
|
||||
* Memory Spaces Definitions.
|
||||
*
|
||||
* Need modifying for a specific board.
|
||||
* Need modifying for a specific board.
|
||||
* FLASH.ORIGIN: starting address of flash
|
||||
* FLASH.LENGTH: length of flash
|
||||
* RAM.ORIGIN: starting address of RAM bank 0
|
||||
|
|
|
|||
|
|
@ -26,9 +26,9 @@
|
|||
*/
|
||||
|
||||
/*
|
||||
* Default linker script for Cortex-M (it includes specifics for
|
||||
* Default linker script for Cortex-M (it includes specifics for
|
||||
* STM32F[34]xx).
|
||||
*
|
||||
*
|
||||
* To make use of the multi-region initialisations, define
|
||||
* OS_INCLUDE_STARTUP_INIT_MULTIPLE_RAM_SECTIONS for the _startup.c file.
|
||||
*/
|
||||
|
|
@ -42,7 +42,7 @@ _estack = __stack; /* STM specific definition */
|
|||
|
||||
/*
|
||||
* Default stack sizes.
|
||||
* These are used by the startup in order to allocate stacks
|
||||
* These are used by the startup in order to allocate stacks
|
||||
* for the different modes.
|
||||
*/
|
||||
|
||||
|
|
@ -52,25 +52,25 @@ PROVIDE ( _Main_Stack_Size = __Main_Stack_Size ) ;
|
|||
|
||||
__Main_Stack_Limit = __stack - __Main_Stack_Size ;
|
||||
|
||||
/* "PROVIDE" allows to easily override these values from an
|
||||
/* "PROVIDE" allows to easily override these values from an
|
||||
* object file or the command line. */
|
||||
PROVIDE ( _Main_Stack_Limit = __Main_Stack_Limit ) ;
|
||||
|
||||
/*
|
||||
* There will be a link error if there is not this amount of
|
||||
* RAM free at the end.
|
||||
* There will be a link error if there is not this amount of
|
||||
* RAM free at the end.
|
||||
*/
|
||||
_Minimum_Stack_Size = 256 ;
|
||||
|
||||
/*
|
||||
* Default heap definitions.
|
||||
* The heap start immediately after the last statically allocated
|
||||
* The heap start immediately after the last statically allocated
|
||||
* .sbss/.noinit section, and extends up to the main stack limit.
|
||||
*/
|
||||
PROVIDE ( _Heap_Begin = _end_noinit ) ;
|
||||
PROVIDE ( _Heap_Limit = __stack - __Main_Stack_Size ) ;
|
||||
|
||||
/*
|
||||
/*
|
||||
* The entry point is informative, for debuggers and simulators,
|
||||
* since the Cortex-M vector points to it anyway.
|
||||
*/
|
||||
|
|
@ -83,19 +83,19 @@ SECTIONS
|
|||
{
|
||||
/*
|
||||
* For Cortex-M devices, the beginning of the startup code is stored in
|
||||
* the .isr_vector section, which goes to FLASH.
|
||||
* the .isr_vector section, which goes to FLASH.
|
||||
*/
|
||||
.isr_vector : ALIGN(4)
|
||||
{
|
||||
FILL(0xFF)
|
||||
|
||||
|
||||
__vectors_start = ABSOLUTE(.) ;
|
||||
__vectors_start__ = ABSOLUTE(.) ; /* STM specific definition */
|
||||
KEEP(*(.isr_vector)) /* Interrupt vectors */
|
||||
|
||||
KEEP(*(.cfmconfig)) /* Freescale configuration words */
|
||||
|
||||
/*
|
||||
|
||||
KEEP(*(.cfmconfig)) /* Freescale configuration words */
|
||||
|
||||
/*
|
||||
* This section is here for convenience, to store the
|
||||
* startup code at the beginning of the flash area, hoping that
|
||||
* this will increase the readability of the listing.
|
||||
|
|
@ -106,13 +106,13 @@ SECTIONS
|
|||
|
||||
.inits : ALIGN(4)
|
||||
{
|
||||
/*
|
||||
/*
|
||||
* Memory regions initialisation arrays.
|
||||
*
|
||||
* Thee are two kinds of arrays for each RAM region, one for
|
||||
* data and one for bss. Each is iterrated at startup and the
|
||||
* Thee are two kinds of arrays for each RAM region, one for
|
||||
* data and one for bss. Each is iterrated at startup and the
|
||||
* region initialisation is performed.
|
||||
*
|
||||
*
|
||||
* The data array includes:
|
||||
* - from (LOADADDR())
|
||||
* - region_begin (ADDR())
|
||||
|
|
@ -122,34 +122,34 @@ SECTIONS
|
|||
* - region_begin (ADDR())
|
||||
* - region_end (ADDR()+SIZEOF())
|
||||
*
|
||||
* WARNING: It is mandatory that the regions are word aligned,
|
||||
* WARNING: It is mandatory that the regions are word aligned,
|
||||
* since the initialisation code works only on words.
|
||||
*/
|
||||
|
||||
|
||||
__data_regions_array_start = .;
|
||||
|
||||
|
||||
LONG(LOADADDR(.data));
|
||||
LONG(ADDR(.data));
|
||||
LONG(ADDR(.data)+SIZEOF(.data));
|
||||
|
||||
|
||||
LONG(LOADADDR(.data_CCMRAM));
|
||||
LONG(ADDR(.data_CCMRAM));
|
||||
LONG(ADDR(.data_CCMRAM)+SIZEOF(.data_CCMRAM));
|
||||
|
||||
|
||||
__data_regions_array_end = .;
|
||||
|
||||
|
||||
__bss_regions_array_start = .;
|
||||
|
||||
|
||||
LONG(ADDR(.bss));
|
||||
LONG(ADDR(.bss)+SIZEOF(.bss));
|
||||
|
||||
|
||||
LONG(ADDR(.bss_CCMRAM));
|
||||
LONG(ADDR(.bss_CCMRAM)+SIZEOF(.bss_CCMRAM));
|
||||
|
||||
|
||||
__bss_regions_array_end = .;
|
||||
|
||||
/* End of memory regions initialisation arrays. */
|
||||
|
||||
|
||||
/*
|
||||
* These are the old initialisation sections, intended to contain
|
||||
* naked code, with the prologue/epilogue added by crti.o/crtn.o
|
||||
|
|
@ -162,23 +162,23 @@ SECTIONS
|
|||
. = ALIGN(4);
|
||||
|
||||
/*
|
||||
* The preinit code, i.e. an array of pointers to initialisation
|
||||
* The preinit code, i.e. an array of pointers to initialisation
|
||||
* functions to be performed before constructors.
|
||||
*/
|
||||
PROVIDE_HIDDEN (__preinit_array_start = .);
|
||||
|
||||
|
||||
/*
|
||||
* Used to run the SystemInit() before anything else.
|
||||
*/
|
||||
KEEP(*(.preinit_array_sysinit .preinit_array_sysinit.*))
|
||||
|
||||
/*
|
||||
|
||||
/*
|
||||
* Used for other platform inits.
|
||||
*/
|
||||
KEEP(*(.preinit_array_platform .preinit_array_platform.*))
|
||||
|
||||
|
||||
/*
|
||||
* The application inits. If you need to enforce some order in
|
||||
* The application inits. If you need to enforce some order in
|
||||
* execution, create new sections, as before.
|
||||
*/
|
||||
KEEP(*(.preinit_array .preinit_array.*))
|
||||
|
|
@ -215,27 +215,27 @@ SECTIONS
|
|||
{
|
||||
*(.flashtext .flashtext.*) /* Startup code */
|
||||
} >FLASH
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* The program code is stored in the .text section,
|
||||
* The program code is stored in the .text section,
|
||||
* which goes to FLASH.
|
||||
*/
|
||||
.text : ALIGN(4)
|
||||
{
|
||||
*(.text .text.*) /* all remaining code */
|
||||
|
||||
|
||||
/* read-only data (constants) */
|
||||
*(.rodata .rodata.* .constdata .constdata.*)
|
||||
*(.rodata .rodata.* .constdata .constdata.*)
|
||||
|
||||
*(vtable) /* C++ virtual tables */
|
||||
|
||||
KEEP(*(.eh_frame*))
|
||||
|
||||
/*
|
||||
* Stub sections generated by the linker, to glue together
|
||||
* ARM and Thumb code. .glue_7 is used for ARM code calling
|
||||
* Thumb code, and .glue_7t is used for Thumb code calling
|
||||
* Stub sections generated by the linker, to glue together
|
||||
* ARM and Thumb code. .glue_7 is used for ARM code calling
|
||||
* Thumb code, and .glue_7t is used for Thumb code calling
|
||||
* ARM code. Apparently always generated by the linker, for some
|
||||
* architectures, so better leave them here.
|
||||
*/
|
||||
|
|
@ -249,24 +249,24 @@ SECTIONS
|
|||
{
|
||||
*(.ARM.extab* .gnu.linkonce.armextab.*)
|
||||
} > FLASH
|
||||
|
||||
|
||||
. = ALIGN(4);
|
||||
__exidx_start = .;
|
||||
__exidx_start = .;
|
||||
.ARM.exidx : ALIGN(4)
|
||||
{
|
||||
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
|
||||
} > FLASH
|
||||
__exidx_end = .;
|
||||
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
__etext = .;
|
||||
|
||||
|
||||
/* MEMORY_ARRAY */
|
||||
/*
|
||||
.ROarraySection :
|
||||
{
|
||||
*(.ROarraySection .ROarraySection.*)
|
||||
*(.ROarraySection .ROarraySection.*)
|
||||
} >MEMORY_ARRAY
|
||||
*/
|
||||
|
||||
|
|
@ -280,8 +280,8 @@ SECTIONS
|
|||
. = ALIGN(4) ;
|
||||
} > CCMRAM AT>FLASH
|
||||
|
||||
/*
|
||||
* This address is used by the startup code to
|
||||
/*
|
||||
* This address is used by the startup code to
|
||||
* initialise the .data section.
|
||||
*/
|
||||
_sidata = LOADADDR(.data);
|
||||
|
|
@ -291,7 +291,7 @@ SECTIONS
|
|||
*
|
||||
* The program executes knowing that the data is in the RAM
|
||||
* but the loader puts the initial values in the FLASH (inidata).
|
||||
* It is one task of the startup to copy the initial values from
|
||||
* It is one task of the startup to copy the initial values from
|
||||
* FLASH to RAM.
|
||||
*/
|
||||
.data : ALIGN(4)
|
||||
|
|
@ -303,7 +303,7 @@ SECTIONS
|
|||
*(.data_begin .data_begin.*)
|
||||
|
||||
*(.data .data.*)
|
||||
|
||||
|
||||
*(.data_end .data_end.*)
|
||||
. = ALIGN(4);
|
||||
|
||||
|
|
@ -312,12 +312,12 @@ SECTIONS
|
|||
__data_end__ = . ;
|
||||
|
||||
} >RAM AT>FLASH
|
||||
|
||||
|
||||
/*
|
||||
* The uninitialised data sections. NOLOAD is used to avoid
|
||||
* the "section `.bss' type changed to PROGBITS" warning
|
||||
*/
|
||||
|
||||
|
||||
/* The secondary uninitialised data section. */
|
||||
.bss_CCMRAM (NOLOAD) : ALIGN(4)
|
||||
{
|
||||
|
|
@ -333,7 +333,7 @@ SECTIONS
|
|||
|
||||
*(.bss .bss.*)
|
||||
*(COMMON)
|
||||
|
||||
|
||||
*(.bss_end .bss_end.*)
|
||||
. = ALIGN(4);
|
||||
__bss_end__ = .; /* standard newlib definition */
|
||||
|
|
@ -342,25 +342,25 @@ SECTIONS
|
|||
|
||||
.noinit_CCMRAM (NOLOAD) : ALIGN(4)
|
||||
{
|
||||
*(.noinit.CCMRAM .noinit.CCMRAM.*)
|
||||
*(.noinit.CCMRAM .noinit.CCMRAM.*)
|
||||
} > CCMRAM
|
||||
|
||||
|
||||
.noinit (NOLOAD) : ALIGN(4)
|
||||
{
|
||||
_noinit = .;
|
||||
|
||||
*(.noinit .noinit.*)
|
||||
|
||||
|
||||
*(.noinit .noinit.*)
|
||||
|
||||
. = ALIGN(4) ;
|
||||
_end_noinit = .;
|
||||
_end_noinit = .;
|
||||
} > RAM
|
||||
|
||||
|
||||
/* Mandatory to be word aligned, _sbrk assumes this */
|
||||
PROVIDE ( end = _end_noinit ); /* was _ebss */
|
||||
PROVIDE ( _end = _end_noinit );
|
||||
PROVIDE ( __end = _end_noinit );
|
||||
PROVIDE ( __end__ = _end_noinit );
|
||||
|
||||
|
||||
/*
|
||||
* Used for validation only, do not allocate anything here!
|
||||
*
|
||||
|
|
@ -371,10 +371,10 @@ SECTIONS
|
|||
{
|
||||
. = . + _Minimum_Stack_Size ;
|
||||
} >RAM
|
||||
|
||||
|
||||
/*
|
||||
* The FLASH Bank1.
|
||||
* The C or assembly source must explicitly place the code
|
||||
* The C or assembly source must explicitly place the code
|
||||
* or data there using the "section" attribute.
|
||||
*/
|
||||
.b1text : ALIGN(4)
|
||||
|
|
@ -383,7 +383,7 @@ SECTIONS
|
|||
*(.b1rodata) /* read-only data (constants) */
|
||||
*(.b1rodata.*)
|
||||
} >FLASHB1
|
||||
|
||||
|
||||
/*
|
||||
* The EXTMEM.
|
||||
* The C or assembly source must explicitly place the code or data there
|
||||
|
|
@ -397,7 +397,7 @@ SECTIONS
|
|||
*(.eb0rodata) /* read-only data (constants) */
|
||||
*(.eb0rodata.*)
|
||||
} >EXTMEMB0
|
||||
|
||||
|
||||
/* EXTMEM Bank1 */
|
||||
.eb1text : ALIGN(4)
|
||||
{
|
||||
|
|
@ -405,7 +405,7 @@ SECTIONS
|
|||
*(.eb1rodata) /* read-only data (constants) */
|
||||
*(.eb1rodata.*)
|
||||
} >EXTMEMB1
|
||||
|
||||
|
||||
/* EXTMEM Bank2 */
|
||||
.eb2text : ALIGN(4)
|
||||
{
|
||||
|
|
@ -413,7 +413,7 @@ SECTIONS
|
|||
*(.eb2rodata) /* read-only data (constants) */
|
||||
*(.eb2rodata.*)
|
||||
} >EXTMEMB2
|
||||
|
||||
|
||||
/* EXTMEM Bank0 */
|
||||
.eb3text : ALIGN(4)
|
||||
{
|
||||
|
|
@ -421,12 +421,12 @@ SECTIONS
|
|||
*(.eb3rodata) /* read-only data (constants) */
|
||||
*(.eb3rodata.*)
|
||||
} >EXTMEMB3
|
||||
|
||||
|
||||
|
||||
/* After that there are only debugging sections. */
|
||||
|
||||
/* This can remove the debugging information from the standard libraries */
|
||||
/*
|
||||
|
||||
/* This can remove the debugging information from the standard libraries */
|
||||
/*
|
||||
DISCARD :
|
||||
{
|
||||
libc.a ( * )
|
||||
|
|
@ -434,7 +434,7 @@ SECTIONS
|
|||
libgcc.a ( * )
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
/* Stabs debugging sections. */
|
||||
.stab 0 : { *(.stab) }
|
||||
.stabstr 0 : { *(.stabstr) }
|
||||
|
|
@ -446,7 +446,7 @@ SECTIONS
|
|||
/*
|
||||
* DWARF debug sections.
|
||||
* Symbols in the DWARF debugging sections are relative to the beginning
|
||||
* of the section so we begin them at 0.
|
||||
* of the section so we begin them at 0.
|
||||
*/
|
||||
/* DWARF 1 */
|
||||
.debug 0 : { *(.debug) }
|
||||
|
|
@ -469,5 +469,5 @@ SECTIONS
|
|||
.debug_weaknames 0 : { *(.debug_weaknames) }
|
||||
.debug_funcnames 0 : { *(.debug_funcnames) }
|
||||
.debug_typenames 0 : { *(.debug_typenames) }
|
||||
.debug_varnames 0 : { *(.debug_varnames) }
|
||||
.debug_varnames 0 : { *(.debug_varnames) }
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,27 +43,27 @@
|
|||
\fbox{
|
||||
\parbox[t]{15cm}
|
||||
{
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Huge \bf __TITLE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Huge \bf __SUBTITLE__}
|
||||
\centerline{\Huge \bf __SUBTITLE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
}}
|
||||
|
||||
\vspace{3cm}
|
||||
\vspace{3cm}
|
||||
|
||||
\centerline{\Large __DATE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Large Dokumentversion: __VERSION__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\end{center}
|
||||
|
||||
|
|
@ -76,5 +76,3 @@
|
|||
%\end{minipage}
|
||||
%\end{flushright}
|
||||
%\end{figure}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -180,7 +180,7 @@
|
|||
|
||||
% \DeclareMathSymbol{\C}{\mathalpha}{\AMSb}{``43}
|
||||
% \DeclareMathSymbol{\R}{\mathalpha}{\AMSb}{``52}
|
||||
|
||||
|
||||
|
||||
\newcolumntype{v}[1]{%
|
||||
>{\raggedright\hspace{0pt}\arraybackslash}p{#1}%
|
||||
|
|
@ -217,7 +217,7 @@
|
|||
\fancyhead[C]{__TITLE__ __SUBTITLE__}
|
||||
%Linie oben
|
||||
%\renewcommand{\headrulewidth}{0.5pt}
|
||||
|
||||
|
||||
%Fußzeile links bzw. innen
|
||||
\fancyfoot[L]{Dok.-Vers.: __VERSION__ vom __DATE__}
|
||||
%\fancyfoot[L]{__TITLE__ __SUBTITLE__ __VERSION__}
|
||||
|
|
@ -226,7 +226,7 @@
|
|||
\fancyfoot[R]{Seite \thepage \hspace{2pt} von \ztotpages}
|
||||
%Linie unten
|
||||
\renewcommand{\footrulewidth}{0.5pt}
|
||||
|
||||
|
||||
% Fußzeile auf jeder Seite - auch Kapitel und Inhaltsverzeichnis
|
||||
\fancypagestyle{plain}{%
|
||||
\fancyhf{}%
|
||||
|
|
@ -235,5 +235,3 @@
|
|||
\renewcommand{\headrulewidth}{0.0pt} %obere Linie ausblenden
|
||||
\fancyfoot[R]{\thepage}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
|
||||
<h2>Achtung!</h2>
|
||||
|
||||
Diese Website wurde automatisch mit Hilfe des Skripts
|
||||
Diese Website wurde automatisch mit Hilfe des Skripts
|
||||
<a
|
||||
href="http://cbl.leeds.ac.uk/nikos/tex2html/doc/latex2html/latex2html.html">latex2html</a> erstellt.
|
||||
Obwohl es ein sehr nützliches Programm ist, ist bei seiner Anwendung ein Teil des ursprüichen Dokuments verloren gegangen.
|
||||
|
|
|
|||
|
|
@ -43,27 +43,27 @@
|
|||
\fbox{
|
||||
\parbox[t]{15cm}
|
||||
{
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Huge \bf __TITLE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Huge \bf __SUBTITLE__}
|
||||
\centerline{\Huge \bf __SUBTITLE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
}}
|
||||
|
||||
\vspace{3cm}
|
||||
\vspace{3cm}
|
||||
|
||||
\centerline{\Large __DATE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Large Dokumentversion: __VERSION__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\end{center}
|
||||
|
||||
|
|
@ -76,5 +76,3 @@
|
|||
%\end{minipage}
|
||||
%\end{flushright}
|
||||
%\end{figure}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -20,4 +20,3 @@
|
|||
\title{__TITLE__ -- __SUBTITLE__}
|
||||
\author[__AUTHORS__]{__AUTHORS__\\\href{mailto:__CONTACT_EMAIL__}{\code{__CONTACT_EMAIL__}}}
|
||||
\date{__DATE__}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
|
||||
<h2>Achtung!</h2>
|
||||
|
||||
Diese Website wurde automatisch mit Hilfe des Skripts
|
||||
Diese Website wurde automatisch mit Hilfe des Skripts
|
||||
<a
|
||||
href="http://cbl.leeds.ac.uk/nikos/tex2html/doc/latex2html/latex2html.html">latex2html</a> erstellt.
|
||||
Obwohl es ein sehr nützliches Programm ist, ist bei seiner Anwendung ein Teil des ursprüichen Dokuments verloren gegangen.
|
||||
|
|
|
|||
|
|
@ -45,27 +45,27 @@ DELETE
|
|||
\fbox{
|
||||
\parbox[t]{15.0cm}
|
||||
{
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Huge \bf __TITLE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Huge \bf __SUBTITLE__}
|
||||
\centerline{\Huge \bf __SUBTITLE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
}}
|
||||
|
||||
\vspace{3cm}
|
||||
\vspace{3cm}
|
||||
|
||||
\centerline{\Large __DATE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Large Dokumentversion: __VERSION__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\end{center}
|
||||
|
||||
|
|
@ -78,5 +78,3 @@ DELETE
|
|||
\end{minipage}
|
||||
\end{flushright}
|
||||
\end{figure}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -51,27 +51,27 @@
|
|||
\fbox{
|
||||
\parbox[t]{15cm}
|
||||
{
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Huge \bf __TITLE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Huge \bf __SUBTITLE__}
|
||||
\centerline{\Huge \bf __SUBTITLE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
}}
|
||||
|
||||
\vspace{3cm}
|
||||
\vspace{3cm}
|
||||
|
||||
\centerline{\Large __DATE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Large Dokumentversion: __VERSION__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\end{center}
|
||||
|
||||
|
|
@ -84,5 +84,3 @@
|
|||
\end{minipage}
|
||||
\end{flushright}
|
||||
\end{figure}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -118,7 +118,7 @@ DELETE
|
|||
|
||||
% \DeclareMathSymbol{\C}{\mathalpha}{\AMSb}{``43}
|
||||
% \DeclareMathSymbol{\R}{\mathalpha}{\AMSb}{``52}
|
||||
|
||||
|
||||
|
||||
\renewcommand\floatpagefraction{.9}
|
||||
\renewcommand\topfraction{.9}
|
||||
|
|
@ -126,7 +126,7 @@ DELETE
|
|||
\renewcommand\textfraction{.1}
|
||||
|
||||
\newenvironment{prog}{\begin{quote}}{\end{quote} }
|
||||
|
||||
linkcolor=blue,
|
||||
linkcolor=blue,
|
||||
|
||||
linkcolor=blue,
|
||||
linkcolor=blue,
|
||||
citecolor=blue, urlcolor=blue
|
||||
|
|
|
|||
|
|
@ -180,7 +180,7 @@
|
|||
|
||||
% \DeclareMathSymbol{\C}{\mathalpha}{\AMSb}{``43}
|
||||
% \DeclareMathSymbol{\R}{\mathalpha}{\AMSb}{``52}
|
||||
|
||||
|
||||
|
||||
\newcolumntype{v}[1]{%
|
||||
>{\raggedright\hspace{0pt}\arraybackslash}p{#1}%
|
||||
|
|
@ -217,7 +217,7 @@
|
|||
\fancyhead[C]{__TITLE__ __SUBTITLE__}
|
||||
%Linie oben
|
||||
%\renewcommand{\headrulewidth}{0.5pt}
|
||||
|
||||
|
||||
%Fußzeile links bzw. innen
|
||||
\fancyfoot[L]{Dok.-Vers.: __VERSION__ vom __DATE__}
|
||||
%\fancyfoot[L]{__TITLE__ __SUBTITLE__ __VERSION__}
|
||||
|
|
@ -226,7 +226,7 @@
|
|||
\fancyfoot[R]{Seite \thepage \hspace{2pt} von \ztotpages}
|
||||
%Linie unten
|
||||
\renewcommand{\footrulewidth}{0.5pt}
|
||||
|
||||
|
||||
% Fußzeile auf jeder Seite - auch Kapitel und Inhaltsverzeichnis
|
||||
\fancypagestyle{plain}{%
|
||||
\fancyhf{}%
|
||||
|
|
@ -235,5 +235,3 @@
|
|||
\renewcommand{\headrulewidth}{0.0pt} %obere Linie ausblenden
|
||||
\fancyfoot[R]{\thepage}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
|
||||
<h2>Achtung!</h2>
|
||||
|
||||
Diese Website wurde automatisch mit Hilfe des Skripts
|
||||
Diese Website wurde automatisch mit Hilfe des Skripts
|
||||
<a
|
||||
href="http://cbl.leeds.ac.uk/nikos/tex2html/doc/latex2html/latex2html.html">latex2html</a> erstellt.
|
||||
Obwohl es ein sehr nützliches Programm ist, ist bei seiner Anwendung ein Teil des ursprüichen Dokuments verloren gegangen.
|
||||
|
|
|
|||
|
|
@ -43,27 +43,27 @@
|
|||
\fbox{
|
||||
\parbox[t]{15cm}
|
||||
{
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Huge \bf __TITLE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Huge \bf __SUBTITLE__}
|
||||
\centerline{\Huge \bf __SUBTITLE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
}}
|
||||
|
||||
\vspace{3cm}
|
||||
\vspace{3cm}
|
||||
|
||||
\centerline{\Large __DATE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Large Document Version: __VERSION__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\end{center}
|
||||
|
||||
|
|
@ -76,5 +76,3 @@
|
|||
\end{minipage}
|
||||
\end{flushright}
|
||||
\end{figure}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -43,31 +43,31 @@
|
|||
\fbox{
|
||||
\parbox[t]{15cm}
|
||||
{
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Huge \bf __TITLE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Huge \bf __SUBTITLE__}
|
||||
\centerline{\Huge \bf __SUBTITLE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
}}
|
||||
|
||||
\vspace{3cm}
|
||||
\vspace{3cm}
|
||||
|
||||
\centerline{\Huge \bf __CONFIDENTIAL_REMARK__}
|
||||
\centerline{\Huge \bf __CONFIDENTIAL_REMARK__}
|
||||
|
||||
\vspace{3cm}
|
||||
\vspace{3cm}
|
||||
|
||||
\centerline{\Large __DATE__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\centerline{\Large Document Version: __VERSION__}
|
||||
|
||||
\vspace{0.3cm}
|
||||
\vspace{0.3cm}
|
||||
|
||||
\end{center}
|
||||
|
||||
|
|
|
|||
|
|
@ -117,7 +117,7 @@
|
|||
|
||||
% \DeclareMathSymbol{\C}{\mathalpha}{\AMSb}{``43}
|
||||
% \DeclareMathSymbol{\R}{\mathalpha}{\AMSb}{``52}
|
||||
|
||||
|
||||
|
||||
\renewcommand\floatpagefraction{.9}
|
||||
\renewcommand\topfraction{.9}
|
||||
|
|
@ -125,4 +125,3 @@
|
|||
\renewcommand\textfraction{.1}
|
||||
|
||||
\newenvironment{prog}{\begin{quote}}{\end{quote} }
|
||||
|
||||
|
|
|
|||
|
|
@ -127,7 +127,7 @@
|
|||
|
||||
% \DeclareMathSymbol{\C}{\mathalpha}{\AMSb}{``43}
|
||||
% \DeclareMathSymbol{\R}{\mathalpha}{\AMSb}{``52}
|
||||
|
||||
|
||||
|
||||
\newcolumntype{v}[1]{%
|
||||
>{\raggedright\hspace{0pt}\arraybackslash}p{#1}%
|
||||
|
|
@ -139,4 +139,3 @@
|
|||
\renewcommand\textfraction{.1}
|
||||
|
||||
\newenvironment{prog}{\begin{quote}}{\end{quote} }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue