1 Aralık 2012 Cumartesi

LaTeX


LaTeX Kurma

LaTeX'i aşağıdaki linkten indirebilirsiniz. (You can  download LaTeX form the below link)

http://ftp.ntua.gr/mirror/ctan/systems/windows/protext/

Protext dosyasının içindeki setup.exe yi çalıştırın,  MiKTeX ve TeXstudio programlarını kurun.
(Run the setup.exe file inside the protext file and install the MiKTeX and TeXstudio)


LATEX Türkçe karakterler (Latex Turkish characters)
  1. \u{g}     – ğ
  2. \u{G}    – Ğ
  3. \c{c}     – ç
  4. \c{C}    – Ç
  5. {\i}        – ı
  6. \.{I}       – İ
  7. \”{o}     – ö
  8. \”{O}    – Ö
  9. \c{s}    – ş
  10. \c{S}   – Ş
  11. \”{u}     – ü
  12. \”{U}    – Ü
örnek (example): Özgürlük --> \”{O}zg\”{u}rl\”{u}k

Latex dökümanına resim ekleme ( Adding picture to Latex document)


.jpg  ve .png uzantılı resim dosyalarını .eps formatına çevirirseniz, latex dökümanında görüntü kalitesi daha iyi olacaktır.

 (If  the .jpg and .png picture file formats changed to the .eps file, the picture in the latex file would be seen better.)  

 jpg, png ve daha birçok dosya türünü go2convert.com sitesini kullanarak online olarak eps ve birçok formata çevirebilirsiniz. 
(you can convert your jpg, png and other file formats to eps or other types of formats by online using go2convert.com)

\usepackage{epsfig} % dokümana eps figure eklemek için (to include .eps figures)

begin{figure}[h]
\centering
\epsfig{file=(dosyaadı)filename.eps,width=1.5in}
\end{figure}

Figure Position & List of Figure 
SpecifierPermission
hPlace the float here, i.e., approximately at the same point it occurs in the source text (however, not exactly at the spot)
tPosition at the top of the page.
bPosition at the bottom of the page.
pPut on a special page for floats only.
!Override internal parameters LaTeX uses for determining "good" float positions.
HPlaces the float at precisely the location in the LaTeX code. Requires the float package, e.g., \usepackage{float}. This is somewhat equivalent to h!.

What you do with these placement permissions is to list which of the options you wish to make available to LaTeX. These are simply possibilities, and LaTeX will decide when typesetting your document which of your supplied specifiers it thinks is best. In some special cases LaTeX won't follow these positioning parameters and additional commands will be necessary, for example, if one needs to specify an alignment other than centered for a float that sits alone in one page. Use \listoffigures to add a list of the figures in the beginning of the document


Resim Konumu & Resim Listesi Oluşturma

ÖzellikAçıklama
hResim, dosya içinde uygun bir yere yerleştirilir 
tResim, sayfa üstüne yerleştirilir.
bResim, sayfa altına yerleştirilir.
pResim, ayrı bir sayfaya yerleştirilir.
!Latex'in uygun pozisyon belirleme özelliğini devre dışı bırakır.
HResim, istenilen yere yerleştirilir.  " h! " ile aynı özelliklere sahiptir.

Yukarıdaki özellikler, LaTeX dökümanına resim veya figür eklerken konumunu ayarlamanızı sağlar. Dökümana  \listoffigures eklerseniz, eklediğiniz figürlerin toplu olarak başlangıç kısmında listesini görebilirsiniz

Hiç yorum yok:

Yorum Gönder