Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

plsfont(3plplot) [debian man page]

PLSFONT(3plplot)						    PLplot API							  PLSFONT(3plplot)

NAME
plsfont - Set family, style and weight of the current font SYNOPSIS
plsfont(family, style, weight) DESCRIPTION
Sets the current font. See the PLplot documentation for more information on font selection. Redacted form: plsfont(family, style, weight) This function is used in example 23. ARGUMENTS
family (PLINT, input) Font family to select for the current font. The available values are given by the PL_FCI_* constants in plplot.h. Current options are PL_FCI_SANS, PL_FCI_SERIF, PL_FCI_MONO, PL_FCI_SCRIPT and PL_FCI_SYMBOL. A negative value signifies that the font family should not be altered. style (PLINT, input) Font style to select for the current font. The available values are given by the PL_FCI_* constants in plplot.h. Current options are PL_FCI_UPRIGHT, PL_FCI_ITALIC and PL_FCI_OBLIQUE. A negative value signifies that the font style should not be altered. weight (PLINT, input) Font weight to select for the current font. The available values are given by the PL_FCI_* constants in plplot.h. Current options are PL_FCI_MEDIUM and PL_FCI_BOLD. A negative value signifies that the font weight should not be altered. AUTHORS
Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This man page was automatically generated from the DocBook source of the PLplot documentation, maintained by Alan W. Irwin and Rafael Laboissiere. SEE ALSO
PLplot documentation at http://plplot.sourceforge.net/resources. August, 2012 PLSFONT(3plplot)

Check Out this Related Man Page

PLSZAX(3plplot) 						    PLplot API							   PLSZAX(3plplot)

NAME
plszax - Set z axis parameters SYNOPSIS
plszax(digmax, digits) DESCRIPTION
Identical to plsxax(3plplot), except that arguments are flags for z axis. See the description of plsxax(3plplot) for more detail. Redacted form: plszax(digmax, digits) This function is used in example 31. ARGUMENTS
digmax (PLINT, input) Variable to set the maximum number of digits for the z axis. If nonzero, the printed label will be switched to a floating point representation when the number of digits exceeds digmax. digits (PLINT, input) Field digits value. Currently, changing its value here has no effect since it is set only by plbox(3plplot) or plbox3(3plplot). However, the user may obtain its value after a call to either of these functions by calling plgzax(3plplot). AUTHORS
Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This man page was automatically generated from the DocBook source of the PLplot documentation, maintained by Alan W. Irwin and Rafael Laboissiere. SEE ALSO
PLplot documentation at http://plplot.sourceforge.net/resources. August, 2012 PLSZAX(3plplot)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

What is $$

What does $$ signifies? (3 Replies)
Discussion started by: Orbix
3 Replies

2. Shell Programming and Scripting

Need help!! Am just starting to learn UNIX

Dear ALL! i have just started learing UNIX. Can anyone pls let me how to write a program using command line to give product of two numbers /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman;... (1 Reply)
Discussion started by: chature
1 Replies

3. Shell Programming and Scripting

string deletion, variable contents, fixed delimiters

Hi, I need to mass delete the following string(s) from my files weight=100, However the '100' is variable e.g Current: ---------------- moretext=bar, weight=100, moreinfo=blah extrastuff=hi, weight=9999, extrainfo=foo Desired: ------------------ moretext=bar, moreinfo=blah... (2 Replies)
Discussion started by: rebelbuttmunch
2 Replies

4. Shell Programming and Scripting

Text columns processing using awk

P { margin-bottom: 0.25cm; line-height: 120%; }CODE.cjk { font-family: "WenQuanYi Micro Hei",monospace; }CODE.ctl { font-family: "Lohit Hindi",monospace; }A:link { } I'm trying to build an awk statement to print from a file (file1): A 1,2,3 * A 4,5,6 ** B 1 ... (4 Replies)
Discussion started by: dovah
4 Replies

5. Shell Programming and Scripting

Execution Problems with awk

Ubuntu, Bash 4.3.48 Hi, I have this input file: a1:b2:c30:g4:h12:j7 and I want this output file: a1=g4:b2=h12:c30=j7 I can do it this with this code: awk -F':' '{print $1"="$4":"$2"="$5":"$3"="$6"}' INPUT > OUTPUTIn this case I have 6 columns, I calculate manually the half number of... (6 Replies)
Discussion started by: echo manolis
6 Replies