Search found 10 matches

by ge0rge04
Mon Jun 17, 2013 10:25 pm
Forum: Document Classes
Topic: Custom Chapter Title
Replies: 2
Views: 7245

Custom Chapter Title

It looks great now.

Meanwhile I found a solution online

\renewcommand{\sfdefault}{mdugm}
\usepackage[ ]{titlesec}
\titleformat{\chapter}[display]
{ \normalsize \huge \color{black}}
{\flushleft \normalsize \MakeUppercase { } \hspace{1 ex} { \fontsize{60}{60}\selectfont \sffamily \thechapter ...
by ge0rge04
Mon Jun 17, 2013 10:00 pm
Forum: Document Classes
Topic: Custom Chapter Title
Replies: 2
Views: 7245

Custom Chapter Title

Hello,

I use the scrreprt document class from koma-script , and \chapter{Maimuta Betivana} prints this.
1 Maimuta Betivana
I want to insert a newline between the chapter number and the chapter name like this.
1
Maimuta Betivana
How can I achieve this? Please use the same chapter number and name ...
by ge0rge04
Thu Apr 01, 2010 12:51 pm
Forum: Graphics, Figures & Tables
Topic: User-defined environment
Replies: 4
Views: 2436

User-defined environment

i solved it
i'll paste the code, maybe someone will find it usefull


\documentclass{report}
\usepackage{amsmath}
\newenvironment{matrice}[4]{

$$
F(x)=\left(\negthickspace
\begin{array}{cc}
\\[-6pt]
#1 & #2 \\[6pt]
#3 & #4\\[2pt]
\end{array}\negthickspace\right)
$$
}

\begin{document ...
by ge0rge04
Wed Mar 31, 2010 11:25 pm
Forum: Graphics, Figures & Tables
Topic: User-defined environment
Replies: 4
Views: 2436

Re: User-defined environment

hi again
your example was fine, but my task clearly specifies to use \newenvironment only
what should i change in this case?
by ge0rge04
Tue Mar 30, 2010 9:55 pm
Forum: Text Formatting
Topic: edited footnote mark
Replies: 4
Views: 3119

Re: edited footnote mark

thanks :)
by ge0rge04
Tue Mar 30, 2010 9:49 pm
Forum: Text Formatting
Topic: edited footnote mark
Replies: 4
Views: 3119

Re: edited footnote mark

i tested your example
it's not like in the example, but it's still close.
it should be a '(' before the * in the title and a ')' after the * in the footnote.
by ge0rge04
Tue Mar 30, 2010 9:37 pm
Forum: Text Formatting
Topic: edited footnote mark
Replies: 4
Views: 3119

edited footnote mark

Hi all.

I need to edit a footmark to look like this


Title
Author (*

text...


_____
*) Author's adress


What i was able to write is something like this, but it doesn't look too logical

\documentclass[12pt]{article}

\renewcommand{\footnotemark{(*}}
\title{Title}
\author{Author\footnote ...
by ge0rge04
Tue Mar 30, 2010 9:11 pm
Forum: Graphics, Figures & Tables
Topic: User-defined environment
Replies: 4
Views: 2436

User-defined environment

Hi all.

I tried to create a new environment for this matrix(array)

\[
F(x)=\left(\negthickspace
\begin{array}{cc}
\\[-6pt]
\dfrac{x}{2} & 0 \\[6pt]
0 & x^2\\[2pt]
\end{array}\negthickspace\right)
\]

the code that initializes the matrix with some values


\begin{document}
\begin{matrice ...
by ge0rge04
Tue Mar 30, 2010 5:24 pm
Forum: Text Formatting
Topic: lower quotation marks
Replies: 2
Views: 4174

lower quotation marks

Hi.
How do i write lower quotation marks in latex?
like „hello world”
i don't want to use double commas ,,
by ge0rge04
Sun Mar 28, 2010 12:27 am
Forum: Graphics, Figures & Tables
Topic: adjusting array height
Replies: 1
Views: 1911

adjusting array height

Hello.
Could you tell me how can i make the first matrix look like the second one, using array command?
n6qfck.png
n6qfck.png (8.1 KiB) Viewed 1902 times
this is what i was able to write for the first one

Code: Select all

$$F(x)=\left(
\begin{array}{cc}
\frac{x}{2} & 0 \\
0 & x^2\\
\end{array}\right)$$
Thanks.