Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author | user:1234 user:me (yours) |
| Score | score:3 (3+) score:0 (none) |
| Answers | answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections | title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status | closed:yes duplicate:no migrated:no wiki:no |
| Types | is:question is:answer |
| Exclude | -[tag] -apples |
| For more details on advanced search visit our help page | |
Results for symbolize subscript
Search options not deleted
4 votes
1 answer
1k views
Symbolize Subscript doesn't work
I found documentation suggesting the Notation package could do this, but if I do: Needs["Notation`"] Symbolize[ParsedBoxWrapper[SubscriptBox["_", "_"]]] x = 1 Subscript[x, 1] I still get: 1 Subscript …
12 votes
1 answer
3k views
Details about Symbolize
When I'm using Symbolize function, there are some details that I'm not sure. … For example: << Notation` Symbolize[Subscript[q, 1],Subscript[q, 2]];(*I want to declare two symbols with subscript*) Can I type the name "Symbolize[...]" instead of using the Notation Palette? …
2 votes
1 answer
374 views
Notation package with Traditional Form
I symbolize subscripted variables with the form TraditionalForm, to enable easy use of TeXForm as suggested here: Needs["Notation`"] Symbolize[ParsedBoxWrapper[SubscriptBox["_", "_"]], WorkingForm … -> TraditionalForm] However: note the following example: rule = f -> ftest; Subscript[f, a] /. rule The rule replaces the "f" in Subscript[f,a]. …
4 votes
2 answers
524 views
Using Symbolize to Convert Multiple Variables at Once
Needs["Notation`"] vars = {Subscript[v, t], Subscript[a, n], Subscript[a, t], \! … \(\*OverscriptBox[\(v\), \(.\)]\), Subscript[v, x], Subscript[v, y], Subscript[v, o]} For[i = 0, i = Length[vars], i++, Symbolize[vars[[i]]] …
3 votes
1 answer
266 views
Symbolized, Subscripted Variable Doesn't Look Pretty
FullForm (*symbolize*) << Notation` Symbolize[ ParsedBoxWrapper[ SubscriptBox["s", "_"]]] // Once (*recheck fullform syntax*) Subscript[s, 2] // FullForm (*syntax has changed*) s\[UnderBracket]Subscript … s2 is the only pretty output*) Related Questions However, I really want to get this using the Symbolize[] functionality). …
5 votes
0 answers
265 views
Syntax colouring when using Symbolize
Symbolize[ ParsedBoxWrapper[ SubscriptBox["γ", "M0"]]]; Symbolize[ ParsedBoxWrapper[ SubscriptBox["M", RowBox[{"c", ".", "y", ".", "Rd"}]]]]; Symbolize[ ParsedBoxWrapper[ SubscriptBox["W", RowBox[{"el … ", ".", "y"}]]]]; Subscript[M, c.y.Rd] = 50; Subscript[W, el.y] = 0.05; Subscript[γ, M0] = 1.2; σ = Subscript[M, c.y.Rd]/(Subscript[W, el.y]/Subscript[γ, M0]) 1199.9999999999998 …
1 vote
Running out of variables
. << Notation` Symbolize[ ParsedBoxWrapper[ SubscriptBox["_", "_"]]] …
0 votes
1 answer
172 views
Using the actual subscript as a variable within thecontext of definitions using the Notation...
I've gotten into the habit of using subscripted variables, invoking the Notation package and Symbolize. … I know that In[2]:= Sum[Subscript[a,i],{i,1,2}] works as I'd like and may have to do, but I'm curious if the subscripted variables entered using Ctrl+_ can be made to work. …
3 votes
2 answers
2k views
How to define a vector with automatically added symbolic elements with subscripts
I want to define a vector lets say k containing elements Symbolize[Subscript[k, 1]], k2, k3 ... etc. When I define lets say k4 . I want the symbol automatically added to vector k. … EDIT 1 Symbolize[Subscript[k, _]] Command Symbolizes all subscripts of k e.g. k1 (Subscript[k, 1]), k2 (Subscript[k, 2]) etc. This is fine. …
2 votes
2 answers
404 views
How to automatically put the part of a variable name after the first letter in symbolized su...
If it is bigger than one, change variable name by putting everything but the first character as subscript. Symbolize subscipt to avoid issues. … About the symbolization of subscripts I looked up and found this: Needs["Notation`"]; Symbolize[ParsedBoxWrapper[SubscriptBox["_", "_"]]]; For the rest I have not been able to do it mainly because I do …
7 votes
1 answer
840 views
How to save/load (export/import) symbolized variables?
Creating and saving the variables as symbols works fine: Get["Notation`"] Symbolize[ParsedBoxWrapper[SubscriptBox["_", "_"]]] a⎵Subscript⎵1 = 2 a⎵Subscript⎵test = 3 Names[StringJoin[$Context, … "*"]] Information[a⎵Subscript⎵1, LongForm -> False] Information[a⎵Subscript⎵test, LongForm -> False] Information["a⎵Subscript⎵1", LongForm -> False] Information["a⎵Subscript⎵test", LongForm -> False …
0 votes
3 answers
2k views
Subscripted variables with changing subscript
I tried the following: ClearNotations[] mysum = Sum[Subscript[f,n],{n,0,2}] Symbolize[ParsedBoxWrapper[SubscriptBox["_","_"]]] where the Subscript[f,n] is done via Ctrl+_. … Subscript[f,n]! …
1 vote
0 answers
46 views
Syntax highlighting for Symbolized variables in Solve
Is it possible to get normal syntax highlighting for variable names made with Notation`Symbolize? … E.g. << Notation` Symbolize[ParsedBoxWrapper[SubscriptBox["_", "_"]]]; Subscript[a, h] = 2 Solve[{ b == Subscript[a, h], Subscript[b, k] == b}, {b, Subscript[b, k]}] Produces the following, where …
8 votes
2 answers
736 views
TeXForm and Symbolize
Unfortunately, when using Symbolize from the package Notation for this end, TeXForm does not work as expected. … While I expected output such as c_t, I receive: Needs["Notation`"]; Symbolize[ParsedBoxWrapper[SubscriptBox["_", "_"]]]; TeXForm[c<Ctrl>_t]<Shift+Enter> \text{c$\mathsym{\UnderBracket}$Subscript$\mathsym …
3 votes
1 answer
428 views
Typing (and executing) expressions with multiple superscripts
I know one solution is to use Symbolize from the Notation package << Notation` Symbolize[ParsedBoxWrapper[SuperscriptBox["G", RowBox[{"_", ",", "_"}]]]] however this solution will not suffice as I want … Why is Superscript so much more picky than Subscript? Thanks in advance. …