-
Notifications
You must be signed in to change notification settings - Fork 0
/
LaTex.json
2158 lines (2158 loc) · 64.4 KB
/
LaTex.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"Question": "extract all the xtables in to the one .tex file from r",
"Votes": "0",
"number of answers": "0",
"Views": "2",
"Tags": "xetex",
"Category": "active",
"Time": "1 min ago",
"Author Name": "Kalay",
"Reputation Score": "173"
},
{
"Question": "In an older Latex version it compiles, but now not why?",
"Votes": "0",
"number of answers": "0",
"Views": "5",
"Tags": "errors",
"Category": "active",
"Time": "2 mins ago",
"Author Name": "srky",
"Reputation Score": "1"
},
{
"Question": "Complicated table with multirows and multicolumns slashbox",
"Votes": "1",
"number of answers": "2",
"Views": "21",
"Tags": "tables",
"Category": "active",
"Time": "6 mins ago",
"Author Name": "Arseneau",
"Reputation Score": "4,866"
},
{
"Question": "Custom thick arrow in TikZ",
"Votes": "0",
"number of answers": "0",
"Views": "8",
"Tags": "tikz-pgf",
"Category": "active",
"Time": "13 mins ago",
"Author Name": "aaragon",
"Reputation Score": "2,579"
},
{
"Question": "XeLatex compilation failing when adding specific paragraph-formatting instructions to a document that uses Arabic fonts",
"Votes": "0",
"number of answers": "0",
"Views": "3",
"Tags": "xetex",
"Category": "active",
"Time": "14 mins ago",
"Author Name": "Marref",
"Reputation Score": "3"
},
{
"Question": "TikZ - how to pass an image by a filter",
"Votes": "3",
"number of answers": "2",
"Views": "30",
"Tags": "tikz-pgf",
"Category": "active",
"Time": "15 mins ago",
"Author Name": "AlexG",
"Reputation Score": "44.2k"
},
{
"Question": "What do \\vec{\\mkern0mu x} and \\vec{{} x} mean?",
"Votes": "6",
"number of answers": "1",
"Views": "262",
"Tags": "math-mode",
"Category": "active",
"Time": "16 mins ago",
"Author Name": "Arseneau",
"Reputation Score": "4,866"
},
{
"Question": "Using an alias / variable as an input for a newcommand",
"Votes": "0",
"number of answers": "3",
"Views": "33",
"Tags": "macros",
"Category": "active",
"Time": "18 mins ago",
"Author Name": "Diez",
"Reputation Score": "13.7k"
},
{
"Question": "Making equation more compact in algorithmic and algorithm in double column",
"Votes": "1",
"number of answers": "1",
"Views": "19",
"Tags": "equations",
"Category": "active",
"Time": "27 mins ago",
"Author Name": "Bernard",
"Reputation Score": "225k"
},
{
"Question": "ShareLatex CVPR template not compiling tikz",
"Votes": "6",
"number of answers": "2",
"Views": "777",
"Tags": "tikz-pgf",
"Category": "active",
"Time": "34 mins ago",
"Author Name": "Mustafa",
"Reputation Score": "1"
},
{
"Question": "Script for inserting multiples images",
"Votes": "0",
"number of answers": "0",
"Views": "8",
"Tags": "subfloats",
"Category": "active",
"Time": "44 mins ago",
"Author Name": "",
"Reputation Score": "47"
},
{
"Question": "Error using subfloat and centerline in figure",
"Votes": "0",
"number of answers": "0",
"Views": "9",
"Tags": "subfloats",
"Category": "active",
"Time": "1 hour ago",
"Author Name": "Farnaz",
"Reputation Score": "1"
},
{
"Question": "How do I remove LaTeX code that I will not use (e.g., typesetting Japanese)?",
"Votes": "3",
"number of answers": "3",
"Views": "42",
"Tags": "tlmgr",
"Category": "active",
"Time": "1 hour ago",
"Author Name": "Fran",
"Reputation Score": "65.2k"
},
{
"Question": "Post it with punched holes in the sheet",
"Votes": "0",
"number of answers": "0",
"Views": "41",
"Tags": "fonts",
"Category": "active",
"Time": "1 hour ago",
"Author Name": "Sebastiano",
"Reputation Score": "32.3k"
},
{
"Question": "I would like to put a table under the Appendix",
"Votes": "0",
"number of answers": "0",
"Views": "9",
"Tags": "tables",
"Category": "active",
"Time": "1 hour ago",
"Author Name": "user226694",
"Reputation Score": "1"
},
{
"Question": "How to fix \\left and \\right formatting in LaTeX?",
"Votes": "1",
"number of answers": "1",
"Views": "91",
"Tags": "math-mode",
"Category": "active",
"Time": "1 hour ago",
"Author Name": "Mel",
"Reputation Score": "45"
},
{
"Question": "(La)TeX \u2014 What does the '%' character do?",
"Votes": "29",
"number of answers": "1",
"Views": "1k",
"Tags": "tex-core",
"Category": "active",
"Time": "1 hour ago",
"Author Name": "Mico",
"Reputation Score": "363k"
},
{
"Question": "Why are pipe characters horizontal when using bxcjkjatype?",
"Votes": "0",
"number of answers": "1",
"Views": "15",
"Tags": "cjk",
"Category": "active",
"Time": "1 hour ago",
"Author Name": "Carlisle",
"Reputation Score": "576k"
},
{
"Question": "Need help with formatting the fonts and the space around the headings",
"Votes": "0",
"number of answers": "0",
"Views": "12",
"Tags": "koma-script",
"Category": "active",
"Time": "1 hour ago",
"Author Name": "Dante_7744",
"Reputation Score": "1"
},
{
"Question": "How to draw the figure (annular disc) in Tikz/Pgf plot?",
"Votes": "0",
"number of answers": "1",
"Views": "29",
"Tags": "tikz-pgf",
"Category": "active",
"Time": "1 hour ago",
"Author Name": "Zarko",
"Reputation Score": "186k"
},
{
"Question": "matlab2tikz - problem with german letters - \u00e4, \u00f6, \u00fc, \\cdot and r_N",
"Votes": "0",
"number of answers": "1",
"Views": "69",
"Tags": "tikz-pgf",
"Category": "active",
"Time": "1 hour ago",
"Author Name": "Kopi",
"Reputation Score": "1"
},
{
"Question": "Use standard PostScript fonts in Latex: Helvetica NOT NimbusSans",
"Votes": "2",
"number of answers": "1",
"Views": "84",
"Tags": "type1",
"Category": "active",
"Time": "1 hour ago",
"Author Name": "Community\u2666",
"Reputation Score": "1"
},
{
"Question": "How to wrap Tamil words?",
"Votes": "2",
"number of answers": "1",
"Views": "37",
"Tags": "xetex",
"Category": "active",
"Time": "2 hours ago",
"Author Name": "Ragavendirra",
"Reputation Score": "31"
},
{
"Question": "How would I write the polar base vector r hat?",
"Votes": "0",
"number of answers": "0",
"Views": "17",
"Tags": "math-mode",
"Category": "active",
"Time": "2 hours ago",
"Author Name": "Jones",
"Reputation Score": "1"
},
{
"Question": "Nichols chart grid for PGFplots?",
"Votes": "0",
"number of answers": "0",
"Views": "13",
"Tags": "tikz-pgf",
"Category": "active",
"Time": "3 hours ago",
"Author Name": "Superman",
"Reputation Score": "1,221"
},
{
"Question": "How to produce graph with pgfplots",
"Votes": "0",
"number of answers": "0",
"Views": "23",
"Tags": "pgfplots",
"Category": "active",
"Time": "3 hours ago",
"Author Name": "imnothere",
"Reputation Score": "11.9k"
},
{
"Question": "What is the proper use of \\@ (i.e., backslash-at)?",
"Votes": "79",
"number of answers": "4",
"Views": "15k",
"Tags": "spacing",
"Category": "active",
"Time": "3 hours ago",
"Author Name": "Gelbukh",
"Reputation Score": "1,001"
},
{
"Question": "Why are my matrix columns not aligned properly? (Left or right whitespace)",
"Votes": "2",
"number of answers": "2",
"Views": "22",
"Tags": "matrices",
"Category": "active",
"Time": "3 hours ago",
"Author Name": "Mico",
"Reputation Score": "363k"
},
{
"Question": "How to ignore contents of an environment imported from another file?",
"Votes": "3",
"number of answers": "1",
"Views": "102",
"Tags": "macros",
"Category": "active",
"Time": "6 hours ago",
"Author Name": "Image",
"Reputation Score": "2,558"
},
{
"Question": "How to create looped output with knitr?",
"Votes": "1",
"number of answers": "1",
"Views": "489",
"Tags": "loops",
"Category": "active",
"Time": "6 hours ago",
"Author Name": "Community\u2666",
"Reputation Score": "1"
},
{
"Question": "\\renewenvironment and environment hooks",
"Votes": "4",
"number of answers": "1",
"Views": "25",
"Tags": "lthooks",
"Category": "active",
"Time": "7 hours ago",
"Author Name": "Oleinik",
"Reputation Score": "51.3k"
},
{
"Question": "Removing the content of a LaTeX hook (using lthooks)",
"Votes": "3",
"number of answers": "1",
"Views": "61",
"Tags": "latex-base",
"Category": "active",
"Time": "7 hours ago",
"Author Name": "Oleinik",
"Reputation Score": "51.3k"
},
{
"Question": "How to make font sizes scale with paper size",
"Votes": "0",
"number of answers": "1",
"Views": "196",
"Tags": "fontsize",
"Category": "active",
"Time": "8 hours ago",
"Author Name": "Community\u2666",
"Reputation Score": "1"
},
{
"Question": "Filling in Parametric Curve without Using pngplots",
"Votes": "0",
"number of answers": "1",
"Views": "18",
"Tags": "tikz-pgf",
"Category": "active",
"Time": "8 hours ago",
"Author Name": "Alenanno",
"Reputation Score": "33.2k"
},
{
"Question": "Creating a Table of Contents in which Figures and Tables are listed by Chapter",
"Votes": "0",
"number of answers": "0",
"Views": "11",
"Tags": "table-of-contents",
"Category": "active",
"Time": "8 hours ago",
"Author Name": "Nattie",
"Reputation Score": "1"
},
{
"Question": "How to know if my file is inserted correctly `glyphtounicode`",
"Votes": "0",
"number of answers": "0",
"Views": "17",
"Tags": "packages",
"Category": "active",
"Time": "8 hours ago",
"Author Name": "Mrcrg",
"Reputation Score": "113"
},
{
"Question": "skype link in modercv",
"Votes": "0",
"number of answers": "1",
"Views": "439",
"Tags": "moderncv",
"Category": "active",
"Time": "9 hours ago",
"Author Name": "Community\u2666",
"Reputation Score": "1"
},
{
"Question": "Inital letter of chapter title as title background with KOMA-Script",
"Votes": "0",
"number of answers": "1",
"Views": "13",
"Tags": "koma-script",
"Category": "active",
"Time": "9 hours ago",
"Author Name": "frougon",
"Reputation Score": "18.9k"
},
{
"Question": "How to change spacing between main page and sidebar?",
"Votes": "0",
"number of answers": "1",
"Views": "13",
"Tags": "overleaf",
"Category": "active",
"Time": "9 hours ago",
"Author Name": "Artur_Indio",
"Reputation Score": "101"
},
{
"Question": "Font symbol for the TiKz latex arrow (or something like it)?",
"Votes": "0",
"number of answers": "0",
"Views": "55",
"Tags": "tikz-pgf",
"Category": "active",
"Time": "9 hours ago",
"Author Name": "twofeet",
"Reputation Score": "493"
},
{
"Question": "Installing the fourier package to TeXLive 2012/Debian Ubuntu 12.04 LTS",
"Votes": "10",
"number of answers": "3",
"Views": "12k",
"Tags": "packages",
"Category": "active",
"Time": "9 hours ago",
"Author Name": "Waldyd",
"Reputation Score": "229"
},
{
"Question": "I need a rather complex layout for a scholarly edition and don't know where to start",
"Votes": "1",
"number of answers": "2",
"Views": "48",
"Tags": "tikz-pgf",
"Category": "active",
"Time": "9 hours ago",
"Author Name": "Dispa",
"Reputation Score": "819"
},
{
"Question": "Disable command option pop-up in WinEdt while leaving the command suggestion pop-up enabled",
"Votes": "0",
"number of answers": "1",
"Views": "213",
"Tags": "winedt",
"Category": "active",
"Time": "9 hours ago",
"Author Name": "Community\u2666",
"Reputation Score": "1"
},
{
"Question": "Metadata with more than one language",
"Votes": "0",
"number of answers": "1",
"Views": "30",
"Tags": "pdftex",
"Category": "active",
"Time": "10 hours ago",
"Author Name": "nhck",
"Reputation Score": "460"
},
{
"Question": "What packages do people load by default in LaTeX?",
"Votes": "433",
"number of answers": "64",
"Views": "80k",
"Tags": "packages",
"Category": "active",
"Time": "10 hours ago",
"Author Name": "B\u00f6lting",
"Reputation Score": "61"
},
{
"Question": "I probably have problem with float specifiers? But I cant figure out what can be wrong",
"Votes": "0",
"number of answers": "1",
"Views": "32",
"Tags": "tables",
"Category": "active",
"Time": "11 hours ago",
"Author Name": "Community\u2666",
"Reputation Score": "1"
},
{
"Question": "Subscripts and the `\\mathrm{}` command",
"Votes": "3",
"number of answers": "1",
"Views": "62",
"Tags": "definition",
"Category": "active",
"Time": "11 hours ago",
"Author Name": "Sebastiano",
"Reputation Score": "32.3k"
},
{
"Question": "titlesec and textpos: title name appears twice",
"Votes": "2",
"number of answers": "0",
"Views": "16",
"Tags": "macros",
"Category": "active",
"Time": "11 hours ago",
"Author Name": "TeXtnik",
"Reputation Score": "5,407"
},
{
"Question": "Beamer not respecting changes in footline height",
"Votes": "3",
"number of answers": "2",
"Views": "71",
"Tags": "beamer",
"Category": "bounties",
"Time": "Oct 7 at 13:58",
"Author Name": "Nobody-Knows-I-am-a-Dog",
"Reputation Score": "240"
},
{
"Question": "Draw a balanced fulcrum with cylinder, pyramid and sphere",
"Votes": "0",
"number of answers": "0",
"Views": "92",
"Tags": "tikz-pgf",
"Category": "bounties",
"Time": "21 hours ago",
"Author Name": "weilam06",
"Reputation Score": "137"
},
{
"Question": "How make TikZ arrow tips match arrows with TeX Gyre Termes Math font?",
"Votes": "0",
"number of answers": "0",
"Views": "27",
"Tags": "tikz-arrows",
"Category": "bounties",
"Time": "14 hours ago",
"Author Name": "murray",
"Reputation Score": "5,284"
},
{
"Question": "How to ignore contents of an environment imported from another file?",
"Votes": "3",
"number of answers": "1",
"Views": "102",
"Tags": "macros",
"Category": "bounties",
"Time": "6 hours ago",
"Author Name": "Image",
"Reputation Score": "2,558"
},
{
"Question": "TikZ - how to pass an image by a filter",
"Votes": "3",
"number of answers": "2",
"Views": "30",
"Tags": "tikz-pgf",
"Category": "hot",
"Time": "15 mins ago",
"Author Name": "AlexG",
"Reputation Score": "44.2k"
},
{
"Question": "How to draw the figure (annular disc) in Tikz/Pgf plot?",
"Votes": "0",
"number of answers": "1",
"Views": "29",
"Tags": "tikz-pgf",
"Category": "hot",
"Time": "1 hour ago",
"Author Name": "Zarko",
"Reputation Score": "186k"
},
{
"Question": "Why are pipe characters horizontal when using bxcjkjatype?",
"Votes": "0",
"number of answers": "1",
"Views": "15",
"Tags": "cjk",
"Category": "hot",
"Time": "1 hour ago",
"Author Name": "Carlisle",
"Reputation Score": "576k"
},
{
"Question": "How would I write the polar base vector r hat?",
"Votes": "0",
"number of answers": "0",
"Views": "17",
"Tags": "math-mode",
"Category": "hot",
"Time": "2 hours ago",
"Author Name": "Jones",
"Reputation Score": "1"
},
{
"Question": "(La)TeX \u2014 What does the '%' character do?",
"Votes": "29",
"number of answers": "1",
"Views": "1k",
"Tags": "tex-core",
"Category": "hot",
"Time": "1 hour ago",
"Author Name": "Mico",
"Reputation Score": "363k"
},
{
"Question": "Nichols chart grid for PGFplots?",
"Votes": "0",
"number of answers": "0",
"Views": "13",
"Tags": "tikz-pgf",
"Category": "hot",
"Time": "3 hours ago",
"Author Name": "Superman",
"Reputation Score": "1,221"
},
{
"Question": "Need help with formatting the fonts and the space around the headings",
"Votes": "0",
"number of answers": "0",
"Views": "12",
"Tags": "koma-script",
"Category": "hot",
"Time": "1 hour ago",
"Author Name": "Dante_7744",
"Reputation Score": "1"
},
{
"Question": "How to produce graph with pgfplots",
"Votes": "0",
"number of answers": "0",
"Views": "23",
"Tags": "pgfplots",
"Category": "hot",
"Time": "3 hours ago",
"Author Name": "imnothere",
"Reputation Score": "11.9k"
},
{
"Question": "Why are my matrix columns not aligned properly? (Left or right whitespace)",
"Votes": "2",
"number of answers": "2",
"Views": "22",
"Tags": "matrices",
"Category": "hot",
"Time": "3 hours ago",
"Author Name": "Mico",
"Reputation Score": "363k"
},
{
"Question": "Complicated table with multirows and multicolumns slashbox",
"Votes": "1",
"number of answers": "2",
"Views": "21",
"Tags": "tables",
"Category": "hot",
"Time": "6 mins ago",
"Author Name": "Arseneau",
"Reputation Score": "4,866"
},
{
"Question": "Post it with punched holes in the sheet",
"Votes": "0",
"number of answers": "0",
"Views": "41",
"Tags": "fonts",
"Category": "hot",
"Time": "1 hour ago",
"Author Name": "Sebastiano",
"Reputation Score": "32.3k"
},
{
"Question": "How do I remove LaTeX code that I will not use (e.g., typesetting Japanese)?",
"Votes": "3",
"number of answers": "3",
"Views": "42",
"Tags": "tlmgr",
"Category": "hot",
"Time": "1 hour ago",
"Author Name": "Fran",
"Reputation Score": "65.2k"
},
{
"Question": "How to wrap Tamil words?",
"Votes": "2",
"number of answers": "1",
"Views": "37",
"Tags": "xetex",
"Category": "hot",
"Time": "2 hours ago",
"Author Name": "Ragavendirra",
"Reputation Score": "31"
},
{
"Question": "Making equation more compact in algorithmic and algorithm in double column",
"Votes": "1",
"number of answers": "1",
"Views": "19",
"Tags": "equations",
"Category": "hot",
"Time": "27 mins ago",
"Author Name": "Bernard",
"Reputation Score": "225k"
},
{
"Question": "\\renewenvironment and environment hooks",
"Votes": "4",
"number of answers": "1",
"Views": "25",
"Tags": "lthooks",
"Category": "hot",
"Time": "7 hours ago",
"Author Name": "Oleinik",
"Reputation Score": "51.3k"
},
{
"Question": "Two aligning indexes in equation",
"Votes": "3",
"number of answers": "1",
"Views": "46",
"Tags": "equations",
"Category": "hot",
"Time": "12 hours ago",
"Author Name": "Golovan",
"Reputation Score": "6,240"
},
{
"Question": "Teletype Greek letters",
"Votes": "5",
"number of answers": "2",
"Views": "216",
"Tags": "math-fonts",
"Category": "hot",
"Time": "13 hours ago",
"Author Name": "Davislor",
"Reputation Score": "20.6k"
},
{
"Question": "How to know if my file is inserted correctly `glyphtounicode`",
"Votes": "0",
"number of answers": "0",
"Views": "17",
"Tags": "packages",
"Category": "hot",
"Time": "8 hours ago",
"Author Name": "Mrcrg",
"Reputation Score": "113"
},
{
"Question": "Removing the content of a LaTeX hook (using lthooks)",
"Votes": "3",
"number of answers": "1",
"Views": "61",
"Tags": "latex-base",
"Category": "hot",
"Time": "7 hours ago",
"Author Name": "Oleinik",
"Reputation Score": "51.3k"
},
{
"Question": "Filling in Parametric Curve without Using pngplots",
"Votes": "0",
"number of answers": "1",
"Views": "18",
"Tags": "tikz-pgf",
"Category": "hot",
"Time": "8 hours ago",
"Author Name": "Alenanno",
"Reputation Score": "33.2k"
},
{
"Question": "Subscripts and the `\\mathrm{}` command",
"Votes": "3",
"number of answers": "1",
"Views": "62",
"Tags": "definition",
"Category": "hot",
"Time": "11 hours ago",
"Author Name": "Sebastiano",
"Reputation Score": "32.3k"
},
{
"Question": "Creating a Table of Contents in which Figures and Tables are listed by Chapter",
"Votes": "0",
"number of answers": "0",
"Views": "11",
"Tags": "table-of-contents",
"Category": "hot",
"Time": "8 hours ago",
"Author Name": "Nattie",
"Reputation Score": "1"
},
{
"Question": "Making the indentation of a multi-line paragraph equal to the indentation of the first line",
"Votes": "0",
"number of answers": "1",
"Views": "31",
"Tags": "pdftex",
"Category": "hot",
"Time": "11 hours ago",
"Author Name": "Carlisle",
"Reputation Score": "576k"
},
{
"Question": "How to make the \u201creciprocal power\u201d appear using siunitx?",
"Votes": "4",
"number of answers": "1",
"Views": "49",
"Tags": "siunitx",
"Category": "hot",
"Time": "14 hours ago",
"Author Name": "Mico",
"Reputation Score": "363k"
},
{
"Question": "Metadata with more than one language",
"Votes": "0",
"number of answers": "1",
"Views": "30",
"Tags": "pdftex",
"Category": "hot",
"Time": "10 hours ago",
"Author Name": "nhck",
"Reputation Score": "460"
},
{
"Question": "manipulate table row spacing to match up two adjacent tables",
"Votes": "0",
"number of answers": "2",
"Views": "24",
"Tags": "tables",
"Category": "hot",
"Time": "12 hours ago",
"Author Name": "Bernard",
"Reputation Score": "225k"
},
{
"Question": "Inital letter of chapter title as title background with KOMA-Script",
"Votes": "0",
"number of answers": "1",
"Views": "13",
"Tags": "koma-script",
"Category": "hot",
"Time": "9 hours ago",
"Author Name": "frougon",
"Reputation Score": "18.9k"
},
{
"Question": "Global Regular Expression in Lua Script",
"Votes": "0",
"number of answers": "2",
"Views": "37",
"Tags": "luatex",
"Category": "hot",
"Time": "13 hours ago",
"Author Name": "Mashin",
"Reputation Score": "186"
},
{
"Question": "How to costumize chapter and section titles in LaTeX like depicted in this picture?",
"Votes": "0",
"number of answers": "0",
"Views": "16",
"Tags": "fncychap",
"Category": "hot",
"Time": "11 hours ago",
"Author Name": "vahis100",
"Reputation Score": "23"
},
{
"Question": "titlesec and textpos: title name appears twice",
"Votes": "2",
"number of answers": "0",
"Views": "16",
"Tags": "macros",
"Category": "hot",
"Time": "11 hours ago",
"Author Name": "TeXtnik",
"Reputation Score": "5,407"
},
{
"Question": "How to make the arrows longer",
"Votes": "1",
"number of answers": "1",
"Views": "23",
"Tags": "arrows",
"Category": "hot",
"Time": "13 hours ago",
"Author Name": "egreg",
"Reputation Score": "859k"
},
{
"Question": "Multiple use of figure number, ext4 warning",
"Votes": "2",
"number of answers": "1",
"Views": "25",
"Tags": "floats",
"Category": "hot",
"Time": "13 hours ago",
"Author Name": "P.M.",
"Reputation Score": "136"
},
{
"Question": "Upright matematical letters in every environment",
"Votes": "2",
"number of answers": "2",
"Views": "147",
"Tags": "math-mode",
"Category": "hot",
"Time": "20 hours ago",
"Author Name": "Davislor",
"Reputation Score": "20.6k"
},
{
"Question": "Using Gather and Split for centering substeps",
"Votes": "0",
"number of answers": "1",
"Views": "19",
"Tags": "vertical-alignment",
"Category": "hot",
"Time": "12 hours ago",
"Author Name": "Zarko",
"Reputation Score": "186k"
},
{
"Question": "How to copy commutative diagrams from the n-Lab?",
"Votes": "1",
"number of answers": "3",
"Views": "33",
"Tags": "math-mode",
"Category": "hot",
"Time": "11 hours ago",
"Author Name": "Sebastiano",
"Reputation Score": "32.3k"
},
{
"Question": "Numbering paragraphs and theorems in the margin",
"Votes": "1",
"number of answers": "1",
"Views": "24",
"Tags": "numbering",
"Category": "hot",
"Time": "12 hours ago",
"Author Name": "Bernard",
"Reputation Score": "225k"
},
{
"Question": "I need a rather complex layout for a scholarly edition and don't know where to start",
"Votes": "1",
"number of answers": "2",
"Views": "48",
"Tags": "tikz-pgf",
"Category": "hot",
"Time": "9 hours ago",
"Author Name": "Dispa",
"Reputation Score": "819"
},
{
"Question": "I have a font, where should I place it for use?",
"Votes": "1",
"number of answers": "1",
"Views": "42",
"Tags": "fonts",
"Category": "hot",
"Time": "16 hours ago",
"Author Name": "Davislor",
"Reputation Score": "20.6k"
},
{
"Question": "What do \\vec{\\mkern0mu x} and \\vec{{} x} mean?",
"Votes": "6",
"number of answers": "1",
"Views": "262",
"Tags": "math-mode",
"Category": "hot",
"Time": "16 mins ago",
"Author Name": "Arseneau",