Posts

Showing posts from March 3, 2019

Record changes for removed macro in dtx

Image
3 Following the advice in How to Package Your LATEX Package by Scott Pakin I am recording changes to a package I maintain, similar to the following: RecordChanges begin{macro}{somemacro} changes{0.1}{2018/01/01}{Added a shiny new macro} begin{macrocode} … end{macrocode} end{macro} PrintChanges However, if I eventually want to remove the somemacro command in version 2.0 of the package, I would like to be able to retain the old change history but not show the macro in the package otherwise. Is there some way to hide the begin{macro} from rendering the macro name in the sidebar, or remove the begin{macro} entirely and manually specify the macro that the change lines should be under in the changelog (so that they don't just show up under the general one)?

Smartsheet API C# Filtering Rows by data in a column

Image
0 I am new to API's and Smartsheet. I am looking to filter a specific set of records to display in a datagrid. I have got the connection and data coming in, but i only want to display records for that specific column selection. ie: Column A = 200 I also need to know how to filter two columns in the same sheet. ie: column A = 200, Column C = "Fred" I think i need to use the IEnumerable includes function but i can't find any examaples of doing this. Any help would be appreciated. c# api smartsheet-api share | improve this question asked Nov 21 '18 at 1:38 Andrew Little Andrew Little