Questions tagged [glossary]

list of terms and definitions used in a larger document

Questions with this tag commonly seek an automated tool for generating a glossary from the corpus.

What is a glossary? an alphabetical list of terms in a particular domain of knowledge with the definitions for those terms.

110 questions
2
votes
0 answers

EPUB & Kindle File Glossary and Dictionary Selection

The Puzzle I am working on an eBook file, or series of files, which should be compatible with the maximum range of eReaders on the market. This would include, for example: The e-ink Kindle family The Kindle App on iOS, Android (including Kindle…
Matt Mc
  • 8,882
  • 6
  • 53
  • 89
2
votes
1 answer

reStructuredText and glossary terms translation

I'd like to know how can I translate (as in i18n) the terms in glossary. I use Sphinx 1.1.3 Let's say I have: .. glossary:: term definition After I run make gettext I get the .po files but I can only translate the definitions, not the…
minder
  • 2,059
  • 5
  • 24
  • 39
2
votes
5 answers

Programming Glossary

As I browse through the site, I find a lot of terms that many developers just starting out (and even some advanced developers) may be unfamiliar with. It would be great if people could post here with a term and definition that might be unknown to…
Steve M
  • 10,517
  • 12
  • 52
  • 63
2
votes
3 answers

COBOL level 88 data type

Very basic question here. I have to write out a data glossary for a COBOL program. This data glossary includes the following details about every variable: Name Data type Range of values (if applicable) Line numbers Fuller name I have several…
Djentleman
  • 1,137
  • 5
  • 13
  • 28
1
vote
1 answer

Wrapping words with a titled span with PHP

i'm working on a website that includes a glossary, in which a few words are explained. Additionaly I want to describe the terms in an article by putting them in spans with a title attribute. I get all the terms from the database in an array: $terms…
chris.ribal
  • 435
  • 2
  • 10
1
vote
3 answers

Highlighting glossary terms inside a HTML document

We have a glossary with up to 2000 terms (where each glossary term may consist of one, two or three words (either separated with whitespaces or a dash). Now we are looking for a solution for highlighting all terms inside a (longer) HTML document (up…
user2665694
1
vote
0 answers

Glossaries in TableOfContents with number

The title basically explains it. I want to use the package glossaries and include a number in the table of contents, e. g. 8 Glossary instead of Glossary, This code achives this without a…
Lasslos05
  • 414
  • 2
  • 12
1
vote
1 answer

Link Google automl translation custom model with glossary

I have built a custom translation model and a glossary using Google automl. This resulted in two different paths, one for using the model and a different one for the glossary. I was wondering if it would be possible to link both model and glossary…
1
vote
0 answers

Glossary Web Part for SharePoint 2007 / Glossary jQuery / Glossary Management System

Is there a Glossary Web part in SharePoint 2007 that can do the following: [1] It allows user to enter keyword and its description. Example: Keyword: HTML Description: Hypertext Markup Language (HTML) is the predominant markup language for web…
Wilson Tan
  • 187
  • 1
  • 2
  • 7
1
vote
0 answers

How do I update a HTML Glossary

I have a Glossary of terms in an HTML file. I want to create a form (or page) where I can add to the glossary without editing the HTML directly. The user should just enter the word and description and press Update. Is this possible without…
KrisPbcon
  • 21
  • 2
1
vote
1 answer

Why is hyperref package causing an issue with \footnotemark?

I had recently posted a question seeking help for linking a glossary in a specific way and it was resolved, thanks to @samcarter_is_at_topanswers.xyz for helping me out. url to the post Now, going ahead with the suggestions, I make use of \hyperref…
QTip
  • 70
  • 6
1
vote
2 answers

Add Glossary to Google translte V3 API by python

I am trying to add a glossary by CSV. I put the CSV on my google storage. I got this Error: google.api_core.exceptions.InvalidArgument: 400 Failed to parse content of input file. Error: Not enough valid languages in CSV file. Must have terms for at…
liz li
  • 15
  • 2
1
vote
0 answers

Pages don't show up correctly in glossary (LaTeX)

I'm try to make a simple glossary in my thesis. That's a compilable sample \documentclass[a4paper]{report} \usepackage[italian]{babel} \usepackage{lipsum} \usepackage{hyperref} \usepackage{glossaries} \makeglossaries \newglossaryentry{Tree}{ …
1
vote
1 answer

Creating a glossary without using tupler or dictionary in python

def glossary(): print("Menu for glossary\n Type 1 to insert a new word\n Type 2 to lookup a word\n Type 3 to exit\n") answer = input("Write your answer here: ") if answer == "1": Insert() elif answer == "2": lookup() elif answer == "3": …
O.M
  • 17
  • 3
1
vote
1 answer

Google Translation V3 API - Glossary resource error

Created a glossary resource -- Step 1) Kept a glossary csv sheet in GCS. Step 2) request.json as below - { "name":"projects/my-project-id/locations/us-central1/glossaries/my-glossary-id", "languagePair": { "sourceLanguageCode": "en", …