Search found 7 matches

by bruhan
Mon Mar 16, 2015 12:47 am
Forum: TeXShop
Topic: Glossaries
Replies: 10
Views: 56616

Re: Glossaries

Also, I run latex from the drop down menu in my Texshop window, and I run makeglossaries MyFile (without extension) from the terminal (and I get:

bruno$ makeglossaries Include_Tese
makeglossaries version 2.14 (2014-03-06)
added glossary type 'main' (glg,gls,glo)
Warning: File 'Include_Tese.glo' is ...
by bruhan
Mon Mar 16, 2015 12:19 am
Forum: TeXShop
Topic: Glossaries
Replies: 10
Views: 56616

Glossaries

Thanks again. Thanks for your patience.

My minimum code is as follows:

\documentclass[11pt, a4paper]{report}
\usepackage{makeidx}
\usepackage{hyperref}
\usepackage{natbib}
\makeindex
\usepackage[toc]{glossaries}
\input{Capitulos/Glossario}
\makeglossaries

\begin{document}
\printglossary
\end ...
by bruhan
Sun Mar 15, 2015 10:57 pm
Forum: TeXShop
Topic: Glossaries
Replies: 10
Views: 56616

Glossaries

I have two files: a main file ( Include_Tese ) where I include my glossary file ( Glossario ) and a glossary file.

When I ran:
makeglossaries My_Main_File

I got the following answer:

makeglossaries version 2.14 (2014-03-06)
added glossary type 'main' (glg,gls,glo)
Warning: File 'Include_Tese ...
by bruhan
Sun Mar 15, 2015 10:53 pm
Forum: TeXShop
Topic: Glossaries
Replies: 10
Views: 56616

Re: Glossaries

I'm a beginner in this issue (!) and am having difficulties in following the recipes. I figured out I have to run make glossaries, but I haven't understood how or when. Should I run it through the terminal using my main file? What should I do after this?
by bruhan
Sun Mar 15, 2015 10:27 pm
Forum: TeXShop
Topic: Glossaries
Replies: 10
Views: 56616

Re: Glossaries

Johanes, thank you for your answer. I'm trying to get a the makeglossaries appear on my drop down menu. Still haven't managed.
by bruhan
Sun Mar 15, 2015 7:42 pm
Forum: TeXShop
Topic: Glossaries
Replies: 10
Views: 56616

Re: Glossaries

Thanks Johannes. I found my engines alright. I then created a file

#!/bin/sh

bfname=$(dirname "$1")/"`basename "$1" .tex`"

makeindex -s "$bfname".ist -t "$bfname".alg -o "$bfname".acr "$bfname".acn
makeindex -s "$bfname".ist -t "$bfname".glg -o "$bfname".gls "$bfname".glo

Then tried to make it ...
by bruhan
Sun Mar 15, 2015 3:59 am
Forum: TeXShop
Topic: Glossaries
Replies: 10
Views: 56616

Glossaries

Hello. I would like to make a glossary in my TeXshop version. I've seen a post which teaches us how to create a makeglossary in TeXshop in an iMac

http://the-moni-blog.blogspot.com.br/2009/10/creating-glossaries-in-texshop-on-mac.html

But I can't find my engines directory. Can anyone help me ...