\documentclass[svgnames]{report}
\usepackage{tikz}
\usepackage{kpfonts}
\usepackage[explicit]{titlesec}
\newcommand*\chapterlabel{}
\titleformat{\chapter}
{\gdef\chapterlabel{}
\normalfont\sffamily\Huge\bfseries\scshape}
{\gdef\chapterlabel{\thechapter\ }}{0pt}
{\begin{tikzpicture}[remember picture,overlay]
\node[yshift=-3cm] at (current page.north west)
{\begin{tikzpicture}[remember picture, overlay]
\draw[fill=LightSkyBlue] (0,0) rectangle
(\paperwidth,3cm);
\node[anchor=east,xshift=.9\paperwidth,rectangle,
rounded corners=20pt,inner sep=11pt,
fill=MidnightBlue]
{\color{white}\chapterlabel#1};
\end{tikzpicture}
};
\end{tikzpicture}
}
\titlespacing*{\chapter}{0pt}{50pt}{-60pt}
\begin{document}
\tableofcontents
\chapter{Introduction}
Text
\chapter{Main}
\section{Section}
Text
\begin{thebibliography}{99}
\bibitem{Test} test reference
\end{thebibliography}
\end{document}
See also pdf output of this example.
Reference: http://texblog.net
Friday, February 12, 2010
Fancy chapter headings with TikZ
Thursday, December 17, 2009
International conference on Analysis & Applications, January 24-26, 2010
The conference aims to reflect the current state of the art in the study of analysis and to discuss new developments and future directions. It hopes to promote a spirit of training, learning and communicating through the active participation and scientific exchange among analysts around the world.
The Conference will consist of plenary talks of 45 minutes (40+5 for discussion) and contributed talks of 25 minutes (20 + 5 for discussion) in parallel special sessions. All areas of analysis-related mathematics will be covered, especially: Complex Analysis, Numerical Analysis, Real and Functional Analysis, Topology, and Applications of Analysis to other areas of mathematics and science.You can find more information here.
Header/ Footer in Latex
Creating headers and footers in Latex can be done by using the package “fancyhdr”. This is a short introduction, showing the most important features of the package. If you know “fancyhdr” and are looking for something particular, refer to the fancyhdr-documentation.
First of all, you need to tell Latex to use the package:
\usepackage{fancyhdr}
and change the style from “plain” to “fancy”:
\pagestyle{fancy}
You will now the get the default fancy pagestyle which adds a line at the top of every page, except for some exceptions (title-page, abstract, new chapter in report).
Default fancyhdr page style:
Above the line, Latex will print headings:
Book/report
Left-hand side: section
Right- hand side: chapter
Note: if you use the optional documentclass argument “twoside”, Latex will alter the position of the section and chapter. (e.g. \documentclass[twoside]{report}, also introducing non-symmetric margins).
Article
For acticles, Latex will print the section only (chapters cannot be used with articles).
The footer only includes the page number which is centered by default.
Custom fancyhdr page style:
Even though fancyhdr has a default page style, you are free to define headers/footers yourself , which is not too difficult after all.
First you need to clear the default layout:
\fancyhead{}
\fancyfoot{}
There are seven letters you need to know before you can define your own header/footer:
E: Even page
O: Odd page
L: Left field
C: Center field
R: Right field
H: Header
F: Footer
Now you can start to define your own layout. The definitions are added before the document starts, usually after the “usepackages”:
\fancyhead[CO,CE]{---Draft---}
\fancyfoot[CO,CE]{Confidential}
\fancyfoot[RO, LE] {\thepage}
The decorative lines can be changed by increasing/decreasing their thickness (0pt means no line):
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
Note: After the fancyhdr-documentation, the default layout is produced by the following commands:
\fancyhead[LE,RO]{\slshape \rightmark}
\fancyhead[LO,RE]{\slshape \leftmark}
\fancyfoot[C]{\thepage}
\headrulewidth 0.4pt
\footrulewidth 0 pt
Reference: http://texblog.wordpress.com
Glossary in Latex
A glossary is a nice thing to have in a report and usually very helpful. As you probably can imaging, it is very easy to create in Latex. Nevertheless, there are a few things to be done, especially generating the glossary-files.
First you have to tell Latex to use the glossary package and to create the glo-file containing all the glossar-entries in your document:
\usepackage{glossary}
\makeglossary
Next you have to add glossary entries to your document. They are of the following form:
\glossary{name={entry name}, description={entry description}}
Note: Usually, the glossary-entry should be added to keywords where they first appear.
A glossary-entry produces by default the following format:
“entry name” “entry description (on multiple lines if necessary)”, “page number”
And finally you have to tell Latex where to place you glossary inside the document which is done by the following command at the location you want to produce the glossary:
\printglossary
Optinally, you can reference to the glossary in the index (toc-file) by adding the following command after “\printglossary”:
\addcontentsline{toc}{chapter}{Glossary}
What you do first is generate your PDF once. An ist-file as well as a glossary file (*.glo) are generated. The glossary-file contains all the glossary entries found in the document in plain text. Next you type the following command in the command-line:
makeindex document.glo -s document.ist -t document.glg -o document.gls
generating the two files with the extensions *.gls and *.glg. If entries are ignored or rejected, which can be seen either in the glg-file or directly in the output of the makeindex-command, you have to check your glossary entries. The important of the two files is the *.gls-file, as it is used by Latex for the actual glossary. You now need to re-generate the PDF and if everything works fine, your glossary should appear where you wanted it.
Reference: http://texblog.wordpress.com
Friday, December 4, 2009
Mathematical analysis
Subdivisions
Mathematical analysis includes the following subfields.
- Real analysis, the rigorous study of derivatives and integrals of functions of real variables. This includes the study of sequences and their limits, series, and measures.
- Functional analysis[7] studies spaces of functions and introduces concepts such as Banach spaces and Hilbert spaces.
- Harmonic analysis deals with Fourier series and their abstractions.
- Complex analysis, the study of functions from the complex plane to itself which are complex differentiable (that is, holomorphic).
- Differential geometry, the application of calculus to specific mathematical spaces known as manifolds that possess a complicated internal structure but behave in a simple manner locally.
- p-adic analysis, the study of analysis within the context of p-adic numbers, which differs in some interesting and surprising ways from its real and complex counterparts.
- Non-standard analysis, which investigates the hyperreal numbers and their functions and gives a rigorous treatment of infinitesimals and infinitely large numbers. It is normally classed as model theory.
- Numerical analysis, the study of algorithms for approximating the problems of continuous mathematics.
Classical analysis would normally be understood as any work not using functional analysis techniques, and is sometimes also called hard analysis; it also naturally refers to the more traditional topics. The study of differential equations is now shared with other fields such as dynamical systems, though the overlap with conventional analysis is large.
Vahid Damanafshan
Reference: Wikipedia
Lebesgue integration
Vahid Damanafshan
Reference: Wikipedia
Measure
In mathematics, more specifically in measure theory, a measure on a set is a systematic way to assign to each suitable subset a number, intuitively interpreted as the size of the subset. In this sense, a measure is a generalization of the concepts of length, area and volume. A particularly important example is the Lebesgue measure on a Euclidean space, which assigns the conventional length, area and volume of Euclidean geometry to suitable subsets of Rn, n=1,2,3,.... For instance, the Lebesgue measure of [0,1] in the real numbers is its length in the everyday sense of the word, specifically 1.
To qualify as a measure (see Definition below), a function that assigns a non-negative real number or infinity to a set's subsets must satisfy a few conditions. One important condition is countable additivity. This condition states that the size of the union of a sequence of disjoint subsets is equal to the sum of the sizes of the subsets. However, it is in general impossible to consistently associate a size to each subset of a given set and also satisfy the other axioms of a measure. This problem was resolved by defining measure only on a sub-collection of all subsets; the subsets on which the measure is to be defined are called measurable and they are required to form a sigma-algebra, meaning that unions, intersections and complements of sequences of measurable subsets are measurable. Non-measurable sets in a Euclidean space, on which the Lebesgue measure cannot be consistently defined, are necessarily complex to the point of incomprehensibility, in a sense badly mixed up with their complement; indeed, their existence is a non-trivial consequence of the axiom of choice.
Measure theory was developed in successive stages during the late 19th and early 20th century by Emile Borel, Henri Lebesgue, Johann Radon and Maurice Fréchet, among others. The main applications of measures are in the foundations of the Lebesgue integral, in Andrey Kolmogorov's axiomatisation of probability theory and in ergodic theory. In integration theory, specifying a measure allows one to define integrals on spaces more general than subsets of Euclidean space; moreover, the integral with respect to the Lebesgue measure on Euclidean spaces is more general and has a richer theory than its predecessor, the Riemann integral. Probability theory considers measures that assign to the whole set the size 1, and considers measurable subsets to be events whose probability is given by the measure. Ergodic theory considers measures that are invariant under, or arise naturally from, a dynamical system.
Vahid Damanafshan
Reference: Wikipedia