This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Abort a (conflicted) merge: | |
git merge --abort |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AddType x-mapp-php5 .php | |
AddHandler x-mapp-php5 .php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?PHP | |
//Dieser Codeschnipsel gibt den gesamten Inhalt des Verzeichnisses, in dem sich diese Datei befindet | |
//inkl. Link zu den jeweiligen Dateien aus | |
$verz=opendir("."); //Name des Verzeichnisses angeben, welches geöffnet werden soll | |
//Bei einem . wird das Verzeichnis in dem sich die Datei befindet aufgelistet | |
$linkl = array ("0"); | |
//Hiermit wird das Verzeichnis aufgelistet: | |
while($file = readdir($verz)) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Mootools Core & More benötigt --> | |
<select id="filter" onchange="filter_list('filter')"> | |
<option value="all">Alles</option> | |
<option value="u1">User 1</option> | |
<option value="u2">User 2</option> | |
</select> | |
<h1>Liste</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\stepcounter{footnote} % Fußnotenzähler weitersetzen | |
\footnotetext{Bildquelle: Wikipedia Commons\newline \url{http://commons.wikimedia.org/w/index.php?title=File:LVDT.png&oldid=24100875}} | |
\begin{figure}[htb] | |
\centering | |
\includegraphics[width=0.3\textwidth]{LVDT.png} | |
\caption[Funktionsskizze LVDT-Sensor]{LVDT-Sensor${}^{\thefootnote}$} | |
\label{fig:lvdt} | |
\end{figure} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Nur im Literaturverzeichnis; nicht in der Bildunterschrift: | |
\begin{figure}[htb] | |
\centering | |
\includegraphics[width=0.5\textwidth]{F0000TEK.PNG} | |
\caption[Oszilloskop: Überschwinger bei steigender Flanke \Zitat{wikiembedded}]{Oszilloskop: Überschwinger bei steigender Flanke} | |
\label{fig:oszi1} | |
\end{figure} | |
Im Literaturverzeichnis und in der Bildunterschrift: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Am Dateiende der Datei 01article/templates/pages.html einfügen --> | |
<p align="center" class="copyright"> | |
<b>01-Artikelsystem</b> © 2006-<?PHP echo date("Y"); ?> by <a href="http://www.01-scripts.de" target="_blank">01-Scripts.de</a> | |
</p> |

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de"> | |
<head> | |
<title>Codeschnipsel: Alphabetische Verzeichnisliste - by 01-Scripts.de</title> | |
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> | |
<meta name="author" content="Michael Lorer - www.01-scripts.de" /> | |
<meta name="description" content="Generiert aus einem Unterverzeichnis per PHP eine alphabetische Verzeichnisliste" /> |