Texmaker and TeXstudioTexmaker and glossary

Information and discussion about Texmaker, an integrated LaTeX environment for several platforms, and the related TeXstudio
Post Reply
Rozenn
Posts: 2
Joined: Fri Apr 08, 2011 6:39 am

Texmaker and glossary

Post by Rozenn »

Hello!

I try to create a glossary with texmaker, but it doesn't work...
Here is my code:

\documentclass[a4paper,10pt]{report}

%----- Dimensions -----
\setlength{\evensidemargin}{2cm}
\setlength{\oddsidemargin}{2cm}
\setlength{\textheight}{\paperheight}
\addtolength{\textheight}{-5.7cm} % 24cm
\setlength{\textwidth}{\paperwidth}
\addtolength{\textwidth}{-4cm} % 17cm
\setlength{\topmargin}{0.5cm}
\setlength{\headheight}{1cm} %2cm
\setlength{\headsep}{0.5cm}
\setlength{\voffset}{-3.54cm}
\setlength{\hoffset}{-2.54cm}
\setlength{\footskip}{0.5cm}
\usepackage[top=4cm, bottom=0.03cm, left=5.1cm, right=0.03cm]{geometry}
%\usepackage[bottom=1cm]{geometry}




\usepackage[utf8]{inputenc}
%\usepackage[latin1]{inputenc}
\usepackage[english]{babel}
\usepackage[pdftex]{graphicx}
\usepackage{listings}
\lstset{language=C}
\usepackage{color}
\usepackage{hyperref}
\usepackage{graphicx}

\usepackage[style=altlist,
nonumberlist,
numberedsection,
acronym,
toc]
{glossaries}

\makeglossaries

\newglossaryentry{pos}{name=\glslink{POS}{Part Of Speech},text=Part of Speech,description={``Part of Speech''
Description}}
\newacronym[description={\glslink{pos}{Part of Speech}}]{POS}{POS}{Part Of
Speech}

\hypersetup{
backref=true, %liens
pagebackref=true,%bibliographie
%hyperindex=true, %liens index
colorlinks=true, %couleur liens
breaklinks=true, %retour à la ligne dans un lien
urlcolor=blue, %couleur hyperliens
linkcolor=blue, %couleur liens internes
bookmarks=true, %créé des signets
bookmarksopen=true, % les affiche complètement
pdftitle={Internship report for the 3rd year - Literature review},
pdfauthor={Boissay Rozenn},
pdfsubject={Planetary nebulae and their mimics - Australian Astronomical Observatory}
}


\begin{document}
\input{pageGardeBiblio.tex}

\tableofcontents
\chapter{machin}
\section{Abstract} \label{abstract}
\section{Introduction} \label{chap1}

J'insère le premier \cite{ref}, le second \cite{ref2}, le troisième \cite{ref3}, le quatrième \cite{ref4}, le cinquième \cite{ref5} et le sixième \cite{ref6}.



\bibliographystyle{unsrt} % Le style est mis entre crochets.
\bibliography{biblio} % mon fichier de base de donnée s'appelle bibli.bib


\gls{POS}


\printglossaries


\end{document}


Is someone can help me please?

Thanks!

Rozenn

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Rozenn
Posts: 2
Joined: Fri Apr 08, 2011 6:39 am

Re: Texmaker and glossary

Post by Rozenn »

I'm in Windows to use texmaker... and I do several times makeindex and pdflatex, because there is no makeglossary in the menus.
It's just the /printglossary which doesn't work. Any idea?
Post Reply